]> nv-tegra.nvidia Code Review - linux-2.6.git/blob - drivers/net/wireless/ray_cs.c
pcmcia: remove cs_types.h
[linux-2.6.git] / drivers / net / wireless / ray_cs.c
1 /*=============================================================================
2  *
3  * A  PCMCIA client driver for the Raylink wireless LAN card.
4  * The starting point for this module was the skeleton.c in the
5  * PCMCIA 2.9.12 package written by David Hinds, dahinds@users.sourceforge.net
6  *
7  *
8  * Copyright (c) 1998  Corey Thomas (corey@world.std.com)
9  *
10  * This driver is free software; you can redistribute it and/or modify
11  * it under the terms of version 2 only of the GNU General Public License as
12  * published by the Free Software Foundation.
13  *
14  * It is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
22  *
23  * Changes:
24  * Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 08/08/2000
25  * - reorganize kmallocs in ray_attach, checking all for failure
26  *   and releasing the previous allocations if one fails
27  *
28  * Daniele Bellucci <bellucda@tiscali.it> - 07/10/2003
29  * - Audit copy_to_user in ioctl(SIOCGIWESSID)
30  *
31 =============================================================================*/
32
33 #include <linux/module.h>
34 #include <linux/kernel.h>
35 #include <linux/proc_fs.h>
36 #include <linux/ptrace.h>
37 #include <linux/seq_file.h>
38 #include <linux/string.h>
39 #include <linux/timer.h>
40 #include <linux/init.h>
41 #include <linux/netdevice.h>
42 #include <linux/etherdevice.h>
43 #include <linux/if_arp.h>
44 #include <linux/ioport.h>
45 #include <linux/skbuff.h>
46 #include <linux/ethtool.h>
47 #include <linux/ieee80211.h>
48
49 #include <pcmcia/cs.h>
50 #include <pcmcia/cistpl.h>
51 #include <pcmcia/cisreg.h>
52 #include <pcmcia/ds.h>
53
54 #include <linux/wireless.h>
55 #include <net/iw_handler.h>
56
57 #include <asm/io.h>
58 #include <asm/system.h>
59 #include <asm/byteorder.h>
60 #include <asm/uaccess.h>
61
62 /* Warning : these stuff will slow down the driver... */
63 #define WIRELESS_SPY            /* Enable spying addresses */
64 /* Definitions we need for spy */
65 typedef struct iw_statistics iw_stats;
66 typedef u_char mac_addr[ETH_ALEN];      /* Hardware address */
67
68 #include "rayctl.h"
69 #include "ray_cs.h"
70
71
72 /** Prototypes based on PCMCIA skeleton driver *******************************/
73 static int ray_config(struct pcmcia_device *link);
74 static void ray_release(struct pcmcia_device *link);
75 static void ray_detach(struct pcmcia_device *p_dev);
76
77 /***** Prototypes indicated by device structure ******************************/
78 static int ray_dev_close(struct net_device *dev);
79 static int ray_dev_config(struct net_device *dev, struct ifmap *map);
80 static struct net_device_stats *ray_get_stats(struct net_device *dev);
81 static int ray_dev_init(struct net_device *dev);
82
83 static const struct ethtool_ops netdev_ethtool_ops;
84
85 static int ray_open(struct net_device *dev);
86 static netdev_tx_t ray_dev_start_xmit(struct sk_buff *skb,
87                                             struct net_device *dev);
88 static void set_multicast_list(struct net_device *dev);
89 static void ray_update_multi_list(struct net_device *dev, int all);
90 static int translate_frame(ray_dev_t *local, struct tx_msg __iomem *ptx,
91                            unsigned char *data, int len);
92 static void ray_build_header(ray_dev_t *local, struct tx_msg __iomem *ptx,
93                              UCHAR msg_type, unsigned char *data);
94 static void untranslate(ray_dev_t *local, struct sk_buff *skb, int len);
95 static iw_stats *ray_get_wireless_stats(struct net_device *dev);
96 static const struct iw_handler_def ray_handler_def;
97
98 /***** Prototypes for raylink functions **************************************/
99 static int asc_to_int(char a);
100 static void authenticate(ray_dev_t *local);
101 static int build_auth_frame(ray_dev_t *local, UCHAR *dest, int auth_type);
102 static void authenticate_timeout(u_long);
103 static int get_free_ccs(ray_dev_t *local);
104 static int get_free_tx_ccs(ray_dev_t *local);
105 static void init_startup_params(ray_dev_t *local);
106 static int parse_addr(char *in_str, UCHAR *out);
107 static int ray_hw_xmit(unsigned char *data, int len, struct net_device *dev, UCHAR type);
108 static int ray_init(struct net_device *dev);
109 static int interrupt_ecf(ray_dev_t *local, int ccs);
110 static void ray_reset(struct net_device *dev);
111 static void ray_update_parm(struct net_device *dev, UCHAR objid, UCHAR *value, int len);
112 static void verify_dl_startup(u_long);
113
114 /* Prototypes for interrpt time functions **********************************/
115 static irqreturn_t ray_interrupt(int reg, void *dev_id);
116 static void clear_interrupt(ray_dev_t *local);
117 static void rx_deauthenticate(ray_dev_t *local, struct rcs __iomem *prcs,
118                               unsigned int pkt_addr, int rx_len);
119 static int copy_from_rx_buff(ray_dev_t *local, UCHAR *dest, int pkt_addr, int len);
120 static void ray_rx(struct net_device *dev, ray_dev_t *local, struct rcs __iomem *prcs);
121 static void release_frag_chain(ray_dev_t *local, struct rcs __iomem *prcs);
122 static void rx_authenticate(ray_dev_t *local, struct rcs __iomem *prcs,
123                             unsigned int pkt_addr, int rx_len);
124 static void rx_data(struct net_device *dev, struct rcs __iomem *prcs,
125                     unsigned int pkt_addr, int rx_len);
126 static void associate(ray_dev_t *local);
127
128 /* Card command functions */
129 static int dl_startup_params(struct net_device *dev);
130 static void join_net(u_long local);
131 static void start_net(u_long local);
132 /* void start_net(ray_dev_t *local); */
133
134 /*===========================================================================*/
135 /* Parameters that can be set with 'insmod' */
136
137 /* ADHOC=0, Infrastructure=1 */
138 static int net_type = ADHOC;
139
140 /* Hop dwell time in Kus (1024 us units defined by 802.11) */
141 static int hop_dwell = 128;
142
143 /* Beacon period in Kus */
144 static int beacon_period = 256;
145
146 /* power save mode (0 = off, 1 = save power) */
147 static int psm;
148
149 /* String for network's Extended Service Set ID. 32 Characters max */
150 static char *essid;
151
152 /* Default to encapsulation unless translation requested */
153 static int translate = 1;
154
155 static int country = USA;
156
157 static int sniffer;
158
159 static int bc;
160
161 /* 48 bit physical card address if overriding card's real physical
162  * address is required.  Since IEEE 802.11 addresses are 48 bits
163  * like ethernet, an int can't be used, so a string is used. To
164  * allow use of addresses starting with a decimal digit, the first
165  * character must be a letter and will be ignored. This letter is
166  * followed by up to 12 hex digits which are the address.  If less
167  * than 12 digits are used, the address will be left filled with 0's.
168  * Note that bit 0 of the first byte is the broadcast bit, and evil
169  * things will happen if it is not 0 in a card address.
170  */
171 static char *phy_addr = NULL;
172
173
174 /* A struct pcmcia_device structure has fields for most things that are needed
175    to keep track of a socket, but there will usually be some device
176    specific information that also needs to be kept track of.  The
177    'priv' pointer in a struct pcmcia_device structure can be used to point to
178    a device-specific private data structure, like this.
179 */
180 static unsigned int ray_mem_speed = 500;
181
182 /* WARNING: THIS DRIVER IS NOT CAPABLE OF HANDLING MULTIPLE DEVICES! */
183 static struct pcmcia_device *this_device = NULL;
184
185 MODULE_AUTHOR("Corey Thomas <corey@world.std.com>");
186 MODULE_DESCRIPTION("Raylink/WebGear wireless LAN driver");
187 MODULE_LICENSE("GPL");
188
189 module_param(net_type, int, 0);
190 module_param(hop_dwell, int, 0);
191 module_param(beacon_period, int, 0);
192 module_param(psm, int, 0);
193 module_param(essid, charp, 0);
194 module_param(translate, int, 0);
195 module_param(country, int, 0);
196 module_param(sniffer, int, 0);
197 module_param(bc, int, 0);
198 module_param(phy_addr, charp, 0);
199 module_param(ray_mem_speed, int, 0);
200
201 static UCHAR b5_default_startup_parms[] = {
202         0, 0,                   /* Adhoc station */
203         'L', 'I', 'N', 'U', 'X', 0, 0, 0,       /* 32 char ESSID */
204         0, 0, 0, 0, 0, 0, 0, 0,
205         0, 0, 0, 0, 0, 0, 0, 0,
206         0, 0, 0, 0, 0, 0, 0, 0,
207         1, 0,                   /* Active scan, CA Mode */
208         0, 0, 0, 0, 0, 0,       /* No default MAC addr  */
209         0x7f, 0xff,             /* Frag threshold */
210         0x00, 0x80,             /* Hop time 128 Kus */
211         0x01, 0x00,             /* Beacon period 256 Kus */
212         0x01, 0x07, 0xa3,       /* DTIM, retries, ack timeout */
213         0x1d, 0x82, 0x4e,       /* SIFS, DIFS, PIFS */
214         0x7f, 0xff,             /* RTS threshold */
215         0x04, 0xe2, 0x38, 0xA4, /* scan_dwell, max_scan_dwell */
216         0x05,                   /* assoc resp timeout thresh */
217         0x08, 0x02, 0x08,       /* adhoc, infra, super cycle max */
218         0,                      /* Promiscuous mode */
219         0x0c, 0x0bd,            /* Unique word */
220         0x32,                   /* Slot time */
221         0xff, 0xff,             /* roam-low snr, low snr count */
222         0x05, 0xff,             /* Infra, adhoc missed bcn thresh */
223         0x01, 0x0b, 0x4f,       /* USA, hop pattern, hop pat length */
224 /* b4 - b5 differences start here */
225         0x00, 0x3f,             /* CW max */
226         0x00, 0x0f,             /* CW min */
227         0x04, 0x08,             /* Noise gain, limit offset */
228         0x28, 0x28,             /* det rssi, med busy offsets */
229         7,                      /* det sync thresh */
230         0, 2, 2,                /* test mode, min, max */
231         0,                      /* allow broadcast SSID probe resp */
232         0, 0,                   /* privacy must start, can join */
233         2, 0, 0, 0, 0, 0, 0, 0  /* basic rate set */
234 };
235
236 static UCHAR b4_default_startup_parms[] = {
237         0, 0,                   /* Adhoc station */
238         'L', 'I', 'N', 'U', 'X', 0, 0, 0,       /* 32 char ESSID */
239         0, 0, 0, 0, 0, 0, 0, 0,
240         0, 0, 0, 0, 0, 0, 0, 0,
241         0, 0, 0, 0, 0, 0, 0, 0,
242         1, 0,                   /* Active scan, CA Mode */
243         0, 0, 0, 0, 0, 0,       /* No default MAC addr  */
244         0x7f, 0xff,             /* Frag threshold */
245         0x02, 0x00,             /* Hop time */
246         0x00, 0x01,             /* Beacon period */
247         0x01, 0x07, 0xa3,       /* DTIM, retries, ack timeout */
248         0x1d, 0x82, 0xce,       /* SIFS, DIFS, PIFS */
249         0x7f, 0xff,             /* RTS threshold */
250         0xfb, 0x1e, 0xc7, 0x5c, /* scan_dwell, max_scan_dwell */
251         0x05,                   /* assoc resp timeout thresh */
252         0x04, 0x02, 0x4,        /* adhoc, infra, super cycle max */
253         0,                      /* Promiscuous mode */
254         0x0c, 0x0bd,            /* Unique word */
255         0x4e,                   /* Slot time (TBD seems wrong) */
256         0xff, 0xff,             /* roam-low snr, low snr count */
257         0x05, 0xff,             /* Infra, adhoc missed bcn thresh */
258         0x01, 0x0b, 0x4e,       /* USA, hop pattern, hop pat length */
259 /* b4 - b5 differences start here */
260         0x3f, 0x0f,             /* CW max, min */
261         0x04, 0x08,             /* Noise gain, limit offset */
262         0x28, 0x28,             /* det rssi, med busy offsets */
263         7,                      /* det sync thresh */
264         0, 2, 2                 /* test mode, min, max */
265 };
266
267 /*===========================================================================*/
268 static unsigned char eth2_llc[] = { 0xaa, 0xaa, 3, 0, 0, 0 };
269
270 static char hop_pattern_length[] = { 1,
271         USA_HOP_MOD, EUROPE_HOP_MOD,
272         JAPAN_HOP_MOD, KOREA_HOP_MOD,
273         SPAIN_HOP_MOD, FRANCE_HOP_MOD,
274         ISRAEL_HOP_MOD, AUSTRALIA_HOP_MOD,
275         JAPAN_TEST_HOP_MOD
276 };
277
278 static char rcsid[] =
279     "Raylink/WebGear wireless LAN - Corey <Thomas corey@world.std.com>";
280
281 static const struct net_device_ops ray_netdev_ops = {
282         .ndo_init               = ray_dev_init,
283         .ndo_open               = ray_open,
284         .ndo_stop               = ray_dev_close,
285         .ndo_start_xmit         = ray_dev_start_xmit,
286         .ndo_set_config         = ray_dev_config,
287         .ndo_get_stats          = ray_get_stats,
288         .ndo_set_multicast_list = set_multicast_list,
289         .ndo_change_mtu         = eth_change_mtu,
290         .ndo_set_mac_address    = eth_mac_addr,
291         .ndo_validate_addr      = eth_validate_addr,
292 };
293
294 /*=============================================================================
295     ray_attach() creates an "instance" of the driver, allocating
296     local data structures for one device.  The device is registered
297     with Card Services.
298     The dev_link structure is initialized, but we don't actually
299     configure the card at this point -- we wait until we receive a
300     card insertion event.
301 =============================================================================*/
302 static int ray_probe(struct pcmcia_device *p_dev)
303 {
304         ray_dev_t *local;
305         struct net_device *dev;
306
307         dev_dbg(&p_dev->dev, "ray_attach()\n");
308
309         /* Allocate space for private device-specific data */
310         dev = alloc_etherdev(sizeof(ray_dev_t));
311         if (!dev)
312                 goto fail_alloc_dev;
313
314         local = netdev_priv(dev);
315         local->finder = p_dev;
316
317         /* The io structure describes IO port mapping. None used here */
318         p_dev->io.NumPorts1 = 0;
319         p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
320         p_dev->io.IOAddrLines = 5;
321
322         /* General socket configuration */
323         p_dev->conf.Attributes = CONF_ENABLE_IRQ;
324         p_dev->conf.IntType = INT_MEMORY_AND_IO;
325         p_dev->conf.ConfigIndex = 1;
326
327         p_dev->priv = dev;
328
329         local->finder = p_dev;
330         local->card_status = CARD_INSERTED;
331         local->authentication_state = UNAUTHENTICATED;
332         local->num_multi = 0;
333         dev_dbg(&p_dev->dev, "ray_attach p_dev = %p,  dev = %p,  local = %p, intr = %p\n",
334               p_dev, dev, local, &ray_interrupt);
335
336         /* Raylink entries in the device structure */
337         dev->netdev_ops = &ray_netdev_ops;
338         SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
339         dev->wireless_handlers = &ray_handler_def;
340 #ifdef WIRELESS_SPY
341         local->wireless_data.spy_data = &local->spy_data;
342         dev->wireless_data = &local->wireless_data;
343 #endif /* WIRELESS_SPY */
344
345
346         dev_dbg(&p_dev->dev, "ray_cs ray_attach calling ether_setup.)\n");
347         netif_stop_queue(dev);
348
349         init_timer(&local->timer);
350
351         this_device = p_dev;
352         return ray_config(p_dev);
353
354 fail_alloc_dev:
355         return -ENOMEM;
356 } /* ray_attach */
357
358 /*=============================================================================
359     This deletes a driver "instance".  The device is de-registered
360     with Card Services.  If it has been released, all local data
361     structures are freed.  Otherwise, the structures will be freed
362     when the device is released.
363 =============================================================================*/
364 static void ray_detach(struct pcmcia_device *link)
365 {
366         struct net_device *dev;
367         ray_dev_t *local;
368
369         dev_dbg(&link->dev, "ray_detach\n");
370
371         this_device = NULL;
372         dev = link->priv;
373
374         ray_release(link);
375
376         local = netdev_priv(dev);
377         del_timer(&local->timer);
378
379         if (link->priv) {
380                 unregister_netdev(dev);
381                 free_netdev(dev);
382         }
383         dev_dbg(&link->dev, "ray_cs ray_detach ending\n");
384 } /* ray_detach */
385
386 /*=============================================================================
387     ray_config() is run after a CARD_INSERTION event
388     is received, to configure the PCMCIA socket, and to make the
389     ethernet device available to the system.
390 =============================================================================*/
391 #define MAX_TUPLE_SIZE 128
392 static int ray_config(struct pcmcia_device *link)
393 {
394         int ret = 0;
395         int i;
396         win_req_t req;
397         memreq_t mem;
398         struct net_device *dev = (struct net_device *)link->priv;
399         ray_dev_t *local = netdev_priv(dev);
400
401         dev_dbg(&link->dev, "ray_config\n");
402
403         /* Determine card type and firmware version */
404         printk(KERN_INFO "ray_cs Detected: %s%s%s%s\n",
405                link->prod_id[0] ? link->prod_id[0] : " ",
406                link->prod_id[1] ? link->prod_id[1] : " ",
407                link->prod_id[2] ? link->prod_id[2] : " ",
408                link->prod_id[3] ? link->prod_id[3] : " ");
409
410         /* Now allocate an interrupt line.  Note that this does not
411            actually assign a handler to the interrupt.
412          */
413         ret = pcmcia_request_irq(link, ray_interrupt);
414         if (ret)
415                 goto failed;
416         dev->irq = link->irq;
417
418         /* This actually configures the PCMCIA socket -- setting up
419            the I/O windows and the interrupt mapping.
420          */
421         ret = pcmcia_request_configuration(link, &link->conf);
422         if (ret)
423                 goto failed;
424
425 /*** Set up 32k window for shared memory (transmit and control) ************/
426         req.Attributes =
427             WIN_DATA_WIDTH_8 | WIN_MEMORY_TYPE_CM | WIN_ENABLE | WIN_USE_WAIT;
428         req.Base = 0;
429         req.Size = 0x8000;
430         req.AccessSpeed = ray_mem_speed;
431         ret = pcmcia_request_window(link, &req, &link->win);
432         if (ret)
433                 goto failed;
434         mem.CardOffset = 0x0000;
435         mem.Page = 0;
436         ret = pcmcia_map_mem_page(link, link->win, &mem);
437         if (ret)
438                 goto failed;
439         local->sram = ioremap(req.Base, req.Size);
440
441 /*** Set up 16k window for shared memory (receive buffer) ***************/
442         req.Attributes =
443             WIN_DATA_WIDTH_8 | WIN_MEMORY_TYPE_CM | WIN_ENABLE | WIN_USE_WAIT;
444         req.Base = 0;
445         req.Size = 0x4000;
446         req.AccessSpeed = ray_mem_speed;
447         ret = pcmcia_request_window(link, &req, &local->rmem_handle);
448         if (ret)
449                 goto failed;
450         mem.CardOffset = 0x8000;
451         mem.Page = 0;
452         ret = pcmcia_map_mem_page(link, local->rmem_handle, &mem);
453         if (ret)
454                 goto failed;
455         local->rmem = ioremap(req.Base, req.Size);
456
457 /*** Set up window for attribute memory ***********************************/
458         req.Attributes =
459             WIN_DATA_WIDTH_8 | WIN_MEMORY_TYPE_AM | WIN_ENABLE | WIN_USE_WAIT;
460         req.Base = 0;
461         req.Size = 0x1000;
462         req.AccessSpeed = ray_mem_speed;
463         ret = pcmcia_request_window(link, &req, &local->amem_handle);
464         if (ret)
465                 goto failed;
466         mem.CardOffset = 0x0000;
467         mem.Page = 0;
468         ret = pcmcia_map_mem_page(link, local->amem_handle, &mem);
469         if (ret)
470                 goto failed;
471         local->amem = ioremap(req.Base, req.Size);
472
473         dev_dbg(&link->dev, "ray_config sram=%p\n", local->sram);
474         dev_dbg(&link->dev, "ray_config rmem=%p\n", local->rmem);
475         dev_dbg(&link->dev, "ray_config amem=%p\n", local->amem);
476         if (ray_init(dev) < 0) {
477                 ray_release(link);
478                 return -ENODEV;
479         }
480
481         SET_NETDEV_DEV(dev, &link->dev);
482         i = register_netdev(dev);
483         if (i != 0) {
484                 printk("ray_config register_netdev() failed\n");
485                 ray_release(link);
486                 return i;
487         }
488
489         printk(KERN_INFO "%s: RayLink, irq %d, hw_addr %pM\n",
490                dev->name, dev->irq, dev->dev_addr);
491
492         return 0;
493
494 failed:
495         ray_release(link);
496         return -ENODEV;
497 } /* ray_config */
498
499 static inline struct ccs __iomem *ccs_base(ray_dev_t *dev)
500 {
501         return dev->sram + CCS_BASE;
502 }
503
504 static inline struct rcs __iomem *rcs_base(ray_dev_t *dev)
505 {
506         /*
507          * This looks nonsensical, since there is a separate
508          * RCS_BASE. But the difference between a "struct rcs"
509          * and a "struct ccs" ends up being in the _index_ off
510          * the base, so the base pointer is the same for both
511          * ccs/rcs.
512          */
513         return dev->sram + CCS_BASE;
514 }
515
516 /*===========================================================================*/
517 static int ray_init(struct net_device *dev)
518 {
519         int i;
520         UCHAR *p;
521         struct ccs __iomem *pccs;
522         ray_dev_t *local = netdev_priv(dev);
523         struct pcmcia_device *link = local->finder;
524         dev_dbg(&link->dev, "ray_init(0x%p)\n", dev);
525         if (!(pcmcia_dev_present(link))) {
526                 dev_dbg(&link->dev, "ray_init - device not present\n");
527                 return -1;
528         }
529
530         local->net_type = net_type;
531         local->sta_type = TYPE_STA;
532
533         /* Copy the startup results to local memory */
534         memcpy_fromio(&local->startup_res, local->sram + ECF_TO_HOST_BASE,
535                       sizeof(struct startup_res_6));
536
537         /* Check Power up test status and get mac address from card */
538         if (local->startup_res.startup_word != 0x80) {
539                 printk(KERN_INFO "ray_init ERROR card status = %2x\n",
540                        local->startup_res.startup_word);
541                 local->card_status = CARD_INIT_ERROR;
542                 return -1;
543         }
544
545         local->fw_ver = local->startup_res.firmware_version[0];
546         local->fw_bld = local->startup_res.firmware_version[1];
547         local->fw_var = local->startup_res.firmware_version[2];
548         dev_dbg(&link->dev, "ray_init firmware version %d.%d\n", local->fw_ver,
549               local->fw_bld);
550
551         local->tib_length = 0x20;
552         if ((local->fw_ver == 5) && (local->fw_bld >= 30))
553                 local->tib_length = local->startup_res.tib_length;
554         dev_dbg(&link->dev, "ray_init tib_length = 0x%02x\n", local->tib_length);
555         /* Initialize CCS's to buffer free state */
556         pccs = ccs_base(local);
557         for (i = 0; i < NUMBER_OF_CCS; i++) {
558                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
559         }
560         init_startup_params(local);
561
562         /* copy mac address to startup parameters */
563         if (parse_addr(phy_addr, local->sparm.b4.a_mac_addr)) {
564                 p = local->sparm.b4.a_mac_addr;
565         } else {
566                 memcpy(&local->sparm.b4.a_mac_addr,
567                        &local->startup_res.station_addr, ADDRLEN);
568                 p = local->sparm.b4.a_mac_addr;
569         }
570
571         clear_interrupt(local); /* Clear any interrupt from the card */
572         local->card_status = CARD_AWAITING_PARAM;
573         dev_dbg(&link->dev, "ray_init ending\n");
574         return 0;
575 } /* ray_init */
576
577 /*===========================================================================*/
578 /* Download startup parameters to the card and command it to read them       */
579 static int dl_startup_params(struct net_device *dev)
580 {
581         int ccsindex;
582         ray_dev_t *local = netdev_priv(dev);
583         struct ccs __iomem *pccs;
584         struct pcmcia_device *link = local->finder;
585
586         dev_dbg(&link->dev, "dl_startup_params entered\n");
587         if (!(pcmcia_dev_present(link))) {
588                 dev_dbg(&link->dev, "ray_cs dl_startup_params - device not present\n");
589                 return -1;
590         }
591
592         /* Copy parameters to host to ECF area */
593         if (local->fw_ver == 0x55)
594                 memcpy_toio(local->sram + HOST_TO_ECF_BASE, &local->sparm.b4,
595                             sizeof(struct b4_startup_params));
596         else
597                 memcpy_toio(local->sram + HOST_TO_ECF_BASE, &local->sparm.b5,
598                             sizeof(struct b5_startup_params));
599
600         /* Fill in the CCS fields for the ECF */
601         if ((ccsindex = get_free_ccs(local)) < 0)
602                 return -1;
603         local->dl_param_ccs = ccsindex;
604         pccs = ccs_base(local) + ccsindex;
605         writeb(CCS_DOWNLOAD_STARTUP_PARAMS, &pccs->cmd);
606         dev_dbg(&link->dev, "dl_startup_params start ccsindex = %d\n",
607               local->dl_param_ccs);
608         /* Interrupt the firmware to process the command */
609         if (interrupt_ecf(local, ccsindex)) {
610                 printk(KERN_INFO "ray dl_startup_params failed - "
611                        "ECF not ready for intr\n");
612                 local->card_status = CARD_DL_PARAM_ERROR;
613                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
614                 return -2;
615         }
616         local->card_status = CARD_DL_PARAM;
617         /* Start kernel timer to wait for dl startup to complete. */
618         local->timer.expires = jiffies + HZ / 2;
619         local->timer.data = (long)local;
620         local->timer.function = &verify_dl_startup;
621         add_timer(&local->timer);
622         dev_dbg(&link->dev,
623               "ray_cs dl_startup_params started timer for verify_dl_startup\n");
624         return 0;
625 } /* dl_startup_params */
626
627 /*===========================================================================*/
628 static void init_startup_params(ray_dev_t *local)
629 {
630         int i;
631
632         if (country > JAPAN_TEST)
633                 country = USA;
634         else if (country < USA)
635                 country = USA;
636         /* structure for hop time and beacon period is defined here using
637          * New 802.11D6.1 format.  Card firmware is still using old format
638          * until version 6.
639          *    Before                    After
640          *    a_hop_time ms byte        a_hop_time ms byte
641          *    a_hop_time 2s byte        a_hop_time ls byte
642          *    a_hop_time ls byte        a_beacon_period ms byte
643          *    a_beacon_period           a_beacon_period ls byte
644          *
645          *    a_hop_time = uS           a_hop_time = KuS
646          *    a_beacon_period = hops    a_beacon_period = KuS
647          *//* 64ms = 010000 */
648         if (local->fw_ver == 0x55) {
649                 memcpy((UCHAR *) &local->sparm.b4, b4_default_startup_parms,
650                        sizeof(struct b4_startup_params));
651                 /* Translate sane kus input values to old build 4/5 format */
652                 /* i = hop time in uS truncated to 3 bytes */
653                 i = (hop_dwell * 1024) & 0xffffff;
654                 local->sparm.b4.a_hop_time[0] = (i >> 16) & 0xff;
655                 local->sparm.b4.a_hop_time[1] = (i >> 8) & 0xff;
656                 local->sparm.b4.a_beacon_period[0] = 0;
657                 local->sparm.b4.a_beacon_period[1] =
658                     ((beacon_period / hop_dwell) - 1) & 0xff;
659                 local->sparm.b4.a_curr_country_code = country;
660                 local->sparm.b4.a_hop_pattern_length =
661                     hop_pattern_length[(int)country] - 1;
662                 if (bc) {
663                         local->sparm.b4.a_ack_timeout = 0x50;
664                         local->sparm.b4.a_sifs = 0x3f;
665                 }
666         } else { /* Version 5 uses real kus values */
667                 memcpy((UCHAR *) &local->sparm.b5, b5_default_startup_parms,
668                        sizeof(struct b5_startup_params));
669
670                 local->sparm.b5.a_hop_time[0] = (hop_dwell >> 8) & 0xff;
671                 local->sparm.b5.a_hop_time[1] = hop_dwell & 0xff;
672                 local->sparm.b5.a_beacon_period[0] =
673                     (beacon_period >> 8) & 0xff;
674                 local->sparm.b5.a_beacon_period[1] = beacon_period & 0xff;
675                 if (psm)
676                         local->sparm.b5.a_power_mgt_state = 1;
677                 local->sparm.b5.a_curr_country_code = country;
678                 local->sparm.b5.a_hop_pattern_length =
679                     hop_pattern_length[(int)country];
680         }
681
682         local->sparm.b4.a_network_type = net_type & 0x01;
683         local->sparm.b4.a_acting_as_ap_status = TYPE_STA;
684
685         if (essid != NULL)
686                 strncpy(local->sparm.b4.a_current_ess_id, essid, ESSID_SIZE);
687 } /* init_startup_params */
688
689 /*===========================================================================*/
690 static void verify_dl_startup(u_long data)
691 {
692         ray_dev_t *local = (ray_dev_t *) data;
693         struct ccs __iomem *pccs = ccs_base(local) + local->dl_param_ccs;
694         UCHAR status;
695         struct pcmcia_device *link = local->finder;
696
697         if (!(pcmcia_dev_present(link))) {
698                 dev_dbg(&link->dev, "ray_cs verify_dl_startup - device not present\n");
699                 return;
700         }
701 #if 0
702         {
703                 int i;
704                 printk(KERN_DEBUG
705                        "verify_dl_startup parameters sent via ccs %d:\n",
706                        local->dl_param_ccs);
707                 for (i = 0; i < sizeof(struct b5_startup_params); i++) {
708                         printk(" %2x",
709                                (unsigned int)readb(local->sram +
710                                                    HOST_TO_ECF_BASE + i));
711                 }
712                 printk("\n");
713         }
714 #endif
715
716         status = readb(&pccs->buffer_status);
717         if (status != CCS_BUFFER_FREE) {
718                 printk(KERN_INFO
719                        "Download startup params failed.  Status = %d\n",
720                        status);
721                 local->card_status = CARD_DL_PARAM_ERROR;
722                 return;
723         }
724         if (local->sparm.b4.a_network_type == ADHOC)
725                 start_net((u_long) local);
726         else
727                 join_net((u_long) local);
728 } /* end verify_dl_startup */
729
730 /*===========================================================================*/
731 /* Command card to start a network */
732 static void start_net(u_long data)
733 {
734         ray_dev_t *local = (ray_dev_t *) data;
735         struct ccs __iomem *pccs;
736         int ccsindex;
737         struct pcmcia_device *link = local->finder;
738         if (!(pcmcia_dev_present(link))) {
739                 dev_dbg(&link->dev, "ray_cs start_net - device not present\n");
740                 return;
741         }
742         /* Fill in the CCS fields for the ECF */
743         if ((ccsindex = get_free_ccs(local)) < 0)
744                 return;
745         pccs = ccs_base(local) + ccsindex;
746         writeb(CCS_START_NETWORK, &pccs->cmd);
747         writeb(0, &pccs->var.start_network.update_param);
748         /* Interrupt the firmware to process the command */
749         if (interrupt_ecf(local, ccsindex)) {
750                 dev_dbg(&link->dev, "ray start net failed - card not ready for intr\n");
751                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
752                 return;
753         }
754         local->card_status = CARD_DOING_ACQ;
755 } /* end start_net */
756
757 /*===========================================================================*/
758 /* Command card to join a network */
759 static void join_net(u_long data)
760 {
761         ray_dev_t *local = (ray_dev_t *) data;
762
763         struct ccs __iomem *pccs;
764         int ccsindex;
765         struct pcmcia_device *link = local->finder;
766
767         if (!(pcmcia_dev_present(link))) {
768                 dev_dbg(&link->dev, "ray_cs join_net - device not present\n");
769                 return;
770         }
771         /* Fill in the CCS fields for the ECF */
772         if ((ccsindex = get_free_ccs(local)) < 0)
773                 return;
774         pccs = ccs_base(local) + ccsindex;
775         writeb(CCS_JOIN_NETWORK, &pccs->cmd);
776         writeb(0, &pccs->var.join_network.update_param);
777         writeb(0, &pccs->var.join_network.net_initiated);
778         /* Interrupt the firmware to process the command */
779         if (interrupt_ecf(local, ccsindex)) {
780                 dev_dbg(&link->dev, "ray join net failed - card not ready for intr\n");
781                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
782                 return;
783         }
784         local->card_status = CARD_DOING_ACQ;
785 }
786
787 /*============================================================================
788     After a card is removed, ray_release() will unregister the net
789     device, and release the PCMCIA configuration.  If the device is
790     still open, this will be postponed until it is closed.
791 =============================================================================*/
792 static void ray_release(struct pcmcia_device *link)
793 {
794         struct net_device *dev = link->priv;
795         ray_dev_t *local = netdev_priv(dev);
796         int i;
797
798         dev_dbg(&link->dev, "ray_release\n");
799
800         del_timer(&local->timer);
801
802         iounmap(local->sram);
803         iounmap(local->rmem);
804         iounmap(local->amem);
805         /* Do bother checking to see if these succeed or not */
806         i = pcmcia_release_window(link, local->amem_handle);
807         if (i != 0)
808                 dev_dbg(&link->dev, "ReleaseWindow(local->amem) ret = %x\n", i);
809         i = pcmcia_release_window(link, local->rmem_handle);
810         if (i != 0)
811                 dev_dbg(&link->dev, "ReleaseWindow(local->rmem) ret = %x\n", i);
812         pcmcia_disable_device(link);
813
814         dev_dbg(&link->dev, "ray_release ending\n");
815 }
816
817 static int ray_suspend(struct pcmcia_device *link)
818 {
819         struct net_device *dev = link->priv;
820
821         if (link->open)
822                 netif_device_detach(dev);
823
824         return 0;
825 }
826
827 static int ray_resume(struct pcmcia_device *link)
828 {
829         struct net_device *dev = link->priv;
830
831         if (link->open) {
832                 ray_reset(dev);
833                 netif_device_attach(dev);
834         }
835
836         return 0;
837 }
838
839 /*===========================================================================*/
840 static int ray_dev_init(struct net_device *dev)
841 {
842 #ifdef RAY_IMMEDIATE_INIT
843         int i;
844 #endif /* RAY_IMMEDIATE_INIT */
845         ray_dev_t *local = netdev_priv(dev);
846         struct pcmcia_device *link = local->finder;
847
848         dev_dbg(&link->dev, "ray_dev_init(dev=%p)\n", dev);
849         if (!(pcmcia_dev_present(link))) {
850                 dev_dbg(&link->dev, "ray_dev_init - device not present\n");
851                 return -1;
852         }
853 #ifdef RAY_IMMEDIATE_INIT
854         /* Download startup parameters */
855         if ((i = dl_startup_params(dev)) < 0) {
856                 printk(KERN_INFO "ray_dev_init dl_startup_params failed - "
857                        "returns 0x%x\n", i);
858                 return -1;
859         }
860 #else /* RAY_IMMEDIATE_INIT */
861         /* Postpone the card init so that we can still configure the card,
862          * for example using the Wireless Extensions. The init will happen
863          * in ray_open() - Jean II */
864         dev_dbg(&link->dev,
865               "ray_dev_init: postponing card init to ray_open() ; Status = %d\n",
866               local->card_status);
867 #endif /* RAY_IMMEDIATE_INIT */
868
869         /* copy mac and broadcast addresses to linux device */
870         memcpy(dev->dev_addr, &local->sparm.b4.a_mac_addr, ADDRLEN);
871         memset(dev->broadcast, 0xff, ETH_ALEN);
872
873         dev_dbg(&link->dev, "ray_dev_init ending\n");
874         return 0;
875 }
876
877 /*===========================================================================*/
878 static int ray_dev_config(struct net_device *dev, struct ifmap *map)
879 {
880         ray_dev_t *local = netdev_priv(dev);
881         struct pcmcia_device *link = local->finder;
882         /* Dummy routine to satisfy device structure */
883         dev_dbg(&link->dev, "ray_dev_config(dev=%p,ifmap=%p)\n", dev, map);
884         if (!(pcmcia_dev_present(link))) {
885                 dev_dbg(&link->dev, "ray_dev_config - device not present\n");
886                 return -1;
887         }
888
889         return 0;
890 }
891
892 /*===========================================================================*/
893 static netdev_tx_t ray_dev_start_xmit(struct sk_buff *skb,
894                                             struct net_device *dev)
895 {
896         ray_dev_t *local = netdev_priv(dev);
897         struct pcmcia_device *link = local->finder;
898         short length = skb->len;
899
900         if (!pcmcia_dev_present(link)) {
901                 dev_dbg(&link->dev, "ray_dev_start_xmit - device not present\n");
902                 dev_kfree_skb(skb);
903                 return NETDEV_TX_OK;
904         }
905
906         dev_dbg(&link->dev, "ray_dev_start_xmit(skb=%p, dev=%p)\n", skb, dev);
907         if (local->authentication_state == NEED_TO_AUTH) {
908                 dev_dbg(&link->dev, "ray_cs Sending authentication request.\n");
909                 if (!build_auth_frame(local, local->auth_id, OPEN_AUTH_REQUEST)) {
910                         local->authentication_state = AUTHENTICATED;
911                         netif_stop_queue(dev);
912                         return NETDEV_TX_BUSY;
913                 }
914         }
915
916         if (length < ETH_ZLEN) {
917                 if (skb_padto(skb, ETH_ZLEN))
918                         return NETDEV_TX_OK;
919                 length = ETH_ZLEN;
920         }
921         switch (ray_hw_xmit(skb->data, length, dev, DATA_TYPE)) {
922         case XMIT_NO_CCS:
923         case XMIT_NEED_AUTH:
924                 netif_stop_queue(dev);
925                 return NETDEV_TX_BUSY;
926         case XMIT_NO_INTR:
927         case XMIT_MSG_BAD:
928         case XMIT_OK:
929         default:
930                 dev_kfree_skb(skb);
931         }
932
933         return NETDEV_TX_OK;
934 } /* ray_dev_start_xmit */
935
936 /*===========================================================================*/
937 static int ray_hw_xmit(unsigned char *data, int len, struct net_device *dev,
938                        UCHAR msg_type)
939 {
940         ray_dev_t *local = netdev_priv(dev);
941         struct ccs __iomem *pccs;
942         int ccsindex;
943         int offset;
944         struct tx_msg __iomem *ptx;     /* Address of xmit buffer in PC space */
945         short int addr;         /* Address of xmit buffer in card space */
946
947         pr_debug("ray_hw_xmit(data=%p, len=%d, dev=%p)\n", data, len, dev);
948         if (len + TX_HEADER_LENGTH > TX_BUF_SIZE) {
949                 printk(KERN_INFO "ray_hw_xmit packet too large: %d bytes\n",
950                        len);
951                 return XMIT_MSG_BAD;
952         }
953         switch (ccsindex = get_free_tx_ccs(local)) {
954         case ECCSBUSY:
955                 pr_debug("ray_hw_xmit tx_ccs table busy\n");
956         case ECCSFULL:
957                 pr_debug("ray_hw_xmit No free tx ccs\n");
958         case ECARDGONE:
959                 netif_stop_queue(dev);
960                 return XMIT_NO_CCS;
961         default:
962                 break;
963         }
964         addr = TX_BUF_BASE + (ccsindex << 11);
965
966         if (msg_type == DATA_TYPE) {
967                 local->stats.tx_bytes += len;
968                 local->stats.tx_packets++;
969         }
970
971         ptx = local->sram + addr;
972
973         ray_build_header(local, ptx, msg_type, data);
974         if (translate) {
975                 offset = translate_frame(local, ptx, data, len);
976         } else { /* Encapsulate frame */
977                 /* TBD TIB length will move address of ptx->var */
978                 memcpy_toio(&ptx->var, data, len);
979                 offset = 0;
980         }
981
982         /* fill in the CCS */
983         pccs = ccs_base(local) + ccsindex;
984         len += TX_HEADER_LENGTH + offset;
985         writeb(CCS_TX_REQUEST, &pccs->cmd);
986         writeb(addr >> 8, &pccs->var.tx_request.tx_data_ptr[0]);
987         writeb(local->tib_length, &pccs->var.tx_request.tx_data_ptr[1]);
988         writeb(len >> 8, &pccs->var.tx_request.tx_data_length[0]);
989         writeb(len & 0xff, &pccs->var.tx_request.tx_data_length[1]);
990 /* TBD still need psm_cam? */
991         writeb(PSM_CAM, &pccs->var.tx_request.pow_sav_mode);
992         writeb(local->net_default_tx_rate, &pccs->var.tx_request.tx_rate);
993         writeb(0, &pccs->var.tx_request.antenna);
994         pr_debug("ray_hw_xmit default_tx_rate = 0x%x\n",
995               local->net_default_tx_rate);
996
997         /* Interrupt the firmware to process the command */
998         if (interrupt_ecf(local, ccsindex)) {
999                 pr_debug("ray_hw_xmit failed - ECF not ready for intr\n");
1000 /* TBD very inefficient to copy packet to buffer, and then not
1001    send it, but the alternative is to queue the messages and that
1002    won't be done for a while.  Maybe set tbusy until a CCS is free?
1003 */
1004                 writeb(CCS_BUFFER_FREE, &pccs->buffer_status);
1005                 return XMIT_NO_INTR;
1006         }
1007         return XMIT_OK;
1008 } /* end ray_hw_xmit */
1009
1010 /*===========================================================================*/
1011 static int translate_frame(ray_dev_t *local, struct tx_msg __iomem *ptx,
1012                            unsigned char *data, int len)
1013 {
1014         __be16 proto = ((struct ethhdr *)data)->h_proto;
1015         if (ntohs(proto) >= 1536) { /* DIX II ethernet frame */
1016                 pr_debug("ray_cs translate_frame DIX II\n");
1017                 /* Copy LLC header to card buffer */
1018                 memcpy_toio(&ptx->var, eth2_llc, sizeof(eth2_llc));
1019                 memcpy_toio(((void __iomem *)&ptx->var) + sizeof(eth2_llc),
1020                             (UCHAR *) &proto, 2);
1021                 if (proto == htons(ETH_P_AARP) || proto == htons(ETH_P_IPX)) {
1022                         /* This is the selective translation table, only 2 entries */
1023                         writeb(0xf8,
1024                                &((struct snaphdr_t __iomem *)ptx->var)->org[3]);
1025                 }
1026                 /* Copy body of ethernet packet without ethernet header */
1027                 memcpy_toio((void __iomem *)&ptx->var +
1028                             sizeof(struct snaphdr_t), data + ETH_HLEN,
1029                             len - ETH_HLEN);
1030                 return (int)sizeof(struct snaphdr_t) - ETH_HLEN;
1031         } else { /* already  802 type, and proto is length */
1032                 pr_debug("ray_cs translate_frame 802\n");
1033                 if (proto == htons(0xffff)) { /* evil netware IPX 802.3 without LLC */
1034                         pr_debug("ray_cs translate_frame evil IPX\n");
1035                         memcpy_toio(&ptx->var, data + ETH_HLEN, len - ETH_HLEN);
1036                         return 0 - ETH_HLEN;
1037                 }
1038                 memcpy_toio(&ptx->var, data + ETH_HLEN, len - ETH_HLEN);
1039                 return 0 - ETH_HLEN;
1040         }
1041         /* TBD do other frame types */
1042 } /* end translate_frame */
1043
1044 /*===========================================================================*/
1045 static void ray_build_header(ray_dev_t *local, struct tx_msg __iomem *ptx,
1046                              UCHAR msg_type, unsigned char *data)
1047 {
1048         writeb(PROTOCOL_VER | msg_type, &ptx->mac.frame_ctl_1);
1049 /*** IEEE 802.11 Address field assignments *************
1050                 TODS    FROMDS  addr_1          addr_2          addr_3  addr_4
1051 Adhoc           0       0       dest            src (terminal)  BSSID   N/A
1052 AP to Terminal  0       1       dest            AP(BSSID)       source  N/A
1053 Terminal to AP  1       0       AP(BSSID)       src (terminal)  dest    N/A
1054 AP to AP        1       1       dest AP         src AP          dest    source
1055 *******************************************************/
1056         if (local->net_type == ADHOC) {
1057                 writeb(0, &ptx->mac.frame_ctl_2);
1058                 memcpy_toio(ptx->mac.addr_1, ((struct ethhdr *)data)->h_dest,
1059                             2 * ADDRLEN);
1060                 memcpy_toio(ptx->mac.addr_3, local->bss_id, ADDRLEN);
1061         } else { /* infrastructure */
1062
1063                 if (local->sparm.b4.a_acting_as_ap_status) {
1064                         writeb(FC2_FROM_DS, &ptx->mac.frame_ctl_2);
1065                         memcpy_toio(ptx->mac.addr_1,
1066                                     ((struct ethhdr *)data)->h_dest, ADDRLEN);
1067                         memcpy_toio(ptx->mac.addr_2, local->bss_id, 6);
1068                         memcpy_toio(ptx->mac.addr_3,
1069                                     ((struct ethhdr *)data)->h_source, ADDRLEN);
1070                 } else { /* Terminal */
1071
1072                         writeb(FC2_TO_DS, &ptx->mac.frame_ctl_2);
1073                         memcpy_toio(ptx->mac.addr_1, local->bss_id, ADDRLEN);
1074                         memcpy_toio(ptx->mac.addr_2,
1075                                     ((struct ethhdr *)data)->h_source, ADDRLEN);
1076                         memcpy_toio(ptx->mac.addr_3,
1077                                     ((struct ethhdr *)data)->h_dest, ADDRLEN);
1078                 }
1079         }
1080 } /* end encapsulate_frame */
1081
1082 /*===========================================================================*/
1083
1084 static void netdev_get_drvinfo(struct net_device *dev,
1085                                struct ethtool_drvinfo *info)
1086 {
1087         strcpy(info->driver, "ray_cs");
1088 }
1089
1090 static const struct ethtool_ops netdev_ethtool_ops = {
1091         .get_drvinfo = netdev_get_drvinfo,
1092 };
1093
1094 /*====================================================================*/
1095
1096 /*------------------------------------------------------------------*/
1097 /*
1098  * Wireless Handler : get protocol name
1099  */
1100 static int ray_get_name(struct net_device *dev, struct iw_request_info *info,
1101                         union iwreq_data *wrqu, char *extra)
1102 {
1103         strcpy(wrqu->name, "IEEE 802.11-FH");
1104         return 0;
1105 }
1106
1107 /*------------------------------------------------------------------*/
1108 /*
1109  * Wireless Handler : set frequency
1110  */
1111 static int ray_set_freq(struct net_device *dev, struct iw_request_info *info,
1112                         union iwreq_data *wrqu, char *extra)
1113 {
1114         ray_dev_t *local = netdev_priv(dev);
1115         int err = -EINPROGRESS; /* Call commit handler */
1116
1117         /* Reject if card is already initialised */
1118         if (local->card_status != CARD_AWAITING_PARAM)
1119                 return -EBUSY;
1120
1121         /* Setting by channel number */
1122         if ((wrqu->freq.m > USA_HOP_MOD) || (wrqu->freq.e > 0))
1123                 err = -EOPNOTSUPP;
1124         else
1125                 local->sparm.b5.a_hop_pattern = wrqu->freq.m;
1126
1127         return err;
1128 }
1129
1130 /*------------------------------------------------------------------*/
1131 /*
1132  * Wireless Handler : get frequency
1133  */
1134 static int ray_get_freq(struct net_device *dev, struct iw_request_info *info,
1135                         union iwreq_data *wrqu, char *extra)
1136 {
1137         ray_dev_t *local = netdev_priv(dev);
1138
1139         wrqu->freq.m = local->sparm.b5.a_hop_pattern;
1140         wrqu->freq.e = 0;
1141         return 0;
1142 }
1143
1144 /*------------------------------------------------------------------*/
1145 /*
1146  * Wireless Handler : set ESSID
1147  */
1148 static int ray_set_essid(struct net_device *dev, struct iw_request_info *info,
1149                          union iwreq_data *wrqu, char *extra)
1150 {
1151         ray_dev_t *local = netdev_priv(dev);
1152
1153         /* Reject if card is already initialised */
1154         if (local->card_status != CARD_AWAITING_PARAM)
1155                 return -EBUSY;
1156
1157         /* Check if we asked for `any' */
1158         if (wrqu->essid.flags == 0)
1159                 /* Corey : can you do that ? */
1160                 return -EOPNOTSUPP;
1161
1162         /* Check the size of the string */
1163         if (wrqu->essid.length > IW_ESSID_MAX_SIZE)
1164                 return -E2BIG;
1165
1166         /* Set the ESSID in the card */
1167         memset(local->sparm.b5.a_current_ess_id, 0, IW_ESSID_MAX_SIZE);
1168         memcpy(local->sparm.b5.a_current_ess_id, extra, wrqu->essid.length);
1169
1170         return -EINPROGRESS;    /* Call commit handler */
1171 }
1172
1173 /*------------------------------------------------------------------*/
1174 /*
1175  * Wireless Handler : get ESSID
1176  */
1177 static int ray_get_essid(struct net_device *dev, struct iw_request_info *info,
1178                          union iwreq_data *wrqu, char *extra)
1179 {
1180         ray_dev_t *local = netdev_priv(dev);
1181
1182         /* Get the essid that was set */
1183         memcpy(extra, local->sparm.b5.a_current_ess_id, IW_ESSID_MAX_SIZE);
1184
1185         /* Push it out ! */
1186         wrqu->essid.length = strlen(extra);
1187         wrqu->essid.flags = 1;  /* active */
1188
1189         return 0;
1190 }
1191
1192 /*------------------------------------------------------------------*/
1193 /*
1194  * Wireless Handler : get AP address
1195  */
1196 static int ray_get_wap(struct net_device *dev, struct iw_request_info *info,
1197                        union iwreq_data *wrqu, char *extra)
1198 {
1199         ray_dev_t *local = netdev_priv(dev);
1200
1201         memcpy(wrqu->ap_addr.sa_data, local->bss_id, ETH_ALEN);
1202         wrqu->ap_addr.sa_family = ARPHRD_ETHER;
1203
1204         return 0;
1205 }
1206
1207 /*------------------------------------------------------------------*/
1208 /*
1209  * Wireless Handler : set Bit-Rate
1210  */
1211 static int ray_set_rate(struct net_device *dev, struct iw_request_info *info,
1212                         union iwreq_data *wrqu, char *extra)
1213 {
1214         ray_dev_t *local = netdev_priv(dev);
1215
1216         /* Reject if card is already initialised */
1217         if (local->card_status != CARD_AWAITING_PARAM)
1218                 return -EBUSY;
1219
1220         /* Check if rate is in range */
1221         if ((wrqu->bitrate.value != 1000000) && (wrqu->bitrate.value != 2000000))
1222                 return -EINVAL;
1223
1224         /* Hack for 1.5 Mb/s instead of 2 Mb/s */
1225         if ((local->fw_ver == 0x55) &&  /* Please check */
1226             (wrqu->bitrate.value == 2000000))
1227                 local->net_default_tx_rate = 3;
1228         else
1229                 local->net_default_tx_rate = wrqu->bitrate.value / 500000;
1230
1231         return 0;
1232 }
1233
1234 /*------------------------------------------------------------------*/
1235 /*
1236  * Wireless Handler : get Bit-Rate
1237  */
1238 static int ray_get_rate(struct net_device *dev, struct iw_request_info *info,
1239                         union iwreq_data *wrqu, char *extra)
1240 {
1241         ray_dev_t *local = netdev_priv(dev);
1242
1243         if (local->net_default_tx_rate == 3)
1244                 wrqu->bitrate.value = 2000000;  /* Hum... */
1245         else
1246                 wrqu->bitrate.value = local->net_default_tx_rate * 500000;
1247         wrqu->bitrate.fixed = 0;        /* We are in auto mode */
1248
1249         return 0;
1250 }
1251
1252 /*------------------------------------------------------------------*/
1253 /*
1254  * Wireless Handler : set RTS threshold
1255  */
1256 static int ray_set_rts(struct net_device *dev, struct iw_request_info *info,
1257                        union iwreq_data *wrqu, char *extra)
1258 {
1259         ray_dev_t *local = netdev_priv(dev);
1260         int rthr = wrqu->rts.value;
1261
1262         /* Reject if card is already initialised */
1263         if (local->card_status != CARD_AWAITING_PARAM)
1264                 return -EBUSY;
1265
1266         /* if(wrq->u.rts.fixed == 0) we should complain */
1267         if (wrqu->rts.disabled)
1268                 rthr = 32767;
1269         else {
1270                 if ((rthr < 0) || (rthr > 2347))   /* What's the max packet size ??? */
1271                         return -EINVAL;
1272         }
1273         local->sparm.b5.a_rts_threshold[0] = (rthr >> 8) & 0xFF;
1274         local->sparm.b5.a_rts_threshold[1] = rthr & 0xFF;
1275
1276         return -EINPROGRESS;    /* Call commit handler */
1277 }
1278
1279 /*------------------------------------------------------------------*/
1280 /*
1281  * Wireless Handler : get RTS threshold
1282  */
1283 static int ray_get_rts(struct net_device *dev, struct iw_request_info *info,
1284                        union iwreq_data *wrqu, char *extra)
1285 {
1286         ray_dev_t *local = netdev_priv(dev);
1287
1288         wrqu->rts.value = (local->sparm.b5.a_rts_threshold[0] << 8)
1289             + local->sparm.b5.a_rts_threshold[1];
1290         wrqu->rts.disabled = (wrqu->rts.value == 32767);
1291         wrqu->rts.fixed = 1;
1292
1293         return 0;
1294 }
1295
1296 /*------------------------------------------------------------------*/
1297 /*
1298  * Wireless Handler : set Fragmentation threshold
1299  */
1300 static int ray_set_frag(struct net_device *dev, struct iw_request_info *info,
1301                         union iwreq_data *wrqu, char *extra)
1302 {
1303         ray_dev_t *local = netdev_priv(dev);
1304         int fthr = wrqu->frag.value;
1305
1306         /* Reject if card is already initialised */
1307         if (local->card_status != CARD_AWAITING_PARAM)
1308                 return -EBUSY;
1309
1310         /* if(wrq->u.frag.fixed == 0) should complain */
1311         if (wrqu->frag.disabled)
1312                 fthr = 32767;
1313         else {
1314                 if ((fthr < 256) || (fthr > 2347))      /* To check out ! */
1315                         return -EINVAL;
1316         }
1317         local->sparm.b5.a_frag_threshold[0] = (fthr >> 8) & 0xFF;
1318         local->sparm.b5.a_frag_threshold[1] = fthr & 0xFF;
1319
1320         return -EINPROGRESS;    /* Call commit handler */
1321 }
1322
1323 /*------------------------------------------------------------------*/
1324 /*
1325  * Wireless Handler : get Fragmentation threshold
1326  */
1327 static int ray_get_frag(struct net_device *dev, struct iw_request_info *info,
1328                         union iwreq_data *wrqu, char *extra)
1329 {
1330         ray_dev_t *local = netdev_priv(dev);
1331
1332         wrqu->frag.value = (local->sparm.b5.a_frag_threshold[0] << 8)
1333             + local->sparm.b5.a_frag_threshold[1];
1334         wrqu->frag.disabled = (wrqu->frag.value == 32767);
1335         wrqu->frag.fixed = 1;
1336
1337         return 0;
1338 }
1339
1340 /*------------------------------------------------------------------*/
1341 /*
1342  * Wireless Handler : set Mode of Operation
1343  */
1344 static int ray_set_mode(struct net_device *dev, struct iw_request_info *info,
1345                         union iwreq_data *wrqu, char *extra)
1346 {
1347         ray_dev_t *local = netdev_priv(dev);
1348         int err = -EINPROGRESS; /* Call commit handler */
1349         char card_mode = 1;
1350
1351         /* Reject if card is already initialised */
1352         if (local->card_status != CARD_AWAITING_PARAM)
1353                 return -EBUSY;
1354
1355         switch (wrqu->mode) {
1356         case IW_MODE_ADHOC:
1357                 card_mode = 0;
1358                 /* Fall through */
1359         case IW_MODE_INFRA:
1360                 local->sparm.b5.a_network_type = card_mode;
1361                 break;
1362         default:
1363                 err = -EINVAL;
1364         }
1365
1366         return err;
1367 }
1368
1369 /*------------------------------------------------------------------*/
1370 /*
1371  * Wireless Handler : get Mode of Operation
1372  */
1373 static int ray_get_mode(struct net_device *dev, struct iw_request_info *info,
1374                         union iwreq_data *wrqu, char *extra)
1375 {
1376         ray_dev_t *local = netdev_priv(dev);
1377
1378         if (local->sparm.b5.a_network_type)
1379                 wrqu->mode = IW_MODE_INFRA;
1380         else
1381                 wrqu->mode = IW_MODE_ADHOC;
1382
1383         return 0;
1384 }
1385
1386 /*------------------------------------------------------------------*/
1387 /*
1388  * Wireless Handler : get range info
1389  */
1390 static int ray_get_range(struct net_device *dev, struct iw_request_info *info,
1391                          union iwreq_data *wrqu, char *extra)
1392 {
1393         struct iw_range *range = (struct iw_range *)extra;
1394
1395         memset(range, 0, sizeof(struct iw_range));
1396
1397         /* Set the length (very important for backward compatibility) */
1398         wrqu->data.length = sizeof(struct iw_range);
1399
1400         /* Set the Wireless Extension versions */
1401         range->we_version_compiled = WIRELESS_EXT;
1402         range->we_version_source = 9;
1403
1404         /* Set information in the range struct */
1405         range->throughput = 1.1 * 1000 * 1000;  /* Put the right number here */
1406         range->num_channels = hop_pattern_length[(int)country];
1407         range->num_frequency = 0;
1408         range->max_qual.qual = 0;
1409         range->max_qual.level = 255;    /* What's the correct value ? */
1410         range->max_qual.noise = 255;    /* Idem */
1411         range->num_bitrates = 2;
1412         range->bitrate[0] = 1000000;    /* 1 Mb/s */
1413         range->bitrate[1] = 2000000;    /* 2 Mb/s */
1414         return 0;
1415 }
1416
1417 /*------------------------------------------------------------------*/
1418 /*
1419  * Wireless Private Handler : set framing mode
1420  */
1421 static int ray_set_framing(struct net_device *dev, struct iw_request_info *info,
1422                            union iwreq_data *wrqu, char *extra)
1423 {
1424         translate = *(extra);   /* Set framing mode */
1425
1426         return 0;
1427 }
1428
1429 /*------------------------------------------------------------------*/
1430 /*
1431  * Wireless Private Handler : get framing mode
1432  */
1433 static int ray_get_framing(struct net_device *dev, struct iw_request_info *info,
1434                            union iwreq_data *wrqu, char *extra)
1435 {
1436         *(extra) = translate;
1437
1438         return 0;
1439 }
1440
1441 /*------------------------------------------------------------------*/
1442 /*
1443  * Wireless Private Handler : get country
1444  */
1445 static int ray_get_country(struct net_device *dev, struct iw_request_info *info,
1446                            union iwreq_data *wrqu, char *extra)
1447 {
1448         *(extra) = country;
1449
1450         return 0;
1451 }
1452
1453 /*------------------------------------------------------------------*/
1454 /*
1455  * Commit handler : called after a bunch of SET operations
1456  */
1457 static int ray_commit(struct net_device *dev, struct iw_request_info *info,
1458                       union iwreq_data *wrqu, char *extra)
1459 {
1460         return 0;
1461 }
1462
1463 /*------------------------------------------------------------------*/
1464 /*
1465  * Stats handler : return Wireless Stats
1466  */
1467 static iw_stats *ray_get_wireless_stats(struct net_device *dev)
1468 {
1469         ray_dev_t *local = netdev_priv(dev);
1470         struct pcmcia_device *link = local->finder;
1471         struct status __iomem *p = local->sram + STATUS_BASE;
1472
1473         local->wstats.status = local->card_status;
1474 #ifdef WIRELESS_SPY
1475         if ((local->spy_data.spy_number > 0)
1476             && (local->sparm.b5.a_network_type == 0)) {
1477                 /* Get it from the first node in spy list */
1478                 local->wstats.qual.qual = local->spy_data.spy_stat[0].qual;
1479                 local->wstats.qual.level = local->spy_data.spy_stat[0].level;
1480                 local->wstats.qual.noise = local->spy_data.spy_stat[0].noise;
1481                 local->wstats.qual.updated =
1482                     local->spy_data.spy_stat[0].updated;
1483         }
1484 #endif /* WIRELESS_SPY */
1485
1486         if (pcmcia_dev_present(link)) {
1487                 local->wstats.qual.noise = readb(&p->rxnoise);
1488                 local->wstats.qual.updated |= 4;
1489         }
1490
1491         return &local->wstats;
1492 } /* end ray_get_wireless_stats */
1493
1494 /*------------------------------------------------------------------*/
1495 /*
1496  * Structures to export the Wireless Handlers
1497  */
1498
1499 static const iw_handler ray_handler[] = {
1500         IW_HANDLER(SIOCSIWCOMMIT, ray_commit),
1501         IW_HANDLER(SIOCGIWNAME, ray_get_name),
1502         IW_HANDLER(SIOCSIWFREQ, ray_set_freq),
1503         IW_HANDLER(SIOCGIWFREQ, ray_get_freq),
1504         IW_HANDLER(SIOCSIWMODE, ray_set_mode),
1505         IW_HANDLER(SIOCGIWMODE, ray_get_mode),
1506         IW_HANDLER(SIOCGIWRANGE, ray_get_range),
1507 #ifdef WIRELESS_SPY
1508         IW_HANDLER(SIOCSIWSPY, iw_handler_set_spy),
1509         IW_HANDLER(SIOCGIWSPY, iw_handler_get_spy),
1510         IW_HANDLER(SIOCSIWTHRSPY, iw_handler_set_thrspy),
1511         IW_HANDLER(SIOCGIWTHRSPY, iw_handler_get_thrspy),
1512 #endif /* WIRELESS_SPY */
1513         IW_HANDLER(SIOCGIWAP, ray_get_wap),
1514         IW_HANDLER(SIOCSIWESSID, ray_set_essid),
1515         IW_HANDLER(SIOCGIWESSID, ray_get_essid),
1516         IW_HANDLER(SIOCSIWRATE, ray_set_rate),
1517         IW_HANDLER(SIOCGIWRATE, ray_get_rate),
1518         IW_HANDLER(SIOCSIWRTS, ray_set_rts),
1519         IW_HANDLER(SIOCGIWRTS, ray_get_rts),
1520         IW_HANDLER(SIOCSIWFRAG, ray_set_frag),
1521         IW_HANDLER(SIOCGIWFRAG, ray_get_frag),
1522 };
1523
1524 #define SIOCSIPFRAMING  SIOCIWFIRSTPRIV /* Set framing mode */
1525 #define SIOCGIPFRAMING  SIOCIWFIRSTPRIV + 1     /* Get framing mode */
1526 #define SIOCGIPCOUNTRY  SIOCIWFIRSTPRIV + 3     /* Get country code */
1527
1528 static const iw_handler ray_private_handler[] = {
1529         [0] = ray_set_framing,
1530         [1] = ray_get_framing,
1531         [3] = ray_get_country,
1532 };
1533
1534 static const struct iw_priv_args ray_private_args[] = {
1535 /* cmd,         set_args,       get_args,       name */
1536         {SIOCSIPFRAMING, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, 0,
1537          "set_framing"},
1538         {SIOCGIPFRAMING, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1,
1539          "get_framing"},
1540         {SIOCGIPCOUNTRY, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1,
1541          "get_country"},
1542 };
1543
1544 static const struct iw_handler_def ray_handler_def = {
1545         .num_standard = ARRAY_SIZE(ray_handler),
1546         .num_private = ARRAY_SIZE(ray_private_handler),
1547         .num_private_args = ARRAY_SIZE(ray_private_args),
1548         .standard = ray_handler,
1549         .private = ray_private_handler,
1550         .private_args = ray_private_args,
1551         .get_wireless_stats = ray_get_wireless_stats,
1552 };
1553
1554 /*===========================================================================*/
1555 static int ray_open(struct net_device *dev)
1556 {
1557         ray_dev_t *local = netdev_priv(dev);
1558         struct pcmcia_device *link;
1559         link = local->finder;
1560
1561         dev_dbg(&link->dev, "ray_open('%s')\n", dev->name);
1562
1563         if (link->open == 0)
1564                 local->num_multi = 0;
1565         link->open++;
1566
1567         /* If the card is not started, time to start it ! - Jean II */
1568         if (local->card_status == CARD_AWAITING_PARAM) {
1569                 int i;
1570
1571                 dev_dbg(&link->dev, "ray_open: doing init now !\n");
1572
1573                 /* Download startup parameters */
1574                 if ((i = dl_startup_params(dev)) < 0) {
1575                         printk(KERN_INFO
1576                                "ray_dev_init dl_startup_params failed - "
1577                                "returns 0x%x\n", i);
1578                         return -1;
1579                 }
1580         }
1581
1582         if (sniffer)
1583                 netif_stop_queue(dev);
1584         else
1585                 netif_start_queue(dev);
1586
1587         dev_dbg(&link->dev, "ray_open ending\n");
1588         return 0;
1589 } /* end ray_open */
1590
1591 /*===========================================================================*/
1592 static int ray_dev_close(struct net_device *dev)
1593 {
1594         ray_dev_t *local = netdev_priv(dev);
1595         struct pcmcia_device *link;
1596         link = local->finder;
1597
1598         dev_dbg(&link->dev, "ray_dev_close('%s')\n", dev->name);
1599
1600         link->open--;
1601         netif_stop_queue(dev);
1602
1603         /* In here, we should stop the hardware (stop card from beeing active)
1604          * and set local->card_status to CARD_AWAITING_PARAM, so that while the
1605          * card is closed we can chage its configuration.
1606          * Probably also need a COR reset to get sane state - Jean II */
1607
1608         return 0;
1609 } /* end ray_dev_close */
1610
1611 /*===========================================================================*/
1612 static void ray_reset(struct net_device *dev)
1613 {
1614         pr_debug("ray_reset entered\n");
1615 }
1616
1617 /*===========================================================================*/
1618 /* Cause a firmware interrupt if it is ready for one                         */
1619 /* Return nonzero if not ready                                               */
1620 static int interrupt_ecf(ray_dev_t *local, int ccs)
1621 {
1622         int i = 50;
1623         struct pcmcia_device *link = local->finder;
1624
1625         if (!(pcmcia_dev_present(link))) {
1626                 dev_dbg(&link->dev, "ray_cs interrupt_ecf - device not present\n");
1627                 return -1;
1628         }
1629         dev_dbg(&link->dev, "interrupt_ecf(local=%p, ccs = 0x%x\n", local, ccs);
1630
1631         while (i &&
1632                (readb(local->amem + CIS_OFFSET + ECF_INTR_OFFSET) &
1633                 ECF_INTR_SET))
1634                 i--;
1635         if (i == 0) {
1636                 dev_dbg(&link->dev, "ray_cs interrupt_ecf card not ready for interrupt\n");
1637                 return -1;
1638         }
1639         /* Fill the mailbox, then kick the card */
1640         writeb(ccs, local->sram + SCB_BASE);
1641         writeb(ECF_INTR_SET, local->amem + CIS_OFFSET + ECF_INTR_OFFSET);
1642         return 0;
1643 } /* interrupt_ecf */
1644
1645 /*===========================================================================*/
1646 /* Get next free transmit CCS                                                */
1647 /* Return - index of current tx ccs                                          */
1648 static int get_free_tx_ccs(ray_dev_t *local)
1649 {
1650         int i;
1651         struct ccs __iomem *pccs = ccs_base(local);
1652         struct pcmcia_device *link = local->finder;
1653
1654         if (!(pcmcia_dev_present(link))) {
1655                 dev_dbg(&link->dev, "ray_cs get_free_tx_ccs - device not present\n");
1656                 return ECARDGONE;
1657         }
1658
1659         if (test_and_set_bit(0, &local->tx_ccs_lock)) {
1660                 dev_dbg(&link->dev, "ray_cs tx_ccs_lock busy\n");
1661                 return ECCSBUSY;
1662         }
1663
1664         for (i = 0; i < NUMBER_OF_TX_CCS; i++) {
1665                 if (readb(&(pccs + i)->buffer_status) == CCS_BUFFER_FREE) {
1666                         writeb(CCS_BUFFER_BUSY, &(pccs + i)->buffer_status);
1667                         writeb(CCS_END_LIST, &(pccs + i)->link);
1668                         local->tx_ccs_lock = 0;
1669                         return i;
1670                 }
1671         }
1672         local->tx_ccs_lock = 0;
1673         dev_dbg(&link->dev, "ray_cs ERROR no free tx CCS for raylink card\n");
1674         return ECCSFULL;
1675 } /* get_free_tx_ccs */
1676
1677 /*===========================================================================*/
1678 /* Get next free CCS                                                         */
1679 /* Return - index of current ccs                                             */
1680 static int get_free_ccs(ray_dev_t *local)
1681 {
1682         int i;
1683         struct ccs __iomem *pccs = ccs_base(local);
1684         struct pcmcia_device *link = local->finder;
1685
1686         if (!(pcmcia_dev_present(link))) {
1687                 dev_dbg(&link->dev, "ray_cs get_free_ccs - device not present\n");
1688                 return ECARDGONE;
1689         }
1690         if (test_and_set_bit(0, &local->ccs_lock)) {
1691                 dev_dbg(&link->dev, "ray_cs ccs_lock busy\n");
1692                 return ECCSBUSY;
1693         }
1694
1695         for (i = NUMBER_OF_TX_CCS; i < NUMBER_OF_CCS; i++) {
1696                 if (readb(&(pccs + i)->buffer_status) == CCS_BUFFER_FREE) {
1697                         writeb(CCS_BUFFER_BUSY, &(pccs + i)->buffer_status);
1698                         writeb(CCS_END_LIST, &(pccs + i)->link);
1699                         local->ccs_lock = 0;
1700                         return i;
1701                 }
1702         }
1703         local->ccs_lock = 0;
1704         dev_dbg(&link->dev, "ray_cs ERROR no free CCS for raylink card\n");
1705         return ECCSFULL;
1706 } /* get_free_ccs */
1707
1708 /*===========================================================================*/
1709 static void authenticate_timeout(u_long data)
1710 {
1711         ray_dev_t *local = (ray_dev_t *) data;
1712         del_timer(&local->timer);
1713         printk(KERN_INFO "ray_cs Authentication with access point failed"
1714                " - timeout\n");
1715         join_net((u_long) local);
1716 }
1717
1718 /*===========================================================================*/
1719 static int asc_to_int(char a)
1720 {
1721         if (a < '0')
1722                 return -1;
1723         if (a <= '9')
1724                 return (a - '0');
1725         if (a < 'A')
1726                 return -1;
1727         if (a <= 'F')
1728                 return (10 + a - 'A');
1729         if (a < 'a')
1730                 return -1;
1731         if (a <= 'f')
1732                 return (10 + a - 'a');
1733         return -1;
1734 }
1735
1736 /*===========================================================================*/
1737 static int parse_addr(char *in_str, UCHAR *out)
1738 {
1739         int len;
1740         int i, j, k;
1741         int status;
1742
1743         if (in_str == NULL)
1744                 return 0;
1745         if ((len = strlen(in_str)) < 2)
1746                 return 0;
1747         memset(out, 0, ADDRLEN);
1748
1749         status = 1;
1750         j = len - 1;
1751         if (j > 12)
1752                 j = 12;
1753         i = 5;
1754
1755         while (j > 0) {
1756                 if ((k = asc_to_int(in_str[j--])) != -1)
1757                         out[i] = k;
1758                 else
1759                         return 0;
1760
1761                 if (j == 0)
1762                         break;
1763                 if ((k = asc_to_int(in_str[j--])) != -1)
1764                         out[i] += k << 4;
1765                 else
1766                         return 0;
1767                 if (!i--)
1768                         break;
1769         }
1770         return status;
1771 }
1772
1773 /*===========================================================================*/
1774 static struct net_device_stats *ray_get_stats(struct net_device *dev)
1775 {
1776         ray_dev_t *local = netdev_priv(dev);
1777         struct pcmcia_device *link = local->finder;
1778         struct status __iomem *p = local->sram + STATUS_BASE;
1779         if (!(pcmcia_dev_present(link))) {
1780                 dev_dbg(&link->dev, "ray_cs net_device_stats - device not present\n");
1781                 return &local->stats;
1782         }
1783         if (readb(&p->mrx_overflow_for_host)) {
1784                 local->stats.rx_over_errors += swab16(readw(&p->mrx_overflow));
1785                 writeb(0, &p->mrx_overflow);
1786                 writeb(0, &p->mrx_overflow_for_host);
1787         }
1788         if (readb(&p->mrx_checksum_error_for_host)) {
1789                 local->stats.rx_crc_errors +=
1790                     swab16(readw(&p->mrx_checksum_error));
1791                 writeb(0, &p->mrx_checksum_error);
1792                 writeb(0, &p->mrx_checksum_error_for_host);
1793         }
1794         if (readb(&p->rx_hec_error_for_host)) {
1795                 local->stats.rx_frame_errors += swab16(readw(&p->rx_hec_error));
1796                 writeb(0, &p->rx_hec_error);
1797                 writeb(0, &p->rx_hec_error_for_host);
1798         }
1799         return &local->stats;
1800 }
1801
1802 /*===========================================================================*/
1803 static void ray_update_parm(struct net_device *dev, UCHAR objid, UCHAR *value,
1804                             int len)
1805 {
1806         ray_dev_t *local = netdev_priv(dev);
1807         struct pcmcia_device *link = local->finder;
1808         int ccsindex;
1809         int i;
1810         struct ccs __iomem *pccs;
1811
1812         if (!(pcmcia_dev_present(link))) {
1813                 dev_dbg(&link->dev, "ray_update_parm - device not present\n");
1814                 return;
1815         }
1816
1817         if ((ccsindex = get_free_ccs(local)) < 0) {
1818                 dev_dbg(&link->dev, "ray_update_parm - No free ccs\n");
1819                 return;
1820         }
1821         pccs = ccs_base(local) + ccsindex;
1822         writeb(CCS_UPDATE_PARAMS, &pccs->cmd);
1823         writeb(objid, &pccs->var.update_param.object_id);
1824         writeb(1, &pccs->var.update_param.number_objects);
1825         writeb(0, &pccs->var.update_param.failure_cause);
1826         for (i = 0; i < len; i++) {
1827                 writeb(value[i], local->sram + HOST_TO_ECF_BASE);
1828         }
1829         /* Interrupt the firmware to process the command */
1830         if (interrupt_ecf(local, ccsindex)) {
1831                 dev_dbg(&link->dev, "ray_cs associate failed - ECF not ready for intr\n");
1832                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
1833         }
1834 }
1835
1836 /*===========================================================================*/
1837 static void ray_update_multi_list(struct net_device *dev, int all)
1838 {
1839         int ccsindex;
1840         struct ccs __iomem *pccs;
1841         ray_dev_t *local = netdev_priv(dev);
1842         struct pcmcia_device *link = local->finder;
1843         void __iomem *p = local->sram + HOST_TO_ECF_BASE;
1844
1845         if (!(pcmcia_dev_present(link))) {
1846                 dev_dbg(&link->dev, "ray_update_multi_list - device not present\n");
1847                 return;
1848         } else
1849                 dev_dbg(&link->dev, "ray_update_multi_list(%p)\n", dev);
1850         if ((ccsindex = get_free_ccs(local)) < 0) {
1851                 dev_dbg(&link->dev, "ray_update_multi - No free ccs\n");
1852                 return;
1853         }
1854         pccs = ccs_base(local) + ccsindex;
1855         writeb(CCS_UPDATE_MULTICAST_LIST, &pccs->cmd);
1856
1857         if (all) {
1858                 writeb(0xff, &pccs->var);
1859                 local->num_multi = 0xff;
1860         } else {
1861                 struct netdev_hw_addr *ha;
1862                 int i = 0;
1863
1864                 /* Copy the kernel's list of MC addresses to card */
1865                 netdev_for_each_mc_addr(ha, dev) {
1866                         memcpy_toio(p, ha->addr, ETH_ALEN);
1867                         dev_dbg(&link->dev,
1868                               "ray_update_multi add addr %02x%02x%02x%02x%02x%02x\n",
1869                               ha->addr[0], ha->addr[1],
1870                               ha->addr[2], ha->addr[3],
1871                               ha->addr[4], ha->addr[5]);
1872                         p += ETH_ALEN;
1873                         i++;
1874                 }
1875                 if (i > 256 / ADDRLEN)
1876                         i = 256 / ADDRLEN;
1877                 writeb((UCHAR) i, &pccs->var);
1878                 dev_dbg(&link->dev, "ray_cs update_multi %d addresses in list\n", i);
1879                 /* Interrupt the firmware to process the command */
1880                 local->num_multi = i;
1881         }
1882         if (interrupt_ecf(local, ccsindex)) {
1883                 dev_dbg(&link->dev,
1884                       "ray_cs update_multi failed - ECF not ready for intr\n");
1885                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
1886         }
1887 } /* end ray_update_multi_list */
1888
1889 /*===========================================================================*/
1890 static void set_multicast_list(struct net_device *dev)
1891 {
1892         ray_dev_t *local = netdev_priv(dev);
1893         UCHAR promisc;
1894
1895         pr_debug("ray_cs set_multicast_list(%p)\n", dev);
1896
1897         if (dev->flags & IFF_PROMISC) {
1898                 if (local->sparm.b5.a_promiscuous_mode == 0) {
1899                         pr_debug("ray_cs set_multicast_list promisc on\n");
1900                         local->sparm.b5.a_promiscuous_mode = 1;
1901                         promisc = 1;
1902                         ray_update_parm(dev, OBJID_promiscuous_mode,
1903                                         &promisc, sizeof(promisc));
1904                 }
1905         } else {
1906                 if (local->sparm.b5.a_promiscuous_mode == 1) {
1907                         pr_debug("ray_cs set_multicast_list promisc off\n");
1908                         local->sparm.b5.a_promiscuous_mode = 0;
1909                         promisc = 0;
1910                         ray_update_parm(dev, OBJID_promiscuous_mode,
1911                                         &promisc, sizeof(promisc));
1912                 }
1913         }
1914
1915         if (dev->flags & IFF_ALLMULTI)
1916                 ray_update_multi_list(dev, 1);
1917         else {
1918                 if (local->num_multi != netdev_mc_count(dev))
1919                         ray_update_multi_list(dev, 0);
1920         }
1921 } /* end set_multicast_list */
1922
1923 /*=============================================================================
1924  * All routines below here are run at interrupt time.
1925 =============================================================================*/
1926 static irqreturn_t ray_interrupt(int irq, void *dev_id)
1927 {
1928         struct net_device *dev = (struct net_device *)dev_id;
1929         struct pcmcia_device *link;
1930         ray_dev_t *local;
1931         struct ccs __iomem *pccs;
1932         struct rcs __iomem *prcs;
1933         UCHAR rcsindex;
1934         UCHAR tmp;
1935         UCHAR cmd;
1936         UCHAR status;
1937
1938         if (dev == NULL)        /* Note that we want interrupts with dev->start == 0 */
1939                 return IRQ_NONE;
1940
1941         pr_debug("ray_cs: interrupt for *dev=%p\n", dev);
1942
1943         local = netdev_priv(dev);
1944         link = (struct pcmcia_device *)local->finder;
1945         if (!pcmcia_dev_present(link)) {
1946                 pr_debug(
1947                         "ray_cs interrupt from device not present or suspended.\n");
1948                 return IRQ_NONE;
1949         }
1950         rcsindex = readb(&((struct scb __iomem *)(local->sram))->rcs_index);
1951
1952         if (rcsindex >= (NUMBER_OF_CCS + NUMBER_OF_RCS)) {
1953                 dev_dbg(&link->dev, "ray_cs interrupt bad rcsindex = 0x%x\n", rcsindex);
1954                 clear_interrupt(local);
1955                 return IRQ_HANDLED;
1956         }
1957         if (rcsindex < NUMBER_OF_CCS) { /* If it's a returned CCS */
1958                 pccs = ccs_base(local) + rcsindex;
1959                 cmd = readb(&pccs->cmd);
1960                 status = readb(&pccs->buffer_status);
1961                 switch (cmd) {
1962                 case CCS_DOWNLOAD_STARTUP_PARAMS:       /* Happens in firmware someday */
1963                         del_timer(&local->timer);
1964                         if (status == CCS_COMMAND_COMPLETE) {
1965                                 dev_dbg(&link->dev,
1966                                       "ray_cs interrupt download_startup_parameters OK\n");
1967                         } else {
1968                                 dev_dbg(&link->dev,
1969                                       "ray_cs interrupt download_startup_parameters fail\n");
1970                         }
1971                         break;
1972                 case CCS_UPDATE_PARAMS:
1973                         dev_dbg(&link->dev, "ray_cs interrupt update params done\n");
1974                         if (status != CCS_COMMAND_COMPLETE) {
1975                                 tmp =
1976                                     readb(&pccs->var.update_param.
1977                                           failure_cause);
1978                                 dev_dbg(&link->dev,
1979                                       "ray_cs interrupt update params failed - reason %d\n",
1980                                       tmp);
1981                         }
1982                         break;
1983                 case CCS_REPORT_PARAMS:
1984                         dev_dbg(&link->dev, "ray_cs interrupt report params done\n");
1985                         break;
1986                 case CCS_UPDATE_MULTICAST_LIST: /* Note that this CCS isn't returned */
1987                         dev_dbg(&link->dev,
1988                               "ray_cs interrupt CCS Update Multicast List done\n");
1989                         break;
1990                 case CCS_UPDATE_POWER_SAVINGS_MODE:
1991                         dev_dbg(&link->dev,
1992                               "ray_cs interrupt update power save mode done\n");
1993                         break;
1994                 case CCS_START_NETWORK:
1995                 case CCS_JOIN_NETWORK:
1996                         if (status == CCS_COMMAND_COMPLETE) {
1997                                 if (readb
1998                                     (&pccs->var.start_network.net_initiated) ==
1999                                     1) {
2000                                         dev_dbg(&link->dev,
2001                                               "ray_cs interrupt network \"%s\" started\n",
2002                                               local->sparm.b4.a_current_ess_id);
2003                                 } else {
2004                                         dev_dbg(&link->dev,
2005                                               "ray_cs interrupt network \"%s\" joined\n",
2006                                               local->sparm.b4.a_current_ess_id);
2007                                 }
2008                                 memcpy_fromio(&local->bss_id,
2009                                               pccs->var.start_network.bssid,
2010                                               ADDRLEN);
2011
2012                                 if (local->fw_ver == 0x55)
2013                                         local->net_default_tx_rate = 3;
2014                                 else
2015                                         local->net_default_tx_rate =
2016                                             readb(&pccs->var.start_network.
2017                                                   net_default_tx_rate);
2018                                 local->encryption =
2019                                     readb(&pccs->var.start_network.encryption);
2020                                 if (!sniffer && (local->net_type == INFRA)
2021                                     && !(local->sparm.b4.a_acting_as_ap_status)) {
2022                                         authenticate(local);
2023                                 }
2024                                 local->card_status = CARD_ACQ_COMPLETE;
2025                         } else {
2026                                 local->card_status = CARD_ACQ_FAILED;
2027
2028                                 del_timer(&local->timer);
2029                                 local->timer.expires = jiffies + HZ * 5;
2030                                 local->timer.data = (long)local;
2031                                 if (status == CCS_START_NETWORK) {
2032                                         dev_dbg(&link->dev,
2033                                               "ray_cs interrupt network \"%s\" start failed\n",
2034                                               local->sparm.b4.a_current_ess_id);
2035                                         local->timer.function = &start_net;
2036                                 } else {
2037                                         dev_dbg(&link->dev,
2038                                               "ray_cs interrupt network \"%s\" join failed\n",
2039                                               local->sparm.b4.a_current_ess_id);
2040                                         local->timer.function = &join_net;
2041                                 }
2042                                 add_timer(&local->timer);
2043                         }
2044                         break;
2045                 case CCS_START_ASSOCIATION:
2046                         if (status == CCS_COMMAND_COMPLETE) {
2047                                 local->card_status = CARD_ASSOC_COMPLETE;
2048                                 dev_dbg(&link->dev, "ray_cs association successful\n");
2049                         } else {
2050                                 dev_dbg(&link->dev, "ray_cs association failed,\n");
2051                                 local->card_status = CARD_ASSOC_FAILED;
2052                                 join_net((u_long) local);
2053                         }
2054                         break;
2055                 case CCS_TX_REQUEST:
2056                         if (status == CCS_COMMAND_COMPLETE) {
2057                                 dev_dbg(&link->dev,
2058                                       "ray_cs interrupt tx request complete\n");
2059                         } else {
2060                                 dev_dbg(&link->dev,
2061                                       "ray_cs interrupt tx request failed\n");
2062                         }
2063                         if (!sniffer)
2064                                 netif_start_queue(dev);
2065                         netif_wake_queue(dev);
2066                         break;
2067                 case CCS_TEST_MEMORY:
2068                         dev_dbg(&link->dev, "ray_cs interrupt mem test done\n");
2069                         break;
2070                 case CCS_SHUTDOWN:
2071                         dev_dbg(&link->dev,
2072                               "ray_cs interrupt Unexpected CCS returned - Shutdown\n");
2073                         break;
2074                 case CCS_DUMP_MEMORY:
2075                         dev_dbg(&link->dev, "ray_cs interrupt dump memory done\n");
2076                         break;
2077                 case CCS_START_TIMER:
2078                         dev_dbg(&link->dev,
2079                               "ray_cs interrupt DING - raylink timer expired\n");
2080                         break;
2081                 default:
2082                         dev_dbg(&link->dev,
2083                               "ray_cs interrupt Unexpected CCS 0x%x returned 0x%x\n",
2084                               rcsindex, cmd);
2085                 }
2086                 writeb(CCS_BUFFER_FREE, &pccs->buffer_status);
2087         } else { /* It's an RCS */
2088
2089                 prcs = rcs_base(local) + rcsindex;
2090
2091                 switch (readb(&prcs->interrupt_id)) {
2092                 case PROCESS_RX_PACKET:
2093                         ray_rx(dev, local, prcs);
2094                         break;
2095                 case REJOIN_NET_COMPLETE:
2096                         dev_dbg(&link->dev, "ray_cs interrupt rejoin net complete\n");
2097                         local->card_status = CARD_ACQ_COMPLETE;
2098                         /* do we need to clear tx buffers CCS's? */
2099                         if (local->sparm.b4.a_network_type == ADHOC) {
2100                                 if (!sniffer)
2101                                         netif_start_queue(dev);
2102                         } else {
2103                                 memcpy_fromio(&local->bss_id,
2104                                               prcs->var.rejoin_net_complete.
2105                                               bssid, ADDRLEN);
2106                                 dev_dbg(&link->dev,
2107                                       "ray_cs new BSSID = %02x%02x%02x%02x%02x%02x\n",
2108                                       local->bss_id[0], local->bss_id[1],
2109                                       local->bss_id[2], local->bss_id[3],
2110                                       local->bss_id[4], local->bss_id[5]);
2111                                 if (!sniffer)
2112                                         authenticate(local);
2113                         }
2114                         break;
2115                 case ROAMING_INITIATED:
2116                         dev_dbg(&link->dev, "ray_cs interrupt roaming initiated\n");
2117                         netif_stop_queue(dev);
2118                         local->card_status = CARD_DOING_ACQ;
2119                         break;
2120                 case JAPAN_CALL_SIGN_RXD:
2121                         dev_dbg(&link->dev, "ray_cs interrupt japan call sign rx\n");
2122                         break;
2123                 default:
2124                         dev_dbg(&link->dev,
2125                               "ray_cs Unexpected interrupt for RCS 0x%x cmd = 0x%x\n",
2126                               rcsindex,
2127                               (unsigned int)readb(&prcs->interrupt_id));
2128                         break;
2129                 }
2130                 writeb(CCS_BUFFER_FREE, &prcs->buffer_status);
2131         }
2132         clear_interrupt(local);
2133         return IRQ_HANDLED;
2134 } /* ray_interrupt */
2135
2136 /*===========================================================================*/
2137 static void ray_rx(struct net_device *dev, ray_dev_t *local,
2138                    struct rcs __iomem *prcs)
2139 {
2140         int rx_len;
2141         unsigned int pkt_addr;
2142         void __iomem *pmsg;
2143         pr_debug("ray_rx process rx packet\n");
2144
2145         /* Calculate address of packet within Rx buffer */
2146         pkt_addr = ((readb(&prcs->var.rx_packet.rx_data_ptr[0]) << 8)
2147                     + readb(&prcs->var.rx_packet.rx_data_ptr[1])) & RX_BUFF_END;
2148         /* Length of first packet fragment */
2149         rx_len = (readb(&prcs->var.rx_packet.rx_data_length[0]) << 8)
2150             + readb(&prcs->var.rx_packet.rx_data_length[1]);
2151
2152         local->last_rsl = readb(&prcs->var.rx_packet.rx_sig_lev);
2153         pmsg = local->rmem + pkt_addr;
2154         switch (readb(pmsg)) {
2155         case DATA_TYPE:
2156                 pr_debug("ray_rx data type\n");
2157                 rx_data(dev, prcs, pkt_addr, rx_len);
2158                 break;
2159         case AUTHENTIC_TYPE:
2160                 pr_debug("ray_rx authentic type\n");
2161                 if (sniffer)
2162                         rx_data(dev, prcs, pkt_addr, rx_len);
2163                 else
2164                         rx_authenticate(local, prcs, pkt_addr, rx_len);
2165                 break;
2166         case DEAUTHENTIC_TYPE:
2167                 pr_debug("ray_rx deauth type\n");
2168                 if (sniffer)
2169                         rx_data(dev, prcs, pkt_addr, rx_len);
2170                 else
2171                         rx_deauthenticate(local, prcs, pkt_addr, rx_len);
2172                 break;
2173         case NULL_MSG_TYPE:
2174                 pr_debug("ray_cs rx NULL msg\n");
2175                 break;
2176         case BEACON_TYPE:
2177                 pr_debug("ray_rx beacon type\n");
2178                 if (sniffer)
2179                         rx_data(dev, prcs, pkt_addr, rx_len);
2180
2181                 copy_from_rx_buff(local, (UCHAR *) &local->last_bcn, pkt_addr,
2182                                   rx_len < sizeof(struct beacon_rx) ?
2183                                   rx_len : sizeof(struct beacon_rx));
2184
2185                 local->beacon_rxed = 1;
2186                 /* Get the statistics so the card counters never overflow */
2187                 ray_get_stats(dev);
2188                 break;
2189         default:
2190                 pr_debug("ray_cs unknown pkt type %2x\n",
2191                       (unsigned int)readb(pmsg));
2192                 break;
2193         }
2194
2195 } /* end ray_rx */
2196
2197 /*===========================================================================*/
2198 static void rx_data(struct net_device *dev, struct rcs __iomem *prcs,
2199                     unsigned int pkt_addr, int rx_len)
2200 {
2201         struct sk_buff *skb = NULL;
2202         struct rcs __iomem *prcslink = prcs;
2203         ray_dev_t *local = netdev_priv(dev);
2204         UCHAR *rx_ptr;
2205         int total_len;
2206         int tmp;
2207 #ifdef WIRELESS_SPY
2208         int siglev = local->last_rsl;
2209         u_char linksrcaddr[ETH_ALEN];   /* Other end of the wireless link */
2210 #endif
2211
2212         if (!sniffer) {
2213                 if (translate) {
2214 /* TBD length needs fixing for translated header */
2215                         if (rx_len < (ETH_HLEN + RX_MAC_HEADER_LENGTH) ||
2216                             rx_len >
2217                             (dev->mtu + RX_MAC_HEADER_LENGTH + ETH_HLEN +
2218                              FCS_LEN)) {
2219                                 pr_debug(
2220                                       "ray_cs invalid packet length %d received\n",
2221                                       rx_len);
2222                                 return;
2223                         }
2224                 } else { /* encapsulated ethernet */
2225
2226                         if (rx_len < (ETH_HLEN + RX_MAC_HEADER_LENGTH) ||
2227                             rx_len >
2228                             (dev->mtu + RX_MAC_HEADER_LENGTH + ETH_HLEN +
2229                              FCS_LEN)) {
2230                                 pr_debug(
2231                                       "ray_cs invalid packet length %d received\n",
2232                                       rx_len);
2233                                 return;
2234                         }
2235                 }
2236         }
2237         pr_debug("ray_cs rx_data packet\n");
2238         /* If fragmented packet, verify sizes of fragments add up */
2239         if (readb(&prcs->var.rx_packet.next_frag_rcs_index) != 0xFF) {
2240                 pr_debug("ray_cs rx'ed fragment\n");
2241                 tmp = (readb(&prcs->var.rx_packet.totalpacketlength[0]) << 8)
2242                     + readb(&prcs->var.rx_packet.totalpacketlength[1]);
2243                 total_len = tmp;
2244                 prcslink = prcs;
2245                 do {
2246                         tmp -=
2247                             (readb(&prcslink->var.rx_packet.rx_data_length[0])
2248                              << 8)
2249                             + readb(&prcslink->var.rx_packet.rx_data_length[1]);
2250                         if (readb(&prcslink->var.rx_packet.next_frag_rcs_index)
2251                             == 0xFF || tmp < 0)
2252                                 break;
2253                         prcslink = rcs_base(local)
2254                             + readb(&prcslink->link_field);
2255                 } while (1);
2256
2257                 if (tmp < 0) {
2258                         pr_debug(
2259                               "ray_cs rx_data fragment lengths don't add up\n");
2260                         local->stats.rx_dropped++;
2261                         release_frag_chain(local, prcs);
2262                         return;
2263                 }
2264         } else { /* Single unfragmented packet */
2265                 total_len = rx_len;
2266         }
2267
2268         skb = dev_alloc_skb(total_len + 5);
2269         if (skb == NULL) {
2270                 pr_debug("ray_cs rx_data could not allocate skb\n");
2271                 local->stats.rx_dropped++;
2272                 if (readb(&prcs->var.rx_packet.next_frag_rcs_index) != 0xFF)
2273                         release_frag_chain(local, prcs);
2274                 return;
2275         }
2276         skb_reserve(skb, 2);    /* Align IP on 16 byte (TBD check this) */
2277
2278         pr_debug("ray_cs rx_data total_len = %x, rx_len = %x\n", total_len,
2279               rx_len);
2280
2281 /************************/
2282         /* Reserve enough room for the whole damn packet. */
2283         rx_ptr = skb_put(skb, total_len);
2284         /* Copy the whole packet to sk_buff */
2285         rx_ptr +=
2286             copy_from_rx_buff(local, rx_ptr, pkt_addr & RX_BUFF_END, rx_len);
2287         /* Get source address */
2288 #ifdef WIRELESS_SPY
2289         skb_copy_from_linear_data_offset(skb,
2290                                          offsetof(struct mac_header, addr_2),
2291                                          linksrcaddr, ETH_ALEN);
2292 #endif
2293         /* Now, deal with encapsulation/translation/sniffer */
2294         if (!sniffer) {
2295                 if (!translate) {
2296                         /* Encapsulated ethernet, so just lop off 802.11 MAC header */
2297 /* TBD reserve            skb_reserve( skb, RX_MAC_HEADER_LENGTH); */
2298                         skb_pull(skb, RX_MAC_HEADER_LENGTH);
2299                 } else {
2300                         /* Do translation */
2301                         untranslate(local, skb, total_len);
2302                 }
2303         } else { /* sniffer mode, so just pass whole packet */
2304         };
2305
2306 /************************/
2307         /* Now pick up the rest of the fragments if any */
2308         tmp = 17;
2309         if (readb(&prcs->var.rx_packet.next_frag_rcs_index) != 0xFF) {
2310                 prcslink = prcs;
2311                 pr_debug("ray_cs rx_data in fragment loop\n");
2312                 do {
2313                         prcslink = rcs_base(local)
2314                             +
2315                             readb(&prcslink->var.rx_packet.next_frag_rcs_index);
2316                         rx_len =
2317                             ((readb(&prcslink->var.rx_packet.rx_data_length[0])
2318                               << 8)
2319                              +
2320                              readb(&prcslink->var.rx_packet.rx_data_length[1]))
2321                             & RX_BUFF_END;
2322                         pkt_addr =
2323                             ((readb(&prcslink->var.rx_packet.rx_data_ptr[0]) <<
2324                               8)
2325                              + readb(&prcslink->var.rx_packet.rx_data_ptr[1]))
2326                             & RX_BUFF_END;
2327
2328                         rx_ptr +=
2329                             copy_from_rx_buff(local, rx_ptr, pkt_addr, rx_len);
2330
2331                 } while (tmp-- &&
2332                          readb(&prcslink->var.rx_packet.next_frag_rcs_index) !=
2333                          0xFF);
2334                 release_frag_chain(local, prcs);
2335         }
2336
2337         skb->protocol = eth_type_trans(skb, dev);
2338         netif_rx(skb);
2339         local->stats.rx_packets++;
2340         local->stats.rx_bytes += total_len;
2341
2342         /* Gather signal strength per address */
2343 #ifdef WIRELESS_SPY
2344         /* For the Access Point or the node having started the ad-hoc net
2345          * note : ad-hoc work only in some specific configurations, but we
2346          * kludge in ray_get_wireless_stats... */
2347         if (!memcmp(linksrcaddr, local->bss_id, ETH_ALEN)) {
2348                 /* Update statistics */
2349                 /*local->wstats.qual.qual = none ? */
2350                 local->wstats.qual.level = siglev;
2351                 /*local->wstats.qual.noise = none ? */
2352                 local->wstats.qual.updated = 0x2;
2353         }
2354         /* Now, update the spy stuff */
2355         {
2356                 struct iw_quality wstats;
2357                 wstats.level = siglev;
2358                 /* wstats.noise = none ? */
2359                 /* wstats.qual = none ? */
2360                 wstats.updated = 0x2;
2361                 /* Update spy records */
2362                 wireless_spy_update(dev, linksrcaddr, &wstats);
2363         }
2364 #endif /* WIRELESS_SPY */
2365 } /* end rx_data */
2366
2367 /*===========================================================================*/
2368 static void untranslate(ray_dev_t *local, struct sk_buff *skb, int len)
2369 {
2370         snaphdr_t *psnap = (snaphdr_t *) (skb->data + RX_MAC_HEADER_LENGTH);
2371         struct ieee80211_hdr *pmac = (struct ieee80211_hdr *)skb->data;
2372         __be16 type = *(__be16 *) psnap->ethertype;
2373         int delta;
2374         struct ethhdr *peth;
2375         UCHAR srcaddr[ADDRLEN];
2376         UCHAR destaddr[ADDRLEN];
2377         static UCHAR org_bridge[3] = { 0, 0, 0xf8 };
2378         static UCHAR org_1042[3] = { 0, 0, 0 };
2379
2380         memcpy(destaddr, ieee80211_get_DA(pmac), ADDRLEN);
2381         memcpy(srcaddr, ieee80211_get_SA(pmac), ADDRLEN);
2382
2383 #if 0
2384         if {
2385                 print_hex_dump(KERN_DEBUG, "skb->data before untranslate: ",
2386                                DUMP_PREFIX_NONE, 16, 1,
2387                                skb->data, 64, true);
2388                 printk(KERN_DEBUG
2389                        "type = %08x, xsap = %02x%02x%02x, org = %02x02x02x\n",
2390                        ntohs(type), psnap->dsap, psnap->ssap, psnap->ctrl,
2391                        psnap->org[0], psnap->org[1], psnap->org[2]);
2392                 printk(KERN_DEBUG "untranslate skb->data = %p\n", skb->data);
2393         }
2394 #endif
2395
2396         if (psnap->dsap != 0xaa || psnap->ssap != 0xaa || psnap->ctrl != 3) {
2397                 /* not a snap type so leave it alone */
2398                 pr_debug("ray_cs untranslate NOT SNAP %02x %02x %02x\n",
2399                       psnap->dsap, psnap->ssap, psnap->ctrl);
2400
2401                 delta = RX_MAC_HEADER_LENGTH - ETH_HLEN;
2402                 peth = (struct ethhdr *)(skb->data + delta);
2403                 peth->h_proto = htons(len - RX_MAC_HEADER_LENGTH);
2404         } else { /* Its a SNAP */
2405                 if (memcmp(psnap->org, org_bridge, 3) == 0) {
2406                 /* EtherII and nuke the LLC */
2407                         pr_debug("ray_cs untranslate Bridge encap\n");
2408                         delta = RX_MAC_HEADER_LENGTH
2409                             + sizeof(struct snaphdr_t) - ETH_HLEN;
2410                         peth = (struct ethhdr *)(skb->data + delta);
2411                         peth->h_proto = type;
2412                 } else if (memcmp(psnap->org, org_1042, 3) == 0) {
2413                         switch (ntohs(type)) {
2414                         case ETH_P_IPX:
2415                         case ETH_P_AARP:
2416                                 pr_debug("ray_cs untranslate RFC IPX/AARP\n");
2417                                 delta = RX_MAC_HEADER_LENGTH - ETH_HLEN;
2418                                 peth = (struct ethhdr *)(skb->data + delta);
2419                                 peth->h_proto =
2420                                     htons(len - RX_MAC_HEADER_LENGTH);
2421                                 break;
2422                         default:
2423                                 pr_debug("ray_cs untranslate RFC default\n");
2424                                 delta = RX_MAC_HEADER_LENGTH +
2425                                     sizeof(struct snaphdr_t) - ETH_HLEN;
2426                                 peth = (struct ethhdr *)(skb->data + delta);
2427                                 peth->h_proto = type;
2428                                 break;
2429                         }
2430                 } else {
2431                         printk("ray_cs untranslate very confused by packet\n");
2432                         delta = RX_MAC_HEADER_LENGTH - ETH_HLEN;
2433                         peth = (struct ethhdr *)(skb->data + delta);
2434                         peth->h_proto = type;
2435                 }
2436         }
2437 /* TBD reserve  skb_reserve(skb, delta); */
2438         skb_pull(skb, delta);
2439         pr_debug("untranslate after skb_pull(%d), skb->data = %p\n", delta,
2440               skb->data);
2441         memcpy(peth->h_dest, destaddr, ADDRLEN);
2442         memcpy(peth->h_source, srcaddr, ADDRLEN);
2443 #if 0
2444         {
2445                 int i;
2446                 printk(KERN_DEBUG "skb->data after untranslate:");
2447                 for (i = 0; i < 64; i++)
2448                         printk("%02x ", skb->data[i]);
2449                 printk("\n");
2450         }
2451 #endif
2452 } /* end untranslate */
2453
2454 /*===========================================================================*/
2455 /* Copy data from circular receive buffer to PC memory.
2456  * dest     = destination address in PC memory
2457  * pkt_addr = source address in receive buffer
2458  * len      = length of packet to copy
2459  */
2460 static int copy_from_rx_buff(ray_dev_t *local, UCHAR *dest, int pkt_addr,
2461                              int length)
2462 {
2463         int wrap_bytes = (pkt_addr + length) - (RX_BUFF_END + 1);
2464         if (wrap_bytes <= 0) {
2465                 memcpy_fromio(dest, local->rmem + pkt_addr, length);
2466         } else { /* Packet wrapped in circular buffer */
2467
2468                 memcpy_fromio(dest, local->rmem + pkt_addr,
2469                               length - wrap_bytes);
2470                 memcpy_fromio(dest + length - wrap_bytes, local->rmem,
2471                               wrap_bytes);
2472         }
2473         return length;
2474 }
2475
2476 /*===========================================================================*/
2477 static void release_frag_chain(ray_dev_t *local, struct rcs __iomem *prcs)
2478 {
2479         struct rcs __iomem *prcslink = prcs;
2480         int tmp = 17;
2481         unsigned rcsindex = readb(&prcs->var.rx_packet.next_frag_rcs_index);
2482
2483         while (tmp--) {
2484                 writeb(CCS_BUFFER_FREE, &prcslink->buffer_status);
2485                 if (rcsindex >= (NUMBER_OF_CCS + NUMBER_OF_RCS)) {
2486                         pr_debug("ray_cs interrupt bad rcsindex = 0x%x\n",
2487                               rcsindex);
2488                         break;
2489                 }
2490                 prcslink = rcs_base(local) + rcsindex;
2491                 rcsindex = readb(&prcslink->var.rx_packet.next_frag_rcs_index);
2492         }
2493         writeb(CCS_BUFFER_FREE, &prcslink->buffer_status);
2494 }
2495
2496 /*===========================================================================*/
2497 static void authenticate(ray_dev_t *local)
2498 {
2499         struct pcmcia_device *link = local->finder;
2500         dev_dbg(&link->dev, "ray_cs Starting authentication.\n");
2501         if (!(pcmcia_dev_present(link))) {
2502                 dev_dbg(&link->dev, "ray_cs authenticate - device not present\n");
2503                 return;
2504         }
2505
2506         del_timer(&local->timer);
2507         if (build_auth_frame(local, local->bss_id, OPEN_AUTH_REQUEST)) {
2508                 local->timer.function = &join_net;
2509         } else {
2510                 local->timer.function = &authenticate_timeout;
2511         }
2512         local->timer.expires = jiffies + HZ * 2;
2513         local->timer.data = (long)local;
2514         add_timer(&local->timer);
2515         local->authentication_state = AWAITING_RESPONSE;
2516 } /* end authenticate */
2517
2518 /*===========================================================================*/
2519 static void rx_authenticate(ray_dev_t *local, struct rcs __iomem *prcs,
2520                             unsigned int pkt_addr, int rx_len)
2521 {
2522         UCHAR buff[256];
2523         struct rx_msg *msg = (struct rx_msg *)buff;
2524
2525         del_timer(&local->timer);
2526
2527         copy_from_rx_buff(local, buff, pkt_addr, rx_len & 0xff);
2528         /* if we are trying to get authenticated */
2529         if (local->sparm.b4.a_network_type == ADHOC) {
2530                 pr_debug("ray_cs rx_auth var= %02x %02x %02x %02x %02x %02x\n",
2531                       msg->var[0], msg->var[1], msg->var[2], msg->var[3],
2532                       msg->var[4], msg->var[5]);
2533                 if (msg->var[2] == 1) {
2534                         pr_debug("ray_cs Sending authentication response.\n");
2535                         if (!build_auth_frame
2536                             (local, msg->mac.addr_2, OPEN_AUTH_RESPONSE)) {
2537                                 local->authentication_state = NEED_TO_AUTH;
2538                                 memcpy(local->auth_id, msg->mac.addr_2,
2539                                        ADDRLEN);
2540                         }
2541                 }
2542         } else { /* Infrastructure network */
2543
2544                 if (local->authentication_state == AWAITING_RESPONSE) {
2545                         /* Verify authentication sequence #2 and success */
2546                         if (msg->var[2] == 2) {
2547                                 if ((msg->var[3] | msg->var[4]) == 0) {
2548                                         pr_debug("Authentication successful\n");
2549                                         local->card_status = CARD_AUTH_COMPLETE;
2550                                         associate(local);
2551                                         local->authentication_state =
2552                                             AUTHENTICATED;
2553                                 } else {
2554                                         pr_debug("Authentication refused\n");
2555                                         local->card_status = CARD_AUTH_REFUSED;
2556                                         join_net((u_long) local);
2557                                         local->authentication_state =
2558                                             UNAUTHENTICATED;
2559                                 }
2560                         }
2561                 }
2562         }
2563
2564 } /* end rx_authenticate */
2565
2566 /*===========================================================================*/
2567 static void associate(ray_dev_t *local)
2568 {
2569         struct ccs __iomem *pccs;
2570         struct pcmcia_device *link = local->finder;
2571         struct net_device *dev = link->priv;
2572         int ccsindex;
2573         if (!(pcmcia_dev_present(link))) {
2574                 dev_dbg(&link->dev, "ray_cs associate - device not present\n");
2575                 return;
2576         }
2577         /* If no tx buffers available, return */
2578         if ((ccsindex = get_free_ccs(local)) < 0) {
2579 /* TBD should never be here but... what if we are? */
2580                 dev_dbg(&link->dev, "ray_cs associate - No free ccs\n");
2581                 return;
2582         }
2583         dev_dbg(&link->dev, "ray_cs Starting association with access point\n");
2584         pccs = ccs_base(local) + ccsindex;
2585         /* fill in the CCS */
2586         writeb(CCS_START_ASSOCIATION, &pccs->cmd);
2587         /* Interrupt the firmware to process the command */
2588         if (interrupt_ecf(local, ccsindex)) {
2589                 dev_dbg(&link->dev, "ray_cs associate failed - ECF not ready for intr\n");
2590                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
2591
2592                 del_timer(&local->timer);
2593                 local->timer.expires = jiffies + HZ * 2;
2594                 local->timer.data = (long)local;
2595                 local->timer.function = &join_net;
2596                 add_timer(&local->timer);
2597                 local->card_status = CARD_ASSOC_FAILED;
2598                 return;
2599         }
2600         if (!sniffer)
2601                 netif_start_queue(dev);
2602
2603 } /* end associate */
2604
2605 /*===========================================================================*/
2606 static void rx_deauthenticate(ray_dev_t *local, struct rcs __iomem *prcs,
2607                               unsigned int pkt_addr, int rx_len)
2608 {
2609 /*  UCHAR buff[256];
2610     struct rx_msg *msg = (struct rx_msg *)buff;
2611 */
2612         pr_debug("Deauthentication frame received\n");
2613         local->authentication_state = UNAUTHENTICATED;
2614         /* Need to reauthenticate or rejoin depending on reason code */
2615 /*  copy_from_rx_buff(local, buff, pkt_addr, rx_len & 0xff);
2616  */
2617 }
2618
2619 /*===========================================================================*/
2620 static void clear_interrupt(ray_dev_t *local)
2621 {
2622         writeb(0, local->amem + CIS_OFFSET + HCS_INTR_OFFSET);
2623 }
2624
2625 /*===========================================================================*/
2626 #ifdef CONFIG_PROC_FS
2627 #define MAXDATA (PAGE_SIZE - 80)
2628
2629 static char *card_status[] = {
2630         "Card inserted - uninitialized",        /* 0 */
2631         "Card not downloaded",                  /* 1 */
2632         "Waiting for download parameters",      /* 2 */
2633         "Card doing acquisition",               /* 3 */
2634         "Acquisition complete",                 /* 4 */
2635         "Authentication complete",              /* 5 */
2636         "Association complete",                 /* 6 */
2637         "???", "???", "???", "???",             /* 7 8 9 10 undefined */
2638         "Card init error",                      /* 11 */
2639         "Download parameters error",            /* 12 */
2640         "???",                                  /* 13 */
2641         "Acquisition failed",                   /* 14 */
2642         "Authentication refused",               /* 15 */
2643         "Association failed"                    /* 16 */
2644 };
2645
2646 static char *nettype[] = { "Adhoc", "Infra " };
2647 static char *framing[] = { "Encapsulation", "Translation" }
2648
2649 ;
2650 /*===========================================================================*/
2651 static int ray_cs_proc_show(struct seq_file *m, void *v)
2652 {
2653 /* Print current values which are not available via other means
2654  * eg ifconfig
2655  */
2656         int i;
2657         struct pcmcia_device *link;
2658         struct net_device *dev;
2659         ray_dev_t *local;
2660         UCHAR *p;
2661         struct freq_hop_element *pfh;
2662         UCHAR c[33];
2663
2664         link = this_device;
2665         if (!link)
2666                 return 0;
2667         dev = (struct net_device *)link->priv;
2668         if (!dev)
2669                 return 0;
2670         local = netdev_priv(dev);
2671         if (!local)
2672                 return 0;
2673
2674         seq_puts(m, "Raylink Wireless LAN driver status\n");
2675         seq_printf(m, "%s\n", rcsid);
2676         /* build 4 does not report version, and field is 0x55 after memtest */
2677         seq_puts(m, "Firmware version     = ");
2678         if (local->fw_ver == 0x55)
2679                 seq_puts(m, "4 - Use dump_cis for more details\n");
2680         else
2681                 seq_printf(m, "%2d.%02d.%02d\n",
2682                            local->fw_ver, local->fw_bld, local->fw_var);
2683
2684         for (i = 0; i < 32; i++)
2685                 c[i] = local->sparm.b5.a_current_ess_id[i];
2686         c[32] = 0;
2687         seq_printf(m, "%s network ESSID = \"%s\"\n",
2688                    nettype[local->sparm.b5.a_network_type], c);
2689
2690         p = local->bss_id;
2691         seq_printf(m, "BSSID                = %pM\n", p);
2692
2693         seq_printf(m, "Country code         = %d\n",
2694                    local->sparm.b5.a_curr_country_code);
2695
2696         i = local->card_status;
2697         if (i < 0)
2698                 i = 10;
2699         if (i > 16)
2700                 i = 10;
2701         seq_printf(m, "Card status          = %s\n", card_status[i]);
2702
2703         seq_printf(m, "Framing mode         = %s\n", framing[translate]);
2704
2705         seq_printf(m, "Last pkt signal lvl  = %d\n", local->last_rsl);
2706
2707         if (local->beacon_rxed) {
2708                 /* Pull some fields out of last beacon received */
2709                 seq_printf(m, "Beacon Interval      = %d Kus\n",
2710                            local->last_bcn.beacon_intvl[0]
2711                            + 256 * local->last_bcn.beacon_intvl[1]);
2712
2713                 p = local->last_bcn.elements;
2714                 if (p[0] == C_ESSID_ELEMENT_ID)
2715                         p += p[1] + 2;
2716                 else {
2717                         seq_printf(m,
2718                                    "Parse beacon failed at essid element id = %d\n",
2719                                    p[0]);
2720                         return 0;
2721                 }
2722
2723                 if (p[0] == C_SUPPORTED_RATES_ELEMENT_ID) {
2724                         seq_puts(m, "Supported rate codes = ");
2725                         for (i = 2; i < p[1] + 2; i++)
2726                                 seq_printf(m, "0x%02x ", p[i]);
2727                         seq_putc(m, '\n');
2728                         p += p[1] + 2;
2729                 } else {
2730                         seq_puts(m, "Parse beacon failed at rates element\n");
2731                         return 0;
2732                 }
2733
2734                 if (p[0] == C_FH_PARAM_SET_ELEMENT_ID) {
2735                         pfh = (struct freq_hop_element *)p;
2736                         seq_printf(m, "Hop dwell            = %d Kus\n",
2737                                    pfh->dwell_time[0] +
2738                                    256 * pfh->dwell_time[1]);
2739                         seq_printf(m, "Hop set              = %d\n",
2740                                    pfh->hop_set);
2741                         seq_printf(m, "Hop pattern          = %d\n",
2742                                    pfh->hop_pattern);
2743                         seq_printf(m, "Hop index            = %d\n",
2744                                    pfh->hop_index);
2745                         p += p[1] + 2;
2746                 } else {
2747                         seq_puts(m,
2748                                  "Parse beacon failed at FH param element\n");
2749                         return 0;
2750                 }
2751         } else {
2752                 seq_puts(m, "No beacons received\n");
2753         }
2754         return 0;
2755 }
2756
2757 static int ray_cs_proc_open(struct inode *inode, struct file *file)
2758 {
2759         return single_open(file, ray_cs_proc_show, NULL);
2760 }
2761
2762 static const struct file_operations ray_cs_proc_fops = {
2763         .owner = THIS_MODULE,
2764         .open = ray_cs_proc_open,
2765         .read = seq_read,
2766         .llseek = seq_lseek,
2767         .release = single_release,
2768 };
2769 #endif
2770 /*===========================================================================*/
2771 static int build_auth_frame(ray_dev_t *local, UCHAR *dest, int auth_type)
2772 {
2773         int addr;
2774         struct ccs __iomem *pccs;
2775         struct tx_msg __iomem *ptx;
2776         int ccsindex;
2777
2778         /* If no tx buffers available, return */
2779         if ((ccsindex = get_free_tx_ccs(local)) < 0) {
2780                 pr_debug("ray_cs send authenticate - No free tx ccs\n");
2781                 return -1;
2782         }
2783
2784         pccs = ccs_base(local) + ccsindex;
2785
2786         /* Address in card space */
2787         addr = TX_BUF_BASE + (ccsindex << 11);
2788         /* fill in the CCS */
2789         writeb(CCS_TX_REQUEST, &pccs->cmd);
2790         writeb(addr >> 8, pccs->var.tx_request.tx_data_ptr);
2791         writeb(0x20, pccs->var.tx_request.tx_data_ptr + 1);
2792         writeb(TX_AUTHENTICATE_LENGTH_MSB, pccs->var.tx_request.tx_data_length);
2793         writeb(TX_AUTHENTICATE_LENGTH_LSB,
2794                pccs->var.tx_request.tx_data_length + 1);
2795         writeb(0, &pccs->var.tx_request.pow_sav_mode);
2796
2797         ptx = local->sram + addr;
2798         /* fill in the mac header */
2799         writeb(PROTOCOL_VER | AUTHENTIC_TYPE, &ptx->mac.frame_ctl_1);
2800         writeb(0, &ptx->mac.frame_ctl_2);
2801
2802         memcpy_toio(ptx->mac.addr_1, dest, ADDRLEN);
2803         memcpy_toio(ptx->mac.addr_2, local->sparm.b4.a_mac_addr, ADDRLEN);
2804         memcpy_toio(ptx->mac.addr_3, local->bss_id, ADDRLEN);
2805
2806         /* Fill in msg body with protocol 00 00, sequence 01 00 ,status 00 00 */
2807         memset_io(ptx->var, 0, 6);
2808         writeb(auth_type & 0xff, ptx->var + 2);
2809
2810         /* Interrupt the firmware to process the command */
2811         if (interrupt_ecf(local, ccsindex)) {
2812                 pr_debug(
2813                       "ray_cs send authentication request failed - ECF not ready for intr\n");
2814                 writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
2815                 return -1;
2816         }
2817         return 0;
2818 } /* End build_auth_frame */
2819
2820 /*===========================================================================*/
2821 #ifdef CONFIG_PROC_FS
2822 static ssize_t ray_cs_essid_proc_write(struct file *file,
2823                 const char __user *buffer, size_t count, loff_t *pos)
2824 {
2825         static char proc_essid[33];
2826         unsigned int len = count;
2827
2828         if (len > 32)
2829                 len = 32;
2830         memset(proc_essid, 0, 33);
2831         if (copy_from_user(proc_essid, buffer, len))
2832                 return -EFAULT;
2833         essid = proc_essid;
2834         return count;
2835 }
2836
2837 static const struct file_operations ray_cs_essid_proc_fops = {
2838         .owner          = THIS_MODULE,
2839         .write          = ray_cs_essid_proc_write,
2840 };
2841
2842 static ssize_t int_proc_write(struct file *file, const char __user *buffer,
2843                               size_t count, loff_t *pos)
2844 {
2845         static char proc_number[10];
2846         char *p;
2847         int nr, len;
2848
2849         if (!count)
2850                 return 0;
2851
2852         if (count > 9)
2853                 return -EINVAL;
2854         if (copy_from_user(proc_number, buffer, count))
2855                 return -EFAULT;
2856         p = proc_number;
2857         nr = 0;
2858         len = count;
2859         do {
2860                 unsigned int c = *p - '0';
2861                 if (c > 9)
2862                         return -EINVAL;
2863                 nr = nr * 10 + c;
2864                 p++;
2865         } while (--len);
2866         *(int *)PDE(file->f_path.dentry->d_inode)->data = nr;
2867         return count;
2868 }
2869
2870 static const struct file_operations int_proc_fops = {
2871         .owner          = THIS_MODULE,
2872         .write          = int_proc_write,
2873 };
2874 #endif
2875
2876 static struct pcmcia_device_id ray_ids[] = {
2877         PCMCIA_DEVICE_MANF_CARD(0x01a6, 0x0000),
2878         PCMCIA_DEVICE_NULL,
2879 };
2880
2881 MODULE_DEVICE_TABLE(pcmcia, ray_ids);
2882
2883 static struct pcmcia_driver ray_driver = {
2884         .owner = THIS_MODULE,
2885         .drv = {
2886                 .name = "ray_cs",
2887                 },
2888         .probe = ray_probe,
2889         .remove = ray_detach,
2890         .id_table = ray_ids,
2891         .suspend = ray_suspend,
2892         .resume = ray_resume,
2893 };
2894
2895 static int __init init_ray_cs(void)
2896 {
2897         int rc;
2898
2899         pr_debug("%s\n", rcsid);
2900         rc = pcmcia_register_driver(&ray_driver);
2901         pr_debug("raylink init_module register_pcmcia_driver returns 0x%x\n",
2902               rc);
2903
2904 #ifdef CONFIG_PROC_FS
2905         proc_mkdir("driver/ray_cs", NULL);
2906
2907         proc_create("driver/ray_cs/ray_cs", 0, NULL, &ray_cs_proc_fops);
2908         proc_create("driver/ray_cs/essid", S_IWUSR, NULL, &ray_cs_essid_proc_fops);
2909         proc_create_data("driver/ray_cs/net_type", S_IWUSR, NULL, &int_proc_fops, &net_type);
2910         proc_create_data("driver/ray_cs/translate", S_IWUSR, NULL, &int_proc_fops, &translate);
2911 #endif
2912         if (translate != 0)
2913                 translate = 1;
2914         return 0;
2915 } /* init_ray_cs */
2916
2917 /*===========================================================================*/
2918
2919 static void __exit exit_ray_cs(void)
2920 {
2921         pr_debug("ray_cs: cleanup_module\n");
2922
2923 #ifdef CONFIG_PROC_FS
2924         remove_proc_entry("driver/ray_cs/ray_cs", NULL);
2925         remove_proc_entry("driver/ray_cs/essid", NULL);
2926         remove_proc_entry("driver/ray_cs/net_type", NULL);
2927         remove_proc_entry("driver/ray_cs/translate", NULL);
2928         remove_proc_entry("driver/ray_cs", NULL);
2929 #endif
2930
2931         pcmcia_unregister_driver(&ray_driver);
2932 } /* exit_ray_cs */
2933
2934 module_init(init_ray_cs);
2935 module_exit(exit_ray_cs);
2936
2937 /*===========================================================================*/