ray_cs.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:98k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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, dhinds@allegro.stanford.edu
  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.  * 
  29. =============================================================================*/
  30. #include <linux/config.h>
  31. #include <linux/module.h>
  32. #include <linux/kernel.h>
  33. #include <linux/sched.h>
  34. #include <linux/proc_fs.h>
  35. #include <linux/ptrace.h>
  36. #include <linux/slab.h>
  37. #include <linux/string.h>
  38. #include <linux/timer.h>
  39. #include <linux/init.h>
  40. #include <asm/io.h>
  41. #include <asm/system.h>
  42. #include <asm/byteorder.h>
  43. #include <linux/netdevice.h>
  44. #include <linux/etherdevice.h>
  45. #include <linux/if_arp.h>
  46. #include <linux/ioport.h>
  47. #include <linux/skbuff.h>
  48. #include <pcmcia/version.h>
  49. #include <pcmcia/cs_types.h>
  50. #include <pcmcia/cs.h>
  51. #include <pcmcia/cistpl.h>
  52. #include <pcmcia/cisreg.h>
  53. #include <pcmcia/ds.h>
  54. #include <pcmcia/mem_op.h>
  55. #ifdef CONFIG_NET_PCMCIA_RADIO
  56. #include <linux/wireless.h>
  57. /* Warning : these stuff will slow down the driver... */
  58. #define WIRELESS_SPY /* Enable spying addresses */
  59. /* Definitions we need for spy */
  60. typedef struct iw_statistics iw_stats;
  61. typedef struct iw_quality iw_qual;
  62. typedef u_char mac_addr[ETH_ALEN]; /* Hardware address */
  63. #endif /* CONFIG_NET_PCMCIA_RADIO */
  64. #include "rayctl.h"
  65. #include "ray_cs.h"
  66. /* All the PCMCIA modules use PCMCIA_DEBUG to control debugging.  If
  67.    you do not define PCMCIA_DEBUG at all, all the debug code will be
  68.    left out.  If you compile with PCMCIA_DEBUG=0, the debug code will
  69.    be present but disabled -- but it can then be enabled for specific
  70.    modules at load time with a 'pc_debug=#' option to insmod.
  71. */
  72. #ifdef RAYLINK_DEBUG
  73. #define PCMCIA_DEBUG RAYLINK_DEBUG
  74. #endif
  75. #ifdef PCMCIA_DEBUG
  76. static int ray_debug;
  77. static int pc_debug = PCMCIA_DEBUG;
  78. MODULE_PARM(pc_debug, "i");
  79. /* #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args); */
  80. #define DEBUG(n, args...) if (pc_debug>(n)) printk(args);
  81. #else
  82. #define DEBUG(n, args...)
  83. #endif
  84. /** Prototypes based on PCMCIA skeleton driver *******************************/
  85. static void ray_config(dev_link_t *link);
  86. static void ray_release(u_long arg);
  87. static int ray_event(event_t event, int priority, event_callback_args_t *args);
  88. static dev_link_t *ray_attach(void);
  89. static void ray_detach(dev_link_t *);
  90. /***** Prototypes indicated by device structure ******************************/
  91. static int ray_dev_close(struct net_device *dev);
  92. static int ray_dev_config(struct net_device *dev, struct ifmap *map);
  93. static struct net_device_stats *ray_get_stats(struct net_device *dev);
  94. static int ray_dev_init(struct net_device *dev);
  95. static int ray_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  96. static int ray_open(struct net_device *dev);
  97. static int ray_dev_start_xmit(struct sk_buff *skb, struct net_device *dev);
  98. static void set_multicast_list(struct net_device *dev);
  99. static void ray_update_multi_list(struct net_device *dev, int all);
  100. static int translate_frame(ray_dev_t *local, struct tx_msg *ptx,
  101.                 unsigned char *data, int len);
  102. static void ray_build_header(ray_dev_t *local, struct tx_msg *ptx, UCHAR msg_type,
  103.                 unsigned char *data);
  104. static void untranslate(ray_dev_t *local, struct sk_buff *skb, int len);
  105. #if WIRELESS_EXT > 7 /* If wireless extension exist in the kernel */
  106. static iw_stats * ray_get_wireless_stats(struct net_device * dev);
  107. #endif /* WIRELESS_EXT > 7 */
  108. /***** Prototypes for raylink functions **************************************/
  109. static int asc_to_int(char a);
  110. static void authenticate(ray_dev_t *local);
  111. static int build_auth_frame(ray_dev_t *local, UCHAR *dest, int auth_type);
  112. static void authenticate_timeout(u_long);
  113. static int get_free_ccs(ray_dev_t *local);
  114. static int get_free_tx_ccs(ray_dev_t *local);
  115. static void init_startup_params(ray_dev_t *local);
  116. static int parse_addr(char *in_str, UCHAR *out);
  117. static int ray_hw_xmit(unsigned char* data, int len, struct net_device* dev, UCHAR type);
  118. static int ray_init(struct net_device *dev);
  119. static int interrupt_ecf(ray_dev_t *local, int ccs);
  120. static void ray_reset(struct net_device *dev);
  121. static void ray_update_parm(struct net_device *dev, UCHAR objid, UCHAR *value, int len);
  122. static void verify_dl_startup(u_long);
  123. /* Prototypes for interrpt time functions **********************************/
  124. static void ray_interrupt (int reg, void *dev_id, struct pt_regs *regs);
  125. static void clear_interrupt(ray_dev_t *local);
  126. static void rx_deauthenticate(ray_dev_t *local, struct rcs *prcs, 
  127.                        unsigned int pkt_addr, int rx_len);
  128. static int copy_from_rx_buff(ray_dev_t *local, UCHAR *dest, int pkt_addr, int len);
  129. static void ray_rx(struct net_device *dev, ray_dev_t *local, struct rcs *prcs);
  130. static void release_frag_chain(ray_dev_t *local, struct rcs *prcs);
  131. static void rx_authenticate(ray_dev_t *local, struct rcs *prcs,
  132.                      unsigned int pkt_addr, int rx_len);
  133. static void rx_data(struct net_device *dev, struct rcs *prcs, unsigned int pkt_addr, 
  134.              int rx_len);
  135. static void associate(ray_dev_t *local);
  136. /* Card command functions */
  137. static int dl_startup_params(struct net_device *dev);
  138. static void join_net(u_long local);
  139. static void start_net(u_long local);
  140. /* void start_net(ray_dev_t *local); */
  141. /* Create symbol table for registering with kernel in init_module */
  142. EXPORT_SYMBOL(ray_dev_ioctl);
  143. EXPORT_SYMBOL(ray_rx);
  144. /*===========================================================================*/
  145. /* Parameters that can be set with 'insmod' */
  146. /* Bit map of interrupts to choose from */
  147. /* This means pick from 15, 14, 12, 11, 10, 9, 7, 5, 4, and 3 */
  148. static u_long irq_mask = 0xdeb8;
  149. /* ADHOC=0, Infrastructure=1 */
  150. static int net_type = ADHOC;
  151. /* Hop dwell time in Kus (1024 us units defined by 802.11) */
  152. static int hop_dwell = 128;
  153. /* Beacon period in Kus */
  154. static int beacon_period = 256;
  155. /* power save mode (0 = off, 1 = save power) */
  156. static int psm;
  157. /* String for network's Extended Service Set ID. 32 Characters max */
  158. static char *essid;
  159. /* Default to encapsulation unless translation requested */
  160. static int translate = 1;
  161. static int country = USA;
  162. static int sniffer;
  163. static int bc;
  164. /* 48 bit physical card address if overriding card's real physical
  165.  * address is required.  Since IEEE 802.11 addresses are 48 bits
  166.  * like ethernet, an int can't be used, so a string is used. To
  167.  * allow use of addresses starting with a decimal digit, the first
  168.  * character must be a letter and will be ignored. This letter is
  169.  * followed by up to 12 hex digits which are the address.  If less
  170.  * than 12 digits are used, the address will be left filled with 0's.
  171.  * Note that bit 0 of the first byte is the broadcast bit, and evil
  172.  * things will happen if it is not 0 in a card address.
  173.  */
  174. static char *phy_addr = NULL;
  175. /* The dev_info variable is the "key" that is used to match up this
  176.    device driver with appropriate cards, through the card configuration
  177.    database.
  178. */
  179. static dev_info_t dev_info = "ray_cs";
  180. /* A linked list of "instances" of the ray device.  Each actual
  181.    PCMCIA card corresponds to one device instance, and is described
  182.    by one dev_link_t structure (defined in ds.h).
  183. */
  184. static dev_link_t *dev_list = NULL;
  185. /* A dev_link_t structure has fields for most things that are needed
  186.    to keep track of a socket, but there will usually be some device
  187.    specific information that also needs to be kept track of.  The
  188.    'priv' pointer in a dev_link_t structure can be used to point to
  189.    a device-specific private data structure, like this.
  190. */
  191. static unsigned int ray_mem_speed = 500;
  192. MODULE_AUTHOR("Corey Thomas <corey@world.std.com>");
  193. MODULE_DESCRIPTION("Raylink/WebGear wireless LAN driver");
  194. MODULE_LICENSE("GPL");
  195. MODULE_PARM(irq_mask,"i");
  196. MODULE_PARM(net_type,"i");
  197. MODULE_PARM(hop_dwell,"i");
  198. MODULE_PARM(beacon_period,"i");
  199. MODULE_PARM(psm,"i");
  200. MODULE_PARM(essid,"s");
  201. MODULE_PARM(translate,"i");
  202. MODULE_PARM(country,"i");
  203. MODULE_PARM(sniffer,"i");
  204. MODULE_PARM(bc,"i");
  205. MODULE_PARM(phy_addr,"s");
  206. MODULE_PARM(ray_mem_speed, "i");
  207. static UCHAR b5_default_startup_parms[] = {
  208.     0,   0,                         /* Adhoc station */
  209.    'L','I','N','U','X', 0,  0,  0,  /* 32 char ESSID */
  210.     0,  0,  0,  0,  0,  0,  0,  0,
  211.     0,  0,  0,  0,  0,  0,  0,  0,
  212.     0,  0,  0,  0,  0,  0,  0,  0,
  213.     1,  0,                          /* Active scan, CA Mode */
  214.     0,  0,  0,  0,  0,  0,          /* No default MAC addr  */
  215.     0x7f, 0xff,                     /* Frag threshold */
  216.     0x00, 0x80,                     /* Hop time 128 Kus*/
  217.     0x01, 0x00,                     /* Beacon period 256 Kus */
  218.     0x01, 0x07, 0xa3,               /* DTIM, retries, ack timeout*/
  219.     0x1d, 0x82, 0x4e,               /* SIFS, DIFS, PIFS */
  220.     0x7f, 0xff,                     /* RTS threshold */
  221.     0x04, 0xe2, 0x38, 0xA4,         /* scan_dwell, max_scan_dwell */
  222.     0x05,                           /* assoc resp timeout thresh */
  223.     0x08, 0x02, 0x08,               /* adhoc, infra, super cycle max*/
  224.     0,                              /* Promiscuous mode */
  225.     0x0c, 0x0bd,                    /* Unique word */
  226.     0x32,                           /* Slot time */
  227.     0xff, 0xff,                     /* roam-low snr, low snr count */
  228.     0x05, 0xff,                     /* Infra, adhoc missed bcn thresh */
  229.     0x01, 0x0b, 0x4f,               /* USA, hop pattern, hop pat length */
  230. /* b4 - b5 differences start here */
  231.     0x00, 0x3f,                     /* CW max */
  232.     0x00, 0x0f,                     /* CW min */
  233.     0x04, 0x08,                     /* Noise gain, limit offset */
  234.     0x28, 0x28,                     /* det rssi, med busy offsets */
  235.     7,                              /* det sync thresh */
  236.     0, 2, 2,                        /* test mode, min, max */
  237.     0,                              /* allow broadcast SSID probe resp */
  238.     0, 0,                           /* privacy must start, can join */
  239.     2, 0, 0, 0, 0, 0, 0, 0          /* basic rate set */
  240. };
  241. static UCHAR b4_default_startup_parms[] = {
  242.     0,   0,                         /* Adhoc station */
  243.    'L','I','N','U','X', 0,  0,  0,  /* 32 char ESSID */
  244.     0,  0,  0,  0,  0,  0,  0,  0,
  245.     0,  0,  0,  0,  0,  0,  0,  0,
  246.     0,  0,  0,  0,  0,  0,  0,  0,
  247.     1,  0,                          /* Active scan, CA Mode */
  248.     0,  0,  0,  0,  0,  0,          /* No default MAC addr  */
  249.     0x7f, 0xff,                     /* Frag threshold */
  250.     0x02, 0x00,                     /* Hop time */
  251.     0x00, 0x01,                     /* Beacon period */
  252.     0x01, 0x07, 0xa3,               /* DTIM, retries, ack timeout*/
  253.     0x1d, 0x82, 0xce,               /* SIFS, DIFS, PIFS */
  254.     0x7f, 0xff,                     /* RTS threshold */
  255.     0xfb, 0x1e, 0xc7, 0x5c,         /* scan_dwell, max_scan_dwell */
  256.     0x05,                           /* assoc resp timeout thresh */
  257.     0x04, 0x02, 0x4,                /* adhoc, infra, super cycle max*/
  258.     0,                              /* Promiscuous mode */
  259.     0x0c, 0x0bd,                    /* Unique word */
  260.     0x4e,                           /* Slot time (TBD seems wrong)*/
  261.     0xff, 0xff,                     /* roam-low snr, low snr count */
  262.     0x05, 0xff,                     /* Infra, adhoc missed bcn thresh */
  263.     0x01, 0x0b, 0x4e,               /* USA, hop pattern, hop pat length */
  264. /* b4 - b5 differences start here */
  265.     0x3f, 0x0f,                     /* CW max, min */
  266.     0x04, 0x08,                     /* Noise gain, limit offset */
  267.     0x28, 0x28,                     /* det rssi, med busy offsets */
  268.     7,                              /* det sync thresh */
  269.     0, 2, 2                         /* test mode, min, max*/
  270. };
  271. /*===========================================================================*/
  272. static unsigned char eth2_llc[] = {0xaa, 0xaa, 3, 0, 0, 0};
  273. static char hop_pattern_length[] = { 1,
  274.      USA_HOP_MOD,             EUROPE_HOP_MOD,
  275.      JAPAN_HOP_MOD,           KOREA_HOP_MOD,
  276.      SPAIN_HOP_MOD,           FRANCE_HOP_MOD,
  277.      ISRAEL_HOP_MOD,          AUSTRALIA_HOP_MOD,
  278.      JAPAN_TEST_HOP_MOD
  279. };
  280. static char rcsid[] = "Raylink/WebGear wireless LAN - Corey <Thomas corey@world.std.com>";
  281. /*===========================================================================*/
  282. static void cs_error(client_handle_t handle, int func, int ret)
  283. {
  284.     error_info_t err = { func, ret };
  285.     pcmcia_report_error(handle, &err);
  286. }
  287. /*======================================================================
  288.     This bit of code is used to avoid unregistering network devices
  289.     at inappropriate times.  2.2 and later kernels are fairly picky
  290.     about when this can happen.
  291.     
  292. ======================================================================*/
  293. static void flush_stale_links(void)
  294. {
  295.     dev_link_t *link, *next;
  296.     for (link = dev_list; link; link = next) {
  297. next = link->next;
  298. if (link->state & DEV_STALE_LINK)
  299.     ray_detach(link);
  300.     }
  301. }
  302. /*=============================================================================
  303.     ray_attach() creates an "instance" of the driver, allocating
  304.     local data structures for one device.  The device is registered
  305.     with Card Services.
  306.     The dev_link structure is initialized, but we don't actually
  307.     configure the card at this point -- we wait until we receive a
  308.     card insertion event.
  309. =============================================================================*/
  310. static dev_link_t *ray_attach(void)
  311. {
  312.     client_reg_t client_reg;
  313.     dev_link_t *link;
  314.     ray_dev_t *local;
  315.     int ret;
  316.     struct net_device *dev;
  317.     
  318.     DEBUG(1, "ray_attach()n");
  319.     flush_stale_links();
  320.     /* Initialize the dev_link_t structure */
  321.     link = kmalloc(sizeof(struct dev_link_t), GFP_KERNEL);
  322.     if (!link)
  323.     return NULL;
  324.     /* Allocate space for private device-specific data */
  325.     dev = kmalloc(sizeof(struct net_device), GFP_KERNEL);
  326.     if (!dev)
  327.     goto fail_alloc_dev;
  328.     local = kmalloc(sizeof(ray_dev_t), GFP_KERNEL);
  329.     if (!local)
  330.     goto fail_alloc_local;
  331.     memset(link, 0, sizeof(struct dev_link_t));
  332.     memset(dev, 0, sizeof(struct net_device));
  333.     memset(local, 0, sizeof(ray_dev_t));
  334.     link->release.function = &ray_release;
  335.     link->release.data = (u_long)link;
  336.     /* The io structure describes IO port mapping. None used here */
  337.     link->io.NumPorts1 = 0;
  338.     link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  339.     link->io.IOAddrLines = 5;
  340.     /* Interrupt setup. For PCMCIA, driver takes what's given */
  341.     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
  342.     link->irq.IRQInfo1 = IRQ_INFO2_VALID | IRQ_LEVEL_ID;
  343.     link->irq.IRQInfo2 = irq_mask;
  344.     link->irq.Handler = &ray_interrupt;
  345.     /* General socket configuration */
  346.     link->conf.Attributes = CONF_ENABLE_IRQ;
  347.     link->conf.Vcc = 50;
  348.     link->conf.IntType = INT_MEMORY_AND_IO;
  349.     link->conf.ConfigIndex = 1;
  350.     link->conf.Present = PRESENT_OPTION;
  351.     link->priv = dev;
  352.     link->irq.Instance = dev;
  353.     
  354.     dev->priv = local;
  355.     local->finder = link;
  356.     local->card_status = CARD_INSERTED;
  357.     local->authentication_state = UNAUTHENTICATED;
  358.     local->num_multi = 0;
  359.     DEBUG(2,"ray_attach link = %p,  dev = %p,  local = %p, intr = %pn",
  360.           link,dev,local,&ray_interrupt);
  361.     /* Raylink entries in the device structure */
  362.     dev->hard_start_xmit = &ray_dev_start_xmit;
  363.     dev->set_config = &ray_dev_config;
  364.     dev->get_stats  = &ray_get_stats;
  365.     dev->do_ioctl = &ray_dev_ioctl;
  366. #if WIRELESS_EXT > 7 /* If wireless extension exist in the kernel */
  367.     dev->get_wireless_stats = ray_get_wireless_stats;
  368. #endif
  369.     dev->set_multicast_list = &set_multicast_list;
  370.     DEBUG(2,"ray_cs ray_attach calling ether_setup.)n");
  371.     ether_setup(dev);
  372.     dev->init = &ray_dev_init;
  373.     dev->open = &ray_open;
  374.     dev->stop = &ray_dev_close;
  375.     netif_stop_queue(dev);
  376.     /* Register with Card Services */
  377.     link->next = dev_list;
  378.     dev_list = link;
  379.     client_reg.dev_info = &dev_info;
  380.     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  381.     client_reg.EventMask =
  382.         CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  383.         CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  384.         CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  385.     client_reg.event_handler = &ray_event;
  386.     client_reg.Version = 0x0210;
  387.     client_reg.event_callback_args.client_data = link;
  388.     DEBUG(2,"ray_cs ray_attach calling CardServices(RegisterClient...)n");
  389.     init_timer(&local->timer);
  390.     ret = pcmcia_register_client(&link->handle, &client_reg);
  391.     if (ret != 0) {
  392.         printk("ray_cs ray_attach RegisterClient unhappy - detachingn");
  393.         cs_error(link->handle, RegisterClient, ret);
  394.         ray_detach(link);
  395.         return NULL;
  396.     }
  397.     DEBUG(2,"ray_cs ray_attach endingn");
  398.     return link;
  399. fail_alloc_local:
  400.     kfree(dev);
  401. fail_alloc_dev:
  402.     kfree(link);
  403.     return NULL;
  404. } /* ray_attach */
  405. /*=============================================================================
  406.     This deletes a driver "instance".  The device is de-registered
  407.     with Card Services.  If it has been released, all local data
  408.     structures are freed.  Otherwise, the structures will be freed
  409.     when the device is released.
  410. =============================================================================*/
  411. static void ray_detach(dev_link_t *link)
  412. {
  413.     dev_link_t **linkp;
  414.     DEBUG(1, "ray_detach(0x%p)n", link);
  415.     
  416.     /* Locate device structure */
  417.     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  418.         if (*linkp == link) break;
  419.     if (*linkp == NULL)
  420.         return;
  421.     /* If the device is currently configured and active, we won't
  422.       actually delete it yet.  Instead, it is marked so that when
  423.       the release() function is called, that will trigger a proper
  424.       detach().
  425.     */
  426.     del_timer(&link->release);
  427.     if (link->state & DEV_CONFIG) {
  428.         ray_release((u_long)link);
  429.         if(link->state & DEV_STALE_CONFIG) {
  430.             link->state |= DEV_STALE_LINK;
  431.             return;
  432.         }
  433.     }
  434.     /* Break the link with Card Services */
  435.     if (link->handle)
  436.         pcmcia_deregister_client(link->handle);
  437.     
  438.     /* Unlink device structure, free pieces */
  439.     *linkp = link->next;
  440.     if (link->priv) {
  441.         struct net_device *dev = link->priv;
  442. if (link->dev) unregister_netdev(dev);
  443.         if (dev->priv)
  444.             kfree(dev->priv);
  445.         kfree(link->priv);
  446.     }
  447.     kfree(link);
  448.     DEBUG(2,"ray_cs ray_detach endingn");
  449. } /* ray_detach */
  450. /*=============================================================================
  451.     ray_config() is run after a CARD_INSERTION event
  452.     is received, to configure the PCMCIA socket, and to make the
  453.     ethernet device available to the system.
  454. =============================================================================*/
  455. #define CS_CHECK(fn, args...) 
  456. while ((last_ret=fn(args))!=0) goto cs_failed
  457. #define MAX_TUPLE_SIZE 128
  458. static void ray_config(dev_link_t *link)
  459. {
  460.     client_handle_t handle = link->handle;
  461.     tuple_t tuple;
  462.     cisparse_t parse;
  463.     int last_fn = 0, last_ret = 0;
  464.     int i;
  465.     u_char buf[MAX_TUPLE_SIZE];
  466.     win_req_t req;
  467.     memreq_t mem;
  468.     struct net_device *dev = (struct net_device *)link->priv;
  469.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  470.     DEBUG(1, "ray_config(0x%p)n", link);
  471.     /* This reads the card's CONFIG tuple to find its configuration regs */
  472.     tuple.DesiredTuple = CISTPL_CONFIG;
  473.     CS_CHECK(pcmcia_get_first_tuple, handle, &tuple);
  474.     tuple.TupleData = buf;
  475.     tuple.TupleDataMax = MAX_TUPLE_SIZE;
  476.     tuple.TupleOffset = 0;
  477.     CS_CHECK(pcmcia_get_tuple_data, handle, &tuple);
  478.     CS_CHECK(pcmcia_parse_tuple, handle, &tuple, &parse);
  479.     link->conf.ConfigBase = parse.config.base;
  480.     link->conf.Present = parse.config.rmask[0];
  481.     /* Determine card type and firmware version */
  482.     buf[0] = buf[MAX_TUPLE_SIZE - 1] = 0;
  483.     tuple.DesiredTuple = CISTPL_VERS_1;
  484.     CS_CHECK(pcmcia_get_first_tuple, handle, &tuple);
  485.     tuple.TupleData = buf;
  486.     tuple.TupleDataMax = MAX_TUPLE_SIZE;
  487.     tuple.TupleOffset = 2;
  488.     CS_CHECK(pcmcia_get_tuple_data, handle, &tuple);
  489.     for (i=0; i<tuple.TupleDataLen - 4; i++) 
  490.         if (buf[i] == 0) buf[i] = ' ';
  491.     printk(KERN_INFO "ray_cs Detected: %sn",buf);
  492.     /* Configure card */
  493.     link->state |= DEV_CONFIG;
  494.     /* Now allocate an interrupt line.  Note that this does not
  495.        actually assign a handler to the interrupt.
  496.     */
  497.     CS_CHECK(pcmcia_request_irq, link->handle, &link->irq);
  498.     dev->irq = link->irq.AssignedIRQ;
  499.     
  500.     /* This actually configures the PCMCIA socket -- setting up
  501.        the I/O windows and the interrupt mapping.
  502.     */
  503.     CS_CHECK(pcmcia_request_configuration, link->handle, &link->conf);
  504. /*** Set up 32k window for shared memory (transmit and control) ************/
  505.     req.Attributes = WIN_DATA_WIDTH_8 | WIN_MEMORY_TYPE_CM | WIN_ENABLE | WIN_USE_WAIT;
  506.     req.Base = 0;
  507.     req.Size = 0x8000;
  508.     req.AccessSpeed = ray_mem_speed;
  509.     CS_CHECK(pcmcia_request_window, &link->handle, &req, &link->win);
  510.     mem.CardOffset = 0x0000; mem.Page = 0;
  511.     CS_CHECK(pcmcia_map_mem_page, link->win, &mem);
  512.     local->sram = (UCHAR *)(ioremap(req.Base,req.Size));
  513. /*** Set up 16k window for shared memory (receive buffer) ***************/
  514.     req.Attributes = WIN_DATA_WIDTH_8 | WIN_MEMORY_TYPE_CM | WIN_ENABLE | WIN_USE_WAIT;
  515.     req.Base = 0;
  516.     req.Size = 0x4000;
  517.     req.AccessSpeed = ray_mem_speed;
  518.     CS_CHECK(pcmcia_request_window, &link->handle, &req, &local->rmem_handle);
  519.     mem.CardOffset = 0x8000; mem.Page = 0;
  520.     CS_CHECK(pcmcia_map_mem_page, local->rmem_handle, &mem);
  521.     local->rmem = (UCHAR *)(ioremap(req.Base,req.Size));
  522. /*** Set up window for attribute memory ***********************************/
  523.     req.Attributes = WIN_DATA_WIDTH_8 | WIN_MEMORY_TYPE_AM | WIN_ENABLE | WIN_USE_WAIT;
  524.     req.Base = 0;
  525.     req.Size = 0x1000;
  526.     req.AccessSpeed = ray_mem_speed;
  527.     CS_CHECK(pcmcia_request_window, &link->handle, &req, &local->amem_handle);
  528.     mem.CardOffset = 0x0000; mem.Page = 0;
  529.     CS_CHECK(pcmcia_map_mem_page, local->amem_handle, &mem);
  530.     local->amem = (UCHAR *)(ioremap(req.Base,req.Size));
  531.     DEBUG(3,"ray_config sram=%pn",local->sram);
  532.     DEBUG(3,"ray_config rmem=%pn",local->rmem);
  533.     DEBUG(3,"ray_config amem=%pn",local->amem);
  534.     if (ray_init(dev) < 0) {
  535.         ray_release((u_long)link);
  536.         return;
  537.     }
  538.     i = register_netdev(dev);
  539.     if (i != 0) {
  540.         printk("ray_config register_netdev() failedn");
  541.         ray_release((u_long)link);
  542.         return;
  543.     }
  544.     strcpy(local->node.dev_name, dev->name);
  545.     link->dev = &local->node;
  546.     link->state &= ~DEV_CONFIG_PENDING;
  547.     printk(KERN_INFO "%s: RayLink, irq %d, hw_addr ",
  548.        dev->name, dev->irq);
  549.     for (i = 0; i < 6; i++)
  550.     printk("%02X%s", dev->dev_addr[i], ((i<5) ? ":" : "n"));
  551.     return;
  552. cs_failed:
  553.     cs_error(link->handle, last_fn, last_ret);
  554.     ray_release((u_long)link);
  555. } /* ray_config */
  556. /*===========================================================================*/
  557. static int ray_init(struct net_device *dev)
  558. {
  559.     int i;
  560.     UCHAR *p;
  561.     struct ccs *pccs;
  562.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  563.     dev_link_t *link = local->finder;
  564.     DEBUG(1, "ray_init(0x%p)n", dev);
  565.     if (!(link->state & DEV_PRESENT)) {
  566.         DEBUG(0,"ray_init - device not presentn");
  567.         return -1;
  568.     }
  569.     local->net_type = net_type;
  570.     local->sta_type = TYPE_STA;
  571.     /* Copy the startup results to local memory */
  572.     memcpy_fromio(&local->startup_res, local->sram + ECF_TO_HOST_BASE,
  573.            sizeof(struct startup_res_6));
  574.     /* Check Power up test status and get mac address from card */
  575.     if (local->startup_res.startup_word != 0x80) {
  576.     printk(KERN_INFO "ray_init ERROR card status = %2xn",
  577.            local->startup_res.startup_word);
  578.         local->card_status = CARD_INIT_ERROR;
  579.         return -1;
  580.     }
  581.     local->fw_ver = local->startup_res.firmware_version[0];
  582.     local->fw_bld = local->startup_res.firmware_version[1];
  583.     local->fw_var = local->startup_res.firmware_version[2];
  584.     DEBUG(1,"ray_init firmware version %d.%d n",local->fw_ver, local->fw_bld);
  585.     local->tib_length = 0x20;
  586.     if ((local->fw_ver == 5) && (local->fw_bld >= 30))
  587.         local->tib_length = local->startup_res.tib_length;
  588.     DEBUG(2,"ray_init tib_length = 0x%02xn", local->tib_length);
  589.     /* Initialize CCS's to buffer free state */
  590.     pccs = (struct ccs *)(local->sram + CCS_BASE);
  591.     for (i=0;  i<NUMBER_OF_CCS;  i++) {
  592.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  593.     }
  594.     init_startup_params(local);
  595.     /* copy mac address to startup parameters */
  596.     if (parse_addr(phy_addr, local->sparm.b4.a_mac_addr))
  597.     {
  598.         p = local->sparm.b4.a_mac_addr;
  599.     }
  600.     else
  601.     {
  602.         memcpy(&local->sparm.b4.a_mac_addr,
  603.                &local->startup_res.station_addr, ADDRLEN);
  604.         p = local->sparm.b4.a_mac_addr;
  605.     }
  606.     clear_interrupt(local); /* Clear any interrupt from the card */
  607.     local->card_status = CARD_AWAITING_PARAM;
  608.     DEBUG(2,"ray_init endingn");
  609.     return 0;
  610. } /* ray_init */
  611. /*===========================================================================*/
  612. /* Download startup parameters to the card and command it to read them       */
  613. static int dl_startup_params(struct net_device *dev)
  614. {
  615.     int ccsindex;
  616.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  617.     struct ccs *pccs;
  618.     dev_link_t *link = local->finder;
  619.     DEBUG(1,"dl_startup_params enteredn");
  620.     if (!(link->state & DEV_PRESENT)) {
  621.         DEBUG(2,"ray_cs dl_startup_params - device not presentn");
  622.         return -1;
  623.     }
  624.     
  625.     /* Copy parameters to host to ECF area */
  626.     if (local->fw_ver == 0x55) 
  627.         memcpy_toio(local->sram + HOST_TO_ECF_BASE, &local->sparm.b4,
  628.                sizeof(struct b4_startup_params));
  629.     else
  630.         memcpy_toio(local->sram + HOST_TO_ECF_BASE, &local->sparm.b5,
  631.                sizeof(struct b5_startup_params));
  632.     
  633.     /* Fill in the CCS fields for the ECF */
  634.     if ((ccsindex = get_free_ccs(local)) < 0) return -1;
  635.     local->dl_param_ccs = ccsindex;
  636.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  637.     writeb(CCS_DOWNLOAD_STARTUP_PARAMS, &pccs->cmd);
  638.     DEBUG(2,"dl_startup_params start ccsindex = %dn", local->dl_param_ccs);
  639.     /* Interrupt the firmware to process the command */
  640.     if (interrupt_ecf(local, ccsindex)) {
  641.         printk(KERN_INFO "ray dl_startup_params failed - "
  642.            "ECF not ready for intrn");
  643.         local->card_status = CARD_DL_PARAM_ERROR;
  644.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  645.         return -2;
  646.     }
  647.     local->card_status = CARD_DL_PARAM;
  648.     /* Start kernel timer to wait for dl startup to complete. */
  649.     local->timer.expires = jiffies + HZ/2;
  650.     local->timer.data = (long)local;
  651.     local->timer.function = &verify_dl_startup;
  652.     add_timer(&local->timer);
  653.     DEBUG(2,"ray_cs dl_startup_params started timer for verify_dl_startupn");
  654.     return 0;
  655. } /* dl_startup_params */
  656. /*===========================================================================*/
  657. static void init_startup_params(ray_dev_t *local)
  658. {
  659.     int i; 
  660.     if (country > JAPAN_TEST) country = USA;
  661.     else
  662.         if (country < USA) country = USA;
  663.     /* structure for hop time and beacon period is defined here using 
  664.      * New 802.11D6.1 format.  Card firmware is still using old format
  665.      * until version 6.
  666.      *    Before                    After
  667.      *    a_hop_time ms byte        a_hop_time ms byte
  668.      *    a_hop_time 2s byte        a_hop_time ls byte
  669.      *    a_hop_time ls byte        a_beacon_period ms byte
  670.      *    a_beacon_period           a_beacon_period ls byte
  671.      *
  672.      *    a_hop_time = uS           a_hop_time = KuS
  673.      *    a_beacon_period = hops    a_beacon_period = KuS
  674.      */                             /* 64ms = 010000 */
  675.     if (local->fw_ver == 0x55)  {
  676.         memcpy((UCHAR *)&local->sparm.b4, b4_default_startup_parms, 
  677.                sizeof(struct b4_startup_params));
  678.         /* Translate sane kus input values to old build 4/5 format */
  679.         /* i = hop time in uS truncated to 3 bytes */
  680.         i = (hop_dwell * 1024) & 0xffffff;
  681.         local->sparm.b4.a_hop_time[0] = (i >> 16) & 0xff;
  682.         local->sparm.b4.a_hop_time[1] = (i >> 8) & 0xff;
  683.         local->sparm.b4.a_beacon_period[0] = 0;
  684.         local->sparm.b4.a_beacon_period[1] =
  685.             ((beacon_period/hop_dwell) - 1) & 0xff;
  686.         local->sparm.b4.a_curr_country_code = country;
  687.         local->sparm.b4.a_hop_pattern_length = 
  688.             hop_pattern_length[(int)country] - 1;
  689.         if (bc)
  690.         {
  691.             local->sparm.b4.a_ack_timeout = 0x50;
  692.             local->sparm.b4.a_sifs = 0x3f;
  693.         }
  694.     }
  695.     else {    /* Version 5 uses real kus values */
  696.         memcpy((UCHAR *)&local->sparm.b5, b5_default_startup_parms, 
  697.                sizeof(struct b5_startup_params));
  698.         local->sparm.b5.a_hop_time[0] = (hop_dwell >> 8) & 0xff;
  699.         local->sparm.b5.a_hop_time[1] = hop_dwell & 0xff;
  700.         local->sparm.b5.a_beacon_period[0] = (beacon_period >> 8) & 0xff;
  701.         local->sparm.b5.a_beacon_period[1] = beacon_period & 0xff;
  702.         if (psm)
  703.             local->sparm.b5.a_power_mgt_state = 1;
  704.         local->sparm.b5.a_curr_country_code = country;
  705.         local->sparm.b5.a_hop_pattern_length = 
  706.             hop_pattern_length[(int)country];
  707.     }
  708.     
  709.     local->sparm.b4.a_network_type = net_type & 0x01;
  710.     local->sparm.b4.a_acting_as_ap_status = TYPE_STA;
  711.     if (essid != NULL)
  712.         strncpy(local->sparm.b4.a_current_ess_id, essid, ESSID_SIZE);
  713. } /* init_startup_params */ 
  714. /*===========================================================================*/
  715. static void verify_dl_startup(u_long data)
  716. {
  717.     ray_dev_t *local = (ray_dev_t *)data;
  718.     struct ccs *pccs = ((struct ccs *)(local->sram + CCS_BASE)) + local->dl_param_ccs;
  719.     UCHAR status;
  720.     dev_link_t *link = local->finder;
  721.     if (!(link->state & DEV_PRESENT)) {
  722.         DEBUG(2,"ray_cs verify_dl_startup - device not presentn");
  723.         return;
  724.     }
  725. #ifdef PCMCIA_DEBUG
  726.     if (pc_debug > 2) {
  727.     int i;
  728.     printk(KERN_DEBUG "verify_dl_startup parameters sent via ccs %d:n",
  729.            local->dl_param_ccs);
  730.         for (i=0; i<sizeof(struct b5_startup_params); i++) {
  731.             printk(" %2x", (unsigned int) readb(local->sram + HOST_TO_ECF_BASE + i));
  732.         }
  733.     printk("n");
  734.     }
  735. #endif
  736.     status = readb(&pccs->buffer_status);
  737.     if (status!= CCS_BUFFER_FREE)
  738.     {
  739.         printk(KERN_INFO "Download startup params failed.  Status = %dn",
  740.            status);
  741.         local->card_status = CARD_DL_PARAM_ERROR;
  742.         return;
  743.     }
  744.     if (local->sparm.b4.a_network_type == ADHOC)
  745.         start_net((u_long)local);
  746.     else
  747.         join_net((u_long)local);
  748.     return;
  749. } /* end verify_dl_startup */
  750. /*===========================================================================*/
  751. /* Command card to start a network */
  752. static void start_net(u_long data)
  753. {
  754.     ray_dev_t *local = (ray_dev_t *)data;
  755.     struct ccs *pccs;
  756.     int ccsindex;
  757.     dev_link_t *link = local->finder;
  758.     if (!(link->state & DEV_PRESENT)) {
  759.         DEBUG(2,"ray_cs start_net - device not presentn");
  760.         return;
  761.     }
  762.     /* Fill in the CCS fields for the ECF */
  763.     if ((ccsindex = get_free_ccs(local)) < 0) return;
  764.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  765.     writeb(CCS_START_NETWORK, &pccs->cmd);
  766.     writeb(0, &pccs->var.start_network.update_param);
  767.     /* Interrupt the firmware to process the command */
  768.     if (interrupt_ecf(local, ccsindex)) {
  769.         DEBUG(1,"ray start net failed - card not ready for intrn");
  770.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  771.         return;
  772.     }
  773.     local->card_status = CARD_DOING_ACQ;
  774.     return;
  775. } /* end start_net */
  776. /*===========================================================================*/
  777. /* Command card to join a network */
  778. static void join_net(u_long data)
  779. {
  780.     ray_dev_t *local = (ray_dev_t *)data;
  781.     struct ccs *pccs;
  782.     int ccsindex;
  783.     dev_link_t *link = local->finder;
  784.     
  785.     if (!(link->state & DEV_PRESENT)) {
  786.         DEBUG(2,"ray_cs join_net - device not presentn");
  787.         return;
  788.     }
  789.     /* Fill in the CCS fields for the ECF */
  790.     if ((ccsindex = get_free_ccs(local)) < 0) return;
  791.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  792.     writeb(CCS_JOIN_NETWORK, &pccs->cmd);
  793.     writeb(0, &pccs->var.join_network.update_param);
  794.     writeb(0, &pccs->var.join_network.net_initiated);
  795.     /* Interrupt the firmware to process the command */
  796.     if (interrupt_ecf(local, ccsindex)) {
  797.         DEBUG(1,"ray join net failed - card not ready for intrn");
  798.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  799.         return;
  800.     }
  801.     local->card_status = CARD_DOING_ACQ;
  802.     return;
  803. }
  804. /*============================================================================
  805.     After a card is removed, ray_release() will unregister the net
  806.     device, and release the PCMCIA configuration.  If the device is
  807.     still open, this will be postponed until it is closed.
  808. =============================================================================*/
  809. static void ray_release(u_long arg)
  810. {
  811.     dev_link_t *link = (dev_link_t *)arg;
  812.     struct net_device *dev = link->priv; 
  813.     ray_dev_t *local = dev->priv;
  814.     int i;
  815.     
  816.     DEBUG(1, "ray_release(0x%p)n", link);
  817.     /* If the device is currently in use, we won't release until it
  818.       is actually closed.
  819.     */
  820.     if (link->open) {
  821.         DEBUG(1, "ray_cs: release postponed, '%s' still openn",
  822.               link->dev->dev_name);
  823.         link->state |= DEV_STALE_CONFIG;
  824.         return;
  825.     }
  826.     del_timer(&local->timer);
  827.     link->state &= ~DEV_CONFIG;
  828.     iounmap(local->sram);
  829.     iounmap(local->rmem);
  830.     iounmap(local->amem);
  831.     /* Do bother checking to see if these succeed or not */
  832.     i = pcmcia_release_window(link->win);
  833.     if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseWindow(link->win) ret = %xn",i);
  834.     i = pcmcia_release_window(local->amem_handle);
  835.     if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseWindow(local->amem) ret = %xn",i);
  836.     i = pcmcia_release_window(local->rmem_handle);
  837.     if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseWindow(local->rmem) ret = %xn",i);
  838.     i = pcmcia_release_configuration(link->handle);
  839.     if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseConfiguration ret = %xn",i);
  840.     i = pcmcia_release_irq(link->handle, &link->irq);
  841.     if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseIRQ ret = %xn",i);
  842.     DEBUG(2,"ray_release endingn");
  843. } /* ray_release */
  844. /*=============================================================================
  845.     The card status event handler.  Mostly, this schedules other
  846.     stuff to run after an event is received.  A CARD_REMOVAL event
  847.     also sets some flags to discourage the net drivers from trying
  848.     to talk to the card any more.
  849.     When a CARD_REMOVAL event is received, we immediately set a flag
  850.     to block future accesses to this device.  All the functions that
  851.     actually access the device should check this flag to make sure
  852.     the card is still present.
  853. =============================================================================*/
  854. static int ray_event(event_t event, int priority,
  855.                      event_callback_args_t *args)
  856. {
  857.     dev_link_t *link = args->client_data;
  858.     struct net_device *dev = link->priv;
  859.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  860.     DEBUG(1, "ray_event(0x%06x)n", event);
  861.     
  862.     switch (event) {
  863.     case CS_EVENT_CARD_REMOVAL:
  864.         link->state &= ~DEV_PRESENT;
  865.         netif_device_detach(dev);
  866.         if (link->state & DEV_CONFIG) {
  867.             mod_timer(&link->release, jiffies + HZ/20);
  868.             del_timer(&local->timer);
  869.         }
  870.         break;
  871.     case CS_EVENT_CARD_INSERTION:
  872.         link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  873.         ray_config(link);
  874.         break;
  875.     case CS_EVENT_PM_SUSPEND:
  876.         link->state |= DEV_SUSPEND;
  877.         /* Fall through... */
  878.     case CS_EVENT_RESET_PHYSICAL:
  879.         if (link->state & DEV_CONFIG) {
  880.             if (link->open)
  881.              netif_device_detach(dev);
  882.             pcmcia_release_configuration(link->handle);
  883.         }
  884.         break;
  885.     case CS_EVENT_PM_RESUME:
  886.         link->state &= ~DEV_SUSPEND;
  887.         /* Fall through... */
  888.     case CS_EVENT_CARD_RESET:
  889.         if (link->state & DEV_CONFIG) {
  890.             pcmcia_request_configuration(link->handle, &link->conf);
  891.             if (link->open) {
  892.                 ray_reset(dev);
  893. netif_device_attach(dev);
  894.             }
  895.         }
  896.         break;
  897.     }
  898.     return 0;
  899.     DEBUG(2,"ray_event endingn");
  900. } /* ray_event */
  901. /*===========================================================================*/
  902. int ray_dev_init(struct net_device *dev)
  903. {
  904.     int i;
  905.     ray_dev_t *local = dev->priv;
  906.     dev_link_t *link = local->finder;
  907.     DEBUG(1,"ray_dev_init(dev=%p)n",dev);
  908.     if (!(link->state & DEV_PRESENT)) {
  909.         DEBUG(2,"ray_dev_init - device not presentn");
  910.         return -1;
  911.     }
  912.     /* Download startup parameters */
  913.     if ( (i = dl_startup_params(dev)) < 0)
  914.     {
  915.         printk(KERN_INFO "ray_dev_init dl_startup_params failed - "
  916.            "returns 0x%xn",i);
  917.         return -1;
  918.     }
  919.     
  920.     /* copy mac and broadcast addresses to linux device */
  921.     memcpy(&dev->dev_addr, &local->sparm.b4.a_mac_addr, ADDRLEN);
  922.     memset(dev->broadcast, 0xff, ETH_ALEN);
  923.     DEBUG(2,"ray_dev_init endingn");
  924.     return 0;
  925. }
  926. /*===========================================================================*/
  927. static int ray_dev_config(struct net_device *dev, struct ifmap *map)
  928. {
  929.     ray_dev_t *local = dev->priv;
  930.     dev_link_t *link = local->finder;
  931.     /* Dummy routine to satisfy device structure */
  932.     DEBUG(1,"ray_dev_config(dev=%p,ifmap=%p)n",dev,map);
  933.     if (!(link->state & DEV_PRESENT)) {
  934.         DEBUG(2,"ray_dev_config - device not presentn");
  935.         return -1;
  936.     }
  937.     return 0;
  938. }
  939. /*===========================================================================*/
  940. static int ray_dev_start_xmit(struct sk_buff *skb, struct net_device *dev)
  941. {
  942.     ray_dev_t *local = dev->priv;
  943.     dev_link_t *link = local->finder;
  944.     short length;
  945.     if (!(link->state & DEV_PRESENT)) {
  946.         DEBUG(2,"ray_dev_start_xmit - device not presentn");
  947.         return -1;
  948.     }
  949.     DEBUG(3,"ray_dev_start_xmit(skb=%p, dev=%p)n",skb,dev);
  950.     if (local->authentication_state == NEED_TO_AUTH) {
  951.         DEBUG(0,"ray_cs Sending authentication request.n");
  952.         if (!build_auth_frame (local, local->auth_id, OPEN_AUTH_REQUEST)) {
  953.             local->authentication_state = AUTHENTICATED;
  954.             netif_stop_queue(dev);
  955.             return 1;
  956.         }
  957.     }
  958.     length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  959.     switch (ray_hw_xmit( skb->data, length, dev, DATA_TYPE)) {
  960.         case XMIT_NO_CCS:
  961.         case XMIT_NEED_AUTH:
  962.     netif_stop_queue(dev);
  963.             return 1;
  964.         case XMIT_NO_INTR:
  965.         case XMIT_MSG_BAD:
  966.         case XMIT_OK:
  967.         default:
  968.             dev->trans_start = jiffies;
  969.             dev_kfree_skb(skb);
  970.             return 0;
  971.     }
  972.     return 0;
  973. } /* ray_dev_start_xmit */
  974. /*===========================================================================*/
  975. static int ray_hw_xmit(unsigned char* data, int len, struct net_device* dev, 
  976.                 UCHAR msg_type)
  977. {
  978.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  979.     struct ccs *pccs;
  980.     int ccsindex;
  981.     int offset;
  982.     struct tx_msg *ptx; /* Address of xmit buffer in PC space */
  983.     short int addr;     /* Address of xmit buffer in card space */
  984.     
  985.     DEBUG(3,"ray_hw_xmit(data=%p, len=%d, dev=%p)n",data,len,dev);
  986.     if (len + TX_HEADER_LENGTH > TX_BUF_SIZE)
  987.     {
  988.         printk(KERN_INFO "ray_hw_xmit packet too large: %d bytesn",len);
  989.         return XMIT_MSG_BAD;
  990.     }
  991. switch (ccsindex = get_free_tx_ccs(local)) {
  992. case ECCSBUSY:
  993. DEBUG(2,"ray_hw_xmit tx_ccs table busyn");
  994. case ECCSFULL:
  995.         DEBUG(2,"ray_hw_xmit No free tx ccsn");
  996. case ECARDGONE:
  997. netif_stop_queue(dev);
  998.         return XMIT_NO_CCS;
  999. default:
  1000. break;
  1001. }
  1002.     addr = TX_BUF_BASE + (ccsindex << 11);
  1003.     if (msg_type == DATA_TYPE) {
  1004.         local->stats.tx_bytes += len;
  1005.         local->stats.tx_packets++;
  1006.     }
  1007.     ptx = (struct tx_msg *)(local->sram + addr);
  1008.     ray_build_header(local, ptx, msg_type, data);
  1009.     if (translate) {
  1010.         offset = translate_frame(local, ptx, data, len);
  1011.     }
  1012.     else { /* Encapsulate frame */
  1013.         /* TBD TIB length will move address of ptx->var */
  1014.         memcpy_toio(&ptx->var, data, len);
  1015.         offset = 0;
  1016.     }
  1017.     /* fill in the CCS */
  1018.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  1019.     len += TX_HEADER_LENGTH + offset;
  1020.     writeb(CCS_TX_REQUEST, &pccs->cmd);
  1021.     writeb(addr >> 8, &pccs->var.tx_request.tx_data_ptr[0]);
  1022.     writeb(local->tib_length, &pccs->var.tx_request.tx_data_ptr[1]);
  1023.     writeb(len >> 8, &pccs->var.tx_request.tx_data_length[0]);
  1024.     writeb(len & 0xff, &pccs->var.tx_request.tx_data_length[1]);
  1025. /* TBD still need psm_cam? */
  1026.     writeb(PSM_CAM, &pccs->var.tx_request.pow_sav_mode);
  1027.     writeb(local->net_default_tx_rate, &pccs->var.tx_request.tx_rate);
  1028.     writeb(0, &pccs->var.tx_request.antenna);
  1029.     DEBUG(3,"ray_hw_xmit default_tx_rate = 0x%xn",
  1030.           local->net_default_tx_rate);
  1031.     /* Interrupt the firmware to process the command */
  1032.     if (interrupt_ecf(local, ccsindex)) {
  1033.         DEBUG(2,"ray_hw_xmit failed - ECF not ready for intrn");
  1034. /* TBD very inefficient to copy packet to buffer, and then not
  1035.    send it, but the alternative is to queue the messages and that
  1036.    won't be done for a while.  Maybe set tbusy until a CCS is free?
  1037. */
  1038.         writeb(CCS_BUFFER_FREE, &pccs->buffer_status);
  1039.         return XMIT_NO_INTR;
  1040.     }
  1041.     return XMIT_OK;
  1042. } /* end ray_hw_xmit */
  1043. /*===========================================================================*/
  1044. static int translate_frame(ray_dev_t *local, struct tx_msg *ptx, unsigned char *data,
  1045.                     int len)
  1046. {
  1047.     unsigned short int proto = ((struct ethhdr *)data)->h_proto;
  1048.     if (ntohs(proto) >= 1536) { /* DIX II ethernet frame */
  1049.         DEBUG(3,"ray_cs translate_frame DIX IIn");
  1050.         /* Copy LLC header to card buffer */
  1051.         memcpy_toio((UCHAR *)&ptx->var, eth2_llc, sizeof(eth2_llc));
  1052.         memcpy_toio( ((UCHAR *)&ptx->var) + sizeof(eth2_llc), (UCHAR *)&proto, 2);
  1053.         if ((proto == 0xf380) || (proto == 0x3781)) {
  1054.             /* This is the selective translation table, only 2 entries */
  1055.             writeb(0xf8, (UCHAR *) &((struct snaphdr_t *)ptx->var)->org[3]);
  1056.         }
  1057.         /* Copy body of ethernet packet without ethernet header */
  1058.         memcpy_toio((UCHAR *)&ptx->var + sizeof(struct snaphdr_t), 
  1059.                     data + ETH_HLEN,  len - ETH_HLEN);
  1060.         return (int) sizeof(struct snaphdr_t) - ETH_HLEN;
  1061.     }
  1062.     else { /* already  802 type, and proto is length */
  1063.         DEBUG(3,"ray_cs translate_frame 802n");
  1064.         if (proto == 0xffff) { /* evil netware IPX 802.3 without LLC */
  1065.         DEBUG(3,"ray_cs translate_frame evil IPXn");
  1066.             memcpy_toio((UCHAR *)&ptx->var, data + ETH_HLEN,  len - ETH_HLEN);
  1067.             return 0 - ETH_HLEN;
  1068.         }
  1069.         memcpy_toio((UCHAR *)&ptx->var, data + ETH_HLEN,  len - ETH_HLEN);
  1070.         return 0 - ETH_HLEN;
  1071.     }
  1072.     /* TBD do other frame types */
  1073. } /* end translate_frame */
  1074. /*===========================================================================*/
  1075. static void ray_build_header(ray_dev_t *local, struct tx_msg *ptx, UCHAR msg_type,
  1076.                 unsigned char *data)
  1077. {
  1078.     writeb(PROTOCOL_VER | msg_type, &ptx->mac.frame_ctl_1);
  1079. /*** IEEE 802.11 Address field assignments *************
  1080.                 TODS FROMDS   addr_1     addr_2          addr_3   addr_4
  1081. Adhoc           0    0        dest       src (terminal)  BSSID    N/A
  1082. AP to Terminal  0    1        dest       AP(BSSID)       source   N/A
  1083. Terminal to AP  1    0        AP(BSSID)  src (terminal)  dest     N/A
  1084. AP to AP        1    1        dest AP    src AP          dest     source      
  1085. *******************************************************/
  1086.     if (local->net_type == ADHOC) {   
  1087.         writeb(0, &ptx->mac.frame_ctl_2);
  1088.         memcpy_toio(ptx->mac.addr_1, ((struct ethhdr *)data)->h_dest, 2 * ADDRLEN);
  1089.         memcpy_toio(ptx->mac.addr_3, local->bss_id, ADDRLEN);
  1090.     }
  1091.     else /* infrastructure */
  1092.     {
  1093.         if (local->sparm.b4.a_acting_as_ap_status)
  1094.         {
  1095.             writeb(FC2_FROM_DS, &ptx->mac.frame_ctl_2);
  1096.             memcpy_toio(ptx->mac.addr_1, ((struct ethhdr *)data)->h_dest, ADDRLEN);
  1097.             memcpy_toio(ptx->mac.addr_2, local->bss_id, 6);
  1098.             memcpy_toio(ptx->mac.addr_3, ((struct ethhdr *)data)->h_source, ADDRLEN);
  1099.         }
  1100.         else /* Terminal */
  1101.         {
  1102.             writeb(FC2_TO_DS, &ptx->mac.frame_ctl_2);
  1103.             memcpy_toio(ptx->mac.addr_1, local->bss_id, ADDRLEN);
  1104.             memcpy_toio(ptx->mac.addr_2, ((struct ethhdr *)data)->h_source, ADDRLEN);
  1105.             memcpy_toio(ptx->mac.addr_3, ((struct ethhdr *)data)->h_dest, ADDRLEN);
  1106.         }
  1107.     }
  1108. } /* end encapsulate_frame */
  1109. /*===========================================================================*/
  1110. static int ray_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  1111. {
  1112.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  1113.     dev_link_t *link = local->finder;
  1114.     int err = 0;
  1115. #if WIRELESS_EXT > 7
  1116.     struct iwreq *wrq = (struct iwreq *) ifr;
  1117. #endif /* WIRELESS_EXT > 7 */
  1118.     if (!(link->state & DEV_PRESENT)) {
  1119.         DEBUG(2,"ray_dev_ioctl - device not presentn");
  1120.         return -1;
  1121.     }
  1122.     DEBUG(2,"ray_cs IOCTL dev=%p, ifr=%p, cmd = 0x%xn",dev,ifr,cmd);
  1123.     /* Validate the command */
  1124.     switch (cmd)
  1125.     {
  1126. #if WIRELESS_EXT > 7
  1127.       /* --------------- WIRELESS EXTENSIONS --------------- */
  1128.       /* Get name */
  1129.     case SIOCGIWNAME:
  1130.       strcpy(wrq->u.name, "IEEE 802.11-FH");
  1131.       break;
  1132.       /* Get frequency/channel */
  1133.     case SIOCGIWFREQ:
  1134.       wrq->u.freq.m = local->sparm.b5.a_hop_pattern;
  1135.       wrq->u.freq.e = 0;
  1136.       break;
  1137.       /* Get current network name (ESSID) */
  1138.     case SIOCGIWESSID:
  1139.       if (wrq->u.data.pointer)
  1140. {
  1141.   char essid[IW_ESSID_MAX_SIZE + 1];
  1142.   /* Get the essid that was set */
  1143.   memcpy(essid, local->sparm.b5.a_current_ess_id,
  1144.  IW_ESSID_MAX_SIZE);
  1145.   essid[IW_ESSID_MAX_SIZE] = '';
  1146.   /* Push it out ! */
  1147.   wrq->u.data.length = strlen(essid) + 1;
  1148.   wrq->u.data.flags = 1; /* active */
  1149.   copy_to_user(wrq->u.data.pointer, essid, sizeof(essid));
  1150. }
  1151.       break;
  1152.       /* Get current Access Point (BSSID in our case) */
  1153.     case SIOCGIWAP:
  1154.       memcpy(wrq->u.ap_addr.sa_data, local->bss_id, ETH_ALEN);
  1155.       wrq->u.ap_addr.sa_family = ARPHRD_ETHER;
  1156.       break;
  1157.       /* Get the current bit-rate */
  1158.     case SIOCGIWRATE:
  1159.       if(local->net_default_tx_rate == 3)
  1160. wrq->u.bitrate.value = 2000000; /* Hum... */
  1161.       else
  1162. wrq->u.bitrate.value = local->net_default_tx_rate * 500000;
  1163.       wrq->u.bitrate.fixed = 0; /* We are in auto mode */
  1164.       break;
  1165.       /* Set the desired bit-rate */
  1166.     case SIOCSIWRATE:
  1167.       /* Check if rate is in range */
  1168.       if((wrq->u.bitrate.value != 1000000) &&
  1169.  (wrq->u.bitrate.value != 2000000))
  1170. {
  1171.   err = -EINVAL;
  1172.   break;
  1173. }
  1174.       /* Hack for 1.5 Mb/s instead of 2 Mb/s */
  1175.       if((local->fw_ver == 0x55) && /* Please check */
  1176.  (wrq->u.bitrate.value == 2000000))
  1177. local->net_default_tx_rate = 3;
  1178.       else
  1179. local->net_default_tx_rate = wrq->u.bitrate.value/500000;
  1180.       break;
  1181.       /* Get the current RTS threshold */
  1182.     case SIOCGIWRTS:
  1183.       wrq->u.rts.value = (local->sparm.b5.a_rts_threshold[0] << 8)
  1184. + local->sparm.b5.a_rts_threshold[1];
  1185. #if WIRELESS_EXT > 8
  1186.       wrq->u.rts.disabled = (wrq->u.rts.value == 32767);
  1187. #endif /* WIRELESS_EXT > 8 */
  1188.       wrq->u.rts.fixed = 1;
  1189.       break;
  1190.       /* Get the current fragmentation threshold */
  1191.     case SIOCGIWFRAG:
  1192.       wrq->u.frag.value = (local->sparm.b5.a_frag_threshold[0] << 8)
  1193. + local->sparm.b5.a_frag_threshold[1];
  1194. #if WIRELESS_EXT > 8
  1195.       wrq->u.frag.disabled = (wrq->u.frag.value == 32767);
  1196. #endif /* WIRELESS_EXT > 8 */
  1197.       wrq->u.frag.fixed = 1;
  1198.       break;
  1199. #endif /* WIRELESS_EXT > 7 */
  1200. #if WIRELESS_EXT > 8
  1201.       /* Get the current mode of operation */
  1202.     case SIOCGIWMODE:
  1203.       if(local->sparm.b5.a_network_type)
  1204. wrq->u.mode = IW_MODE_INFRA;
  1205.       else
  1206. wrq->u.mode = IW_MODE_ADHOC;
  1207.       break;
  1208. #endif /* WIRELESS_EXT > 8 */
  1209. #if WIRELESS_EXT > 7
  1210.       /* ------------------ IWSPY SUPPORT ------------------ */
  1211.       /* Define the range (variations) of above parameters */
  1212.     case SIOCGIWRANGE:
  1213.       /* Basic checking... */
  1214.       if(wrq->u.data.pointer != (caddr_t) 0)
  1215. {
  1216.   struct iw_range range;
  1217.   memset((char *) &range, 0, sizeof(struct iw_range));
  1218.   /* Set the length (very important for backward compatibility) */
  1219.   wrq->u.data.length = sizeof(struct iw_range);
  1220. #if WIRELESS_EXT > 10
  1221.   /* Set the Wireless Extension versions */
  1222.   range.we_version_compiled = WIRELESS_EXT;
  1223.   range.we_version_source = 9;
  1224. #endif /* WIRELESS_EXT > 10 */
  1225.   /* Set information in the range struct */
  1226.   range.throughput = 1.1 * 1000 * 1000; /* Put the right number here */
  1227.   range.num_channels = hop_pattern_length[(int)country]; 
  1228.   range.num_frequency = 0;
  1229.   range.max_qual.qual = 0;
  1230.   range.max_qual.level = 255; /* What's the correct value ? */
  1231.   range.max_qual.noise = 255; /* Idem */
  1232.   range.num_bitrates = 2;
  1233.   range.bitrate[0] = 1000000; /* 1 Mb/s */
  1234.   range.bitrate[1] = 2000000; /* 2 Mb/s */
  1235.   /* Copy structure to the user buffer */
  1236.   if(copy_to_user(wrq->u.data.pointer, &range,
  1237.   sizeof(struct iw_range)))
  1238.     err = -EFAULT;
  1239. }
  1240.       break;
  1241. #ifdef WIRELESS_SPY
  1242.       /* Set addresses to spy */
  1243.     case SIOCSIWSPY:
  1244.       /* Check the number of addresses */
  1245.       if(wrq->u.data.length > IW_MAX_SPY)
  1246. {
  1247.   err = -E2BIG;
  1248.   break;
  1249. }
  1250.       local->spy_number = wrq->u.data.length;
  1251.       /* If there is some addresses to copy */
  1252.       if(local->spy_number > 0)
  1253. {
  1254.   struct sockaddr address[IW_MAX_SPY];
  1255.   int i;
  1256.   /* Copy addresses to the driver */
  1257.   if(copy_from_user(address, wrq->u.data.pointer,
  1258.     sizeof(struct sockaddr) * local->spy_number))
  1259.     {
  1260.       err = -EFAULT;
  1261.       break;
  1262.     }
  1263.   /* Copy addresses to the lp structure */
  1264.   for(i = 0; i < local->spy_number; i++)
  1265.     memcpy(local->spy_address[i], address[i].sa_data, ETH_ALEN);
  1266.   /* Reset structure... */
  1267.   memset(local->spy_stat, 0x00, sizeof(iw_qual) * IW_MAX_SPY);
  1268. #ifdef DEBUG_IOCTL_INFO
  1269.   printk(KERN_DEBUG "SetSpy - Set of new addresses is :n");
  1270.   for(i = 0; i < local->spy_number; i++)
  1271.     printk(KERN_DEBUG "%02X:%02X:%02X:%02X:%02X:%02Xn",
  1272.    local->spy_address[i][0],
  1273.    local->spy_address[i][1],
  1274.    local->spy_address[i][2],
  1275.    local->spy_address[i][3],
  1276.    local->spy_address[i][4],
  1277.    local->spy_address[i][5]);
  1278. #endif /* DEBUG_IOCTL_INFO */
  1279. }
  1280.       break;
  1281.       /* Get the spy list and spy stats */
  1282.     case SIOCGIWSPY:
  1283.       /* Set the number of addresses */
  1284.       wrq->u.data.length = local->spy_number;
  1285.       /* If the user want to have the addresses back... */
  1286.       if((local->spy_number > 0) && (wrq->u.data.pointer != (caddr_t) 0))
  1287. {
  1288.   struct sockaddr address[IW_MAX_SPY];
  1289.   int i;
  1290.   /* Copy addresses from the lp structure */
  1291.   for(i = 0; i < local->spy_number; i++)
  1292.     {
  1293.       memcpy(address[i].sa_data, local->spy_address[i], ETH_ALEN);
  1294.       address[i].sa_family = ARPHRD_ETHER;
  1295.     }
  1296.   /* Copy addresses to the user buffer */
  1297.   if(copy_to_user(wrq->u.data.pointer, address,
  1298.        sizeof(struct sockaddr) * local->spy_number))
  1299.     {
  1300.       err = -EFAULT;
  1301.       break;
  1302.     }
  1303.   /* Copy stats to the user buffer (just after) */
  1304.   if(copy_to_user(wrq->u.data.pointer +
  1305.        (sizeof(struct sockaddr) * local->spy_number),
  1306.        local->spy_stat, sizeof(iw_qual) * local->spy_number))
  1307.     {
  1308.       err = -EFAULT;
  1309.       break;
  1310.     }
  1311.   /* Reset updated flags */
  1312.   for(i = 0; i < local->spy_number; i++)
  1313.     local->spy_stat[i].updated = 0x0;
  1314. } /* if(pointer != NULL) */
  1315.       break;
  1316. #endif /* WIRELESS_SPY */
  1317.       /* ------------------ PRIVATE IOCTL ------------------ */
  1318. #ifndef SIOCIWFIRSTPRIV
  1319. #define SIOCIWFIRSTPRIV SIOCDEVPRIVATE
  1320. #endif /* SIOCIWFIRSTPRIV */
  1321. #define SIOCSIPFRAMING SIOCIWFIRSTPRIV /* Set framing mode */
  1322. #define SIOCGIPFRAMING SIOCIWFIRSTPRIV + 1 /* Get framing mode */
  1323. #define SIOCGIPCOUNTRY SIOCIWFIRSTPRIV + 3 /* Get country code */
  1324.     case SIOCSIPFRAMING:
  1325.       if(!capable(CAP_NET_ADMIN)) /* For private IOCTLs, we need to check permissions */
  1326. {
  1327.   err = -EPERM;
  1328.   break;
  1329. }
  1330.       translate = *(wrq->u.name); /* Set framing mode */
  1331.       break;
  1332.     case SIOCGIPFRAMING:
  1333.       *(wrq->u.name) = translate;
  1334.       break;
  1335.     case SIOCGIPCOUNTRY:
  1336.       *(wrq->u.name) = country;
  1337.       break;
  1338.     case SIOCGIWPRIV:
  1339.       /* Export our "private" intercace */
  1340.       if(wrq->u.data.pointer != (caddr_t) 0)
  1341. {
  1342.   struct iw_priv_args priv[] =
  1343.   { /* cmd, set_args, get_args, name */
  1344.     { SIOCSIPFRAMING, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, 0, "set_framing" },
  1345.     { SIOCGIPFRAMING, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, "get_framing" },
  1346.     { SIOCGIPCOUNTRY, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, "get_country" },
  1347.   };
  1348.   /* Set the number of ioctl available */
  1349.   wrq->u.data.length = 3;
  1350.   /* Copy structure to the user buffer */
  1351.   if(copy_to_user(wrq->u.data.pointer, (u_char *) priv,
  1352.        sizeof(priv)))
  1353.     err = -EFAULT;
  1354. }
  1355.       break;
  1356. #endif /* WIRELESS_EXT > 7 */
  1357.         default:
  1358.             DEBUG(0,"ray_dev_ioctl cmd = 0x%xn", cmd);
  1359.             err = -EOPNOTSUPP;
  1360.     }
  1361.     return err;
  1362. } /* end ray_dev_ioctl */
  1363. /*===========================================================================*/
  1364. #if WIRELESS_EXT > 7 /* If wireless extension exist in the kernel */
  1365. static iw_stats * ray_get_wireless_stats(struct net_device * dev)
  1366. {
  1367.   ray_dev_t * local = (ray_dev_t *) dev->priv;
  1368.   dev_link_t *link = local->finder;
  1369.   struct status *p = (struct status *)(local->sram + STATUS_BASE);
  1370.   if(local == (ray_dev_t *) NULL)
  1371.     return (iw_stats *) NULL;
  1372.   local->wstats.status = local->card_status;
  1373. #ifdef WIRELESS_SPY
  1374.   if((local->spy_number > 0) && (local->sparm.b5.a_network_type == 0))
  1375.     {
  1376.       /* Get it from the first node in spy list */
  1377.       local->wstats.qual.qual = local->spy_stat[0].qual;
  1378.       local->wstats.qual.level = local->spy_stat[0].level;
  1379.       local->wstats.qual.noise = local->spy_stat[0].noise;
  1380.       local->wstats.qual.updated = local->spy_stat[0].updated;
  1381.     }
  1382. #endif /* WIRELESS_SPY */
  1383.   if((link->state & DEV_PRESENT)) {
  1384.     local->wstats.qual.noise = readb(&p->rxnoise);
  1385.     local->wstats.qual.updated |= 4;
  1386.   }
  1387.   return &local->wstats;
  1388. } /* end ray_get_wireless_stats */
  1389. #endif /* WIRELESS_EXT > 7 */
  1390. /*===========================================================================*/
  1391. static int ray_open(struct net_device *dev)
  1392. {
  1393.     dev_link_t *link;
  1394.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  1395.     
  1396.     MOD_INC_USE_COUNT;
  1397.     DEBUG(1, "ray_open('%s')n", dev->name);
  1398.     for (link = dev_list; link; link = link->next)
  1399.         if (link->priv == dev) break;
  1400.     if (!DEV_OK(link)) {
  1401.         MOD_DEC_USE_COUNT;
  1402.         return -ENODEV;
  1403.     }
  1404.     if (link->open == 0) local->num_multi = 0;
  1405.     link->open++;
  1406.     if (sniffer) netif_stop_queue(dev);
  1407.     else         netif_start_queue(dev);
  1408.     DEBUG(2,"ray_open endingn");
  1409.     return 0;
  1410. } /* end ray_open */
  1411. /*===========================================================================*/
  1412. static int ray_dev_close(struct net_device *dev)
  1413. {
  1414.     dev_link_t *link;
  1415.     DEBUG(1, "ray_dev_close('%s')n", dev->name);
  1416.     for (link = dev_list; link; link = link->next)
  1417.         if (link->priv == dev) break;
  1418.     if (link == NULL)
  1419.         return -ENODEV;
  1420.     link->open--;
  1421.     netif_stop_queue(dev);
  1422.     if (link->state & DEV_STALE_CONFIG)
  1423. mod_timer(&link->release, jiffies + HZ/20);
  1424.     MOD_DEC_USE_COUNT;
  1425.     return 0;
  1426. } /* end ray_dev_close */
  1427. /*===========================================================================*/
  1428. static void ray_reset(struct net_device *dev) {
  1429.     DEBUG(1,"ray_reset enteredn");
  1430.     return;
  1431. }
  1432. /*===========================================================================*/
  1433. /* Cause a firmware interrupt if it is ready for one                         */
  1434. /* Return nonzero if not ready                                               */
  1435. static int interrupt_ecf(ray_dev_t *local, int ccs)
  1436. {
  1437.     int i = 50;
  1438.     dev_link_t *link = local->finder;
  1439.     if (!(link->state & DEV_PRESENT)) {
  1440.         DEBUG(2,"ray_cs interrupt_ecf - device not presentn");
  1441.         return -1;
  1442.     }
  1443.     DEBUG(2,"interrupt_ecf(local=%p, ccs = 0x%xn",local,ccs);
  1444.     while ( i && 
  1445.             (readb(local->amem + CIS_OFFSET + ECF_INTR_OFFSET) & ECF_INTR_SET))
  1446.         i--;
  1447.     if (i == 0) {
  1448.         DEBUG(2,"ray_cs interrupt_ecf card not ready for interruptn");
  1449.         return -1;
  1450.     }
  1451. /* Fill the mailbox, then kick the card */
  1452.     writeb(ccs, local->sram + SCB_BASE);
  1453.     writeb(ECF_INTR_SET, local->amem + CIS_OFFSET + ECF_INTR_OFFSET);
  1454.     return 0;
  1455. } /* interrupt_ecf */
  1456. /*===========================================================================*/
  1457. /* Get next free transmit CCS                                                */
  1458. /* Return - index of current tx ccs                                          */
  1459. static int get_free_tx_ccs(ray_dev_t *local)
  1460. {
  1461.     int i;
  1462.     struct ccs *pccs = (struct ccs *)(local->sram + CCS_BASE);
  1463.     dev_link_t *link = local->finder;
  1464.     if (!(link->state & DEV_PRESENT)) {
  1465.         DEBUG(2,"ray_cs get_free_tx_ccs - device not presentn");
  1466.         return ECARDGONE;
  1467.     }
  1468.     if (test_and_set_bit(0,&local->tx_ccs_lock)) {
  1469.         DEBUG(1,"ray_cs tx_ccs_lock busyn");
  1470.         return ECCSBUSY;
  1471.     } 
  1472.     for (i=0; i < NUMBER_OF_TX_CCS; i++) {
  1473.         if (readb(&(pccs+i)->buffer_status) == CCS_BUFFER_FREE) {
  1474.             writeb(CCS_BUFFER_BUSY, &(pccs+i)->buffer_status);
  1475.             writeb(CCS_END_LIST, &(pccs+i)->link);
  1476. local->tx_ccs_lock = 0;
  1477.             return i;
  1478.         }
  1479.     }
  1480. local->tx_ccs_lock = 0;
  1481.     DEBUG(2,"ray_cs ERROR no free tx CCS for raylink cardn");
  1482.     return ECCSFULL;
  1483. } /* get_free_tx_ccs */
  1484. /*===========================================================================*/
  1485. /* Get next free CCS                                                         */
  1486. /* Return - index of current ccs                                             */
  1487. static int get_free_ccs(ray_dev_t *local)
  1488. {
  1489.     int i;
  1490.     struct ccs *pccs = (struct ccs *)(local->sram + CCS_BASE);
  1491.     dev_link_t *link = local->finder;
  1492.     if (!(link->state & DEV_PRESENT)) {
  1493.         DEBUG(2,"ray_cs get_free_ccs - device not presentn");
  1494.         return ECARDGONE;
  1495.     }
  1496.     if (test_and_set_bit(0,&local->ccs_lock)) {
  1497.         DEBUG(1,"ray_cs ccs_lock busyn");
  1498.         return ECCSBUSY;
  1499.     } 
  1500.     for (i = NUMBER_OF_TX_CCS; i < NUMBER_OF_CCS; i++) {
  1501.         if (readb(&(pccs+i)->buffer_status) == CCS_BUFFER_FREE) {
  1502.             writeb(CCS_BUFFER_BUSY, &(pccs+i)->buffer_status);
  1503.             writeb(CCS_END_LIST, &(pccs+i)->link);
  1504. local->ccs_lock = 0;
  1505.             return i;
  1506.         }
  1507.     }
  1508. local->ccs_lock = 0;
  1509.     DEBUG(1,"ray_cs ERROR no free CCS for raylink cardn");
  1510.     return ECCSFULL;
  1511. } /* get_free_ccs */
  1512. /*===========================================================================*/
  1513. static void authenticate_timeout(u_long data)
  1514. {
  1515.     ray_dev_t *local = (ray_dev_t *)data;
  1516.     del_timer(&local->timer);
  1517.     printk(KERN_INFO "ray_cs Authentication with access point failed"
  1518.        " - timeoutn");
  1519.     join_net((u_long)local);
  1520. }
  1521. /*===========================================================================*/
  1522. static int asc_to_int(char a)
  1523. {
  1524.     if (a < '0') return -1;
  1525.     if (a <= '9') return (a - '0');
  1526.     if (a < 'A') return -1;
  1527.     if (a <= 'F') return (10 + a - 'A');
  1528.     if (a < 'a') return -1;
  1529.     if (a <= 'f') return (10 + a - 'a');
  1530.     return -1;
  1531. }
  1532. /*===========================================================================*/
  1533. static int parse_addr(char *in_str, UCHAR *out)
  1534. {
  1535.     int len;
  1536.     int i,j,k;
  1537.     int status;
  1538.     
  1539.     if (in_str == NULL) return 0;
  1540.     if ((len = strlen(in_str)) < 2) return 0;
  1541.     memset(out, 0, ADDRLEN);
  1542.     status = 1;
  1543.     j = len - 1;
  1544.     if (j > 12) j = 12;
  1545.     i = 5;
  1546.     
  1547.     while (j > 0)
  1548.     {
  1549.         if ((k = asc_to_int(in_str[j--])) != -1) out[i] = k;
  1550.         else return 0;
  1551.         if (j == 0) break;
  1552.         if ((k = asc_to_int(in_str[j--])) != -1) out[i] += k << 4;
  1553.         else return 0;
  1554.         if (!i--) break;
  1555.     }
  1556.     return status;
  1557. }
  1558. /*===========================================================================*/
  1559. static struct net_device_stats *ray_get_stats(struct net_device *dev)
  1560. {
  1561.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  1562.     dev_link_t *link = local->finder;
  1563.     struct status *p = (struct status *)(local->sram + STATUS_BASE);
  1564.     if (!(link->state & DEV_PRESENT)) {
  1565.         DEBUG(2,"ray_cs net_device_stats - device not presentn");
  1566.         return &local->stats;
  1567.     }
  1568.     if (readb(&p->mrx_overflow_for_host))
  1569.     {
  1570.         local->stats.rx_over_errors += ntohs(readb(&p->mrx_overflow));
  1571.         writeb(0,&p->mrx_overflow);
  1572.         writeb(0,&p->mrx_overflow_for_host);
  1573.     }
  1574.     if (readb(&p->mrx_checksum_error_for_host))
  1575.     {
  1576.         local->stats.rx_crc_errors += ntohs(readb(&p->mrx_checksum_error));
  1577.         writeb(0,&p->mrx_checksum_error);
  1578.         writeb(0,&p->mrx_checksum_error_for_host);
  1579.     }
  1580.     if (readb(&p->rx_hec_error_for_host))
  1581.     {
  1582.         local->stats.rx_frame_errors += ntohs(readb(&p->rx_hec_error));
  1583.         writeb(0,&p->rx_hec_error);
  1584.         writeb(0,&p->rx_hec_error_for_host);
  1585.     }
  1586.     return &local->stats;
  1587. }
  1588. /*===========================================================================*/
  1589. static void ray_update_parm(struct net_device *dev, UCHAR objid, UCHAR *value, int len)
  1590. {
  1591.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  1592.     dev_link_t *link = local->finder;
  1593.     int ccsindex;
  1594.     int i;
  1595.     struct ccs *pccs;
  1596.     if (!(link->state & DEV_PRESENT)) {
  1597.         DEBUG(2,"ray_update_parm - device not presentn");
  1598.         return;
  1599.     }
  1600.     if ((ccsindex = get_free_ccs(local)) < 0)
  1601.     {
  1602.         DEBUG(0,"ray_update_parm - No free ccsn");
  1603.         return;
  1604.     }
  1605.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  1606.     writeb(CCS_UPDATE_PARAMS, &pccs->cmd);
  1607.     writeb(objid, &pccs->var.update_param.object_id);
  1608.     writeb(1, &pccs->var.update_param.number_objects);
  1609.     writeb(0, &pccs->var.update_param.failure_cause);
  1610.     for (i=0; i<len; i++) {
  1611.         writeb(value[i], local->sram + HOST_TO_ECF_BASE);
  1612.     }
  1613.     /* Interrupt the firmware to process the command */
  1614.     if (interrupt_ecf(local, ccsindex)) {
  1615.         DEBUG(0,"ray_cs associate failed - ECF not ready for intrn");
  1616.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  1617.     }
  1618. }
  1619. /*===========================================================================*/
  1620. static void ray_update_multi_list(struct net_device *dev, int all)
  1621. {
  1622.     struct dev_mc_list *dmi, **dmip;
  1623.     int ccsindex;
  1624.     struct ccs *pccs;
  1625.     int i = 0;
  1626.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  1627.     dev_link_t *link = local->finder;
  1628.     UCHAR *p = local->sram + HOST_TO_ECF_BASE;
  1629.     if (!(link->state & DEV_PRESENT)) {
  1630.         DEBUG(2,"ray_update_multi_list - device not presentn");
  1631.         return;
  1632.     }
  1633.     else 
  1634.         DEBUG(2,"ray_update_multi_list(%p)n",dev);
  1635.     if ((ccsindex = get_free_ccs(local)) < 0)
  1636.     {
  1637.         DEBUG(1,"ray_update_multi - No free ccsn");
  1638.         return;
  1639.     }
  1640.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  1641.     writeb(CCS_UPDATE_MULTICAST_LIST, &pccs->cmd);
  1642.     if (all) {
  1643.         writeb(0xff, &pccs->var);
  1644.         local->num_multi = 0xff;
  1645.     }
  1646.     else {
  1647.         /* Copy the kernel's list of MC addresses to card */
  1648.         for (dmip=&dev->mc_list; (dmi=*dmip)!=NULL; dmip=&dmi->next) {
  1649.             memcpy_toio(p, dmi->dmi_addr, ETH_ALEN);
  1650.             DEBUG(1,"ray_update_multi add addr %02x%02x%02x%02x%02x%02xn",dmi->dmi_addr[0],dmi->dmi_addr[1],dmi->dmi_addr[2],dmi->dmi_addr[3],dmi->dmi_addr[4],dmi->dmi_addr[5]);
  1651.             p += ETH_ALEN;
  1652.             i++;
  1653.         }
  1654.         if (i > 256/ADDRLEN) i = 256/ADDRLEN;
  1655.         writeb((UCHAR)i, &pccs->var);
  1656.         DEBUG(1,"ray_cs update_multi %d addresses in listn", i);
  1657.         /* Interrupt the firmware to process the command */
  1658.         local->num_multi = i;
  1659.     }
  1660.     if (interrupt_ecf(local, ccsindex)) {
  1661.         DEBUG(1,"ray_cs update_multi failed - ECF not ready for intrn");
  1662.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  1663.     }
  1664. } /* end ray_update_multi_list */
  1665. /*===========================================================================*/
  1666. static void set_multicast_list(struct net_device *dev)
  1667. {
  1668.     ray_dev_t *local = (ray_dev_t *)dev->priv;
  1669.     UCHAR promisc;
  1670.     DEBUG(2,"ray_cs set_multicast_list(%p)n",dev);
  1671.     if (dev->flags & IFF_PROMISC)
  1672.     {
  1673.         if (local->sparm.b5.a_promiscuous_mode == 0) {
  1674.             DEBUG(1,"ray_cs set_multicast_list promisc onn");
  1675.             local->sparm.b5.a_promiscuous_mode = 1;
  1676.             promisc = 1;
  1677.             ray_update_parm(dev,  OBJID_promiscuous_mode, 
  1678.                             &promisc, sizeof(promisc));
  1679.         }
  1680.     }
  1681.     else {
  1682.         if (local->sparm.b5.a_promiscuous_mode == 1) {
  1683.             DEBUG(1,"ray_cs set_multicast_list promisc offn");
  1684.             local->sparm.b5.a_promiscuous_mode = 0;
  1685.             promisc = 0;
  1686.             ray_update_parm(dev,  OBJID_promiscuous_mode, 
  1687.                             &promisc, sizeof(promisc));
  1688.         }
  1689.     }
  1690.     if (dev->flags & IFF_ALLMULTI) ray_update_multi_list(dev, 1);
  1691.     else
  1692.     {
  1693.         if (local->num_multi != dev->mc_count) ray_update_multi_list(dev, 0);
  1694.     }
  1695. } /* end set_multicast_list */
  1696. /*=============================================================================
  1697.  * All routines below here are run at interrupt time.
  1698. =============================================================================*/
  1699. static void ray_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  1700. {
  1701.     struct net_device *dev = (struct net_device *)dev_id;
  1702.     dev_link_t *link;
  1703.     ray_dev_t *local;
  1704.     struct ccs *pccs;
  1705.     struct rcs *prcs;
  1706.     UCHAR rcsindex;
  1707.     UCHAR tmp;
  1708.     UCHAR cmd;
  1709.     UCHAR status;
  1710.     if (dev == NULL) /* Note that we want interrupts with dev->start == 0 */
  1711.     return;
  1712.     DEBUG(4,"ray_cs: interrupt for *dev=%pn",dev);
  1713.     local = (ray_dev_t *)dev->priv;
  1714.     link = (dev_link_t *)local->finder;
  1715.     if ( ! (link->state & DEV_PRESENT) || link->state & DEV_SUSPEND ) {
  1716.         DEBUG(2,"ray_cs interrupt from device not present or suspended.n");
  1717.         return;
  1718.     }
  1719.     rcsindex = readb(&((struct scb *)(local->sram))->rcs_index);
  1720.     if (rcsindex >= (NUMBER_OF_CCS + NUMBER_OF_RCS))
  1721.     {
  1722.         DEBUG(1,"ray_cs interrupt bad rcsindex = 0x%xn",rcsindex);
  1723.         clear_interrupt(local);
  1724.         return;
  1725.     }
  1726.     if (rcsindex < NUMBER_OF_CCS) /* If it's a returned CCS */
  1727.     {
  1728.         pccs = ((struct ccs *) (local->sram + CCS_BASE)) + rcsindex;
  1729.         cmd = readb(&pccs->cmd);
  1730.         status = readb(&pccs->buffer_status);
  1731.         switch (cmd)
  1732.         {
  1733.         case CCS_DOWNLOAD_STARTUP_PARAMS: /* Happens in firmware someday */
  1734.             del_timer(&local->timer);
  1735.             if (status == CCS_COMMAND_COMPLETE) {
  1736.                 DEBUG(1,"ray_cs interrupt download_startup_parameters OKn");
  1737.             }
  1738.             else {
  1739.                 DEBUG(1,"ray_cs interrupt download_startup_parameters failn");
  1740.             }
  1741.             break;
  1742.         case CCS_UPDATE_PARAMS:
  1743.             DEBUG(1,"ray_cs interrupt update params donen");
  1744.             if (status != CCS_COMMAND_COMPLETE) {
  1745.                 tmp = readb(&pccs->var.update_param.failure_cause);
  1746.             DEBUG(0,"ray_cs interrupt update params failed - reason %dn",tmp);
  1747.             }
  1748.             break;
  1749.         case CCS_REPORT_PARAMS:
  1750.             DEBUG(1,"ray_cs interrupt report params donen");
  1751.             break;
  1752.         case CCS_UPDATE_MULTICAST_LIST: /* Note that this CCS isn't returned */
  1753.             DEBUG(1,"ray_cs interrupt CCS Update Multicast List donen");
  1754.             break;
  1755.         case CCS_UPDATE_POWER_SAVINGS_MODE:
  1756.             DEBUG(1,"ray_cs interrupt update power save mode donen");
  1757.             break;
  1758.         case CCS_START_NETWORK:
  1759.         case CCS_JOIN_NETWORK:
  1760.             if (status == CCS_COMMAND_COMPLETE) {
  1761.                 if (readb(&pccs->var.start_network.net_initiated) == 1) {
  1762.                     DEBUG(0,"ray_cs interrupt network "%s" startedn",
  1763.                           local->sparm.b4.a_current_ess_id);
  1764.                 }
  1765.                 else {
  1766.                     DEBUG(0,"ray_cs interrupt network "%s" joinedn",
  1767.                           local->sparm.b4.a_current_ess_id);
  1768.                 }
  1769.                 memcpy_fromio(&local->bss_id,pccs->var.start_network.bssid,ADDRLEN);
  1770.                 if (local->fw_ver == 0x55) local->net_default_tx_rate = 3;
  1771.                 else local->net_default_tx_rate = 
  1772.                          readb(&pccs->var.start_network.net_default_tx_rate);
  1773.                 local->encryption = readb(&pccs->var.start_network.encryption);
  1774.                 if (!sniffer && (local->net_type == INFRA)
  1775.                     && !(local->sparm.b4.a_acting_as_ap_status)) {
  1776.                     authenticate(local);
  1777.                 }
  1778.                 local->card_status = CARD_ACQ_COMPLETE;
  1779.             }
  1780.             else {
  1781.                 local->card_status = CARD_ACQ_FAILED;
  1782.                 del_timer(&local->timer);
  1783.                 local->timer.expires = jiffies + HZ*5;
  1784.                 local->timer.data = (long)local;
  1785.                 if (status == CCS_START_NETWORK) {
  1786.                     DEBUG(0,"ray_cs interrupt network "%s" start failedn",
  1787.                           local->sparm.b4.a_current_ess_id);
  1788.                     local->timer.function = &start_net;
  1789.                 }
  1790.                 else {
  1791.                     DEBUG(0,"ray_cs interrupt network "%s" join failedn",
  1792.                           local->sparm.b4.a_current_ess_id);
  1793.                     local->timer.function = &join_net;
  1794.                 }
  1795.                 add_timer(&local->timer);
  1796.             }
  1797.             break;
  1798.         case CCS_START_ASSOCIATION:
  1799.             if (status == CCS_COMMAND_COMPLETE) {
  1800.                 local->card_status = CARD_ASSOC_COMPLETE;
  1801.                 DEBUG(0,"ray_cs association successfuln");
  1802.             }
  1803.             else
  1804.             {
  1805.                 DEBUG(0,"ray_cs association failed,n");
  1806.                 local->card_status = CARD_ASSOC_FAILED;
  1807.                 join_net((u_long)local);
  1808.             }
  1809.             break;
  1810.         case CCS_TX_REQUEST:
  1811.             if (status == CCS_COMMAND_COMPLETE) {
  1812.                 DEBUG(3,"ray_cs interrupt tx request completen");
  1813.             }
  1814.             else {
  1815.                 DEBUG(1,"ray_cs interrupt tx request failedn");
  1816.             }
  1817.             if (!sniffer) netif_start_queue(dev);
  1818.             netif_wake_queue(dev);
  1819.             break;
  1820.         case CCS_TEST_MEMORY:
  1821.             DEBUG(1,"ray_cs interrupt mem test donen");
  1822.             break;
  1823.         case CCS_SHUTDOWN:
  1824.             DEBUG(1,"ray_cs interrupt Unexpected CCS returned - Shutdownn");
  1825.             break;
  1826.         case CCS_DUMP_MEMORY:
  1827.             DEBUG(1,"ray_cs interrupt dump memory donen");
  1828.             break;
  1829.         case CCS_START_TIMER:
  1830.             DEBUG(2,"ray_cs interrupt DING - raylink timer expiredn");
  1831.             break;
  1832.         default:
  1833.             DEBUG(1,"ray_cs interrupt Unexpected CCS 0x%x returned 0x%xn",
  1834.                   rcsindex, cmd);
  1835.         }
  1836.         writeb(CCS_BUFFER_FREE, &pccs->buffer_status);
  1837.     }
  1838.     else /* It's an RCS */
  1839.     {
  1840.         prcs = ((struct rcs *)(local->sram + CCS_BASE)) + rcsindex;
  1841.     
  1842.         switch (readb(&prcs->interrupt_id))
  1843.         {
  1844.         case PROCESS_RX_PACKET:
  1845.             ray_rx(dev, local, prcs);
  1846.             break;
  1847.         case REJOIN_NET_COMPLETE:
  1848.             DEBUG(1,"ray_cs interrupt rejoin net completen");
  1849.             local->card_status = CARD_ACQ_COMPLETE;
  1850.             /* do we need to clear tx buffers CCS's? */
  1851.             if (local->sparm.b4.a_network_type == ADHOC) {
  1852.                 if (!sniffer) netif_start_queue(dev);
  1853.             }
  1854.             else {
  1855.                 memcpy_fromio(&local->bss_id, prcs->var.rejoin_net_complete.bssid, ADDRLEN);
  1856.                 DEBUG(1,"ray_cs new BSSID = %02x%02x%02x%02x%02x%02xn",
  1857.                       local->bss_id[0], local->bss_id[1], local->bss_id[2],
  1858.                       local->bss_id[3], local->bss_id[4], local->bss_id[5]);
  1859.                 if (!sniffer) authenticate(local);
  1860.             }
  1861.             break;
  1862.         case ROAMING_INITIATED:
  1863.             DEBUG(1,"ray_cs interrupt roaming initiatedn"); 
  1864.             netif_stop_queue(dev);
  1865.             local->card_status = CARD_DOING_ACQ;
  1866.             break;
  1867.         case JAPAN_CALL_SIGN_RXD:
  1868.             DEBUG(1,"ray_cs interrupt japan call sign rxn");
  1869.             break;
  1870.         default:
  1871.             DEBUG(1,"ray_cs Unexpected interrupt for RCS 0x%x cmd = 0x%xn",
  1872.                   rcsindex, (unsigned int) readb(&prcs->interrupt_id));
  1873.             break;
  1874.         }
  1875.         writeb(CCS_BUFFER_FREE, &prcs->buffer_status);
  1876.     }
  1877.     clear_interrupt(local);
  1878. } /* ray_interrupt */
  1879. /*===========================================================================*/
  1880. static void ray_rx(struct net_device *dev, ray_dev_t *local, struct rcs *prcs)
  1881. {
  1882.     int rx_len;
  1883.     unsigned int pkt_addr;
  1884.     UCHAR *pmsg;
  1885.     DEBUG(4,"ray_rx process rx packetn");
  1886.     /* Calculate address of packet within Rx buffer */
  1887.     pkt_addr = ((readb(&prcs->var.rx_packet.rx_data_ptr[0]) << 8)
  1888.                 + readb(&prcs->var.rx_packet.rx_data_ptr[1])) & RX_BUFF_END;
  1889.     /* Length of first packet fragment */
  1890.     rx_len = (readb(&prcs->var.rx_packet.rx_data_length[0]) << 8)
  1891.         + readb(&prcs->var.rx_packet.rx_data_length[1]);
  1892.     local->last_rsl = readb(&prcs->var.rx_packet.rx_sig_lev);
  1893.     pmsg = local->rmem + pkt_addr;
  1894.     switch(readb(pmsg))
  1895.     {
  1896.     case DATA_TYPE:
  1897.         DEBUG(4,"ray_rx data typen");
  1898.         rx_data(dev, prcs, pkt_addr, rx_len);
  1899.         break;
  1900.     case AUTHENTIC_TYPE:
  1901.         DEBUG(4,"ray_rx authentic typen");
  1902.         if (sniffer) rx_data(dev, prcs, pkt_addr, rx_len);
  1903.         else rx_authenticate(local, prcs, pkt_addr, rx_len);
  1904.         break;
  1905.     case DEAUTHENTIC_TYPE:
  1906.         DEBUG(4,"ray_rx deauth typen");
  1907.         if (sniffer) rx_data(dev, prcs, pkt_addr, rx_len);
  1908.         else rx_deauthenticate(local, prcs, pkt_addr, rx_len);
  1909.         break;
  1910.     case NULL_MSG_TYPE:
  1911.         DEBUG(3,"ray_cs rx NULL msgn");
  1912.         break;
  1913.     case BEACON_TYPE:
  1914.         DEBUG(4,"ray_rx beacon typen");
  1915.         if (sniffer) rx_data(dev, prcs, pkt_addr, rx_len);
  1916.         copy_from_rx_buff(local, (UCHAR *)&local->last_bcn, pkt_addr, 
  1917.                           rx_len < sizeof(struct beacon_rx) ? 
  1918.                           rx_len : sizeof(struct beacon_rx));
  1919. local->beacon_rxed = 1;
  1920.         /* Get the statistics so the card counters never overflow */
  1921.         ray_get_stats(dev);
  1922.             break;
  1923.     default:
  1924.         DEBUG(0,"ray_cs unknown pkt type %2xn", (unsigned int) readb(pmsg));
  1925.         break;
  1926.     }
  1927. } /* end ray_rx */
  1928. /*===========================================================================*/
  1929. static void rx_data(struct net_device *dev, struct rcs *prcs, unsigned int pkt_addr, 
  1930.              int rx_len)
  1931. {
  1932.     struct sk_buff *skb = NULL;
  1933.     struct rcs *prcslink = prcs;
  1934.     ray_dev_t *local = dev->priv;
  1935.     UCHAR *rx_ptr;
  1936.     int total_len;
  1937.     int tmp;
  1938. #ifdef WIRELESS_SPY
  1939.     int siglev = local->last_rsl;
  1940.     u_char linksrcaddr[ETH_ALEN]; /* Other end of the wireless link */
  1941. #endif
  1942.     if (!sniffer) {
  1943.         if (translate) {
  1944. /* TBD length needs fixing for translated header */
  1945.             if (rx_len < (ETH_HLEN + RX_MAC_HEADER_LENGTH) ||
  1946.                 rx_len > (dev->mtu + RX_MAC_HEADER_LENGTH + ETH_HLEN + FCS_LEN)) 
  1947.             {
  1948.                 DEBUG(0,"ray_cs invalid packet length %d received n",rx_len);
  1949.                 return;
  1950.             }
  1951.         }
  1952.         else /* encapsulated ethernet */ {
  1953.             if (rx_len < (ETH_HLEN + RX_MAC_HEADER_LENGTH) ||
  1954.                 rx_len > (dev->mtu + RX_MAC_HEADER_LENGTH + ETH_HLEN + FCS_LEN))
  1955.             {
  1956.                 DEBUG(0,"ray_cs invalid packet length %d received n",rx_len);
  1957.                 return;
  1958.             }
  1959.         }
  1960.     }
  1961.     DEBUG(4,"ray_cs rx_data packetn");
  1962.     /* If fragmented packet, verify sizes of fragments add up */
  1963.     if (readb(&prcs->var.rx_packet.next_frag_rcs_index) != 0xFF) {
  1964.         DEBUG(1,"ray_cs rx'ed fragmentn");
  1965.         tmp = (readb(&prcs->var.rx_packet.totalpacketlength[0]) << 8)
  1966.             +  readb(&prcs->var.rx_packet.totalpacketlength[1]);
  1967.         total_len = tmp;
  1968.         prcslink = prcs;
  1969.         do {
  1970.             tmp -= (readb(&prcslink->var.rx_packet.rx_data_length[0]) << 8)
  1971.                 +   readb(&prcslink->var.rx_packet.rx_data_length[1]);
  1972.             if (readb(&prcslink->var.rx_packet.next_frag_rcs_index) == 0xFF
  1973.                 || tmp < 0) break;
  1974.             prcslink = ((struct rcs *)(local->sram + CCS_BASE))
  1975.                 + readb(&prcslink->link_field);
  1976.         } while (1);
  1977.         if (tmp < 0)
  1978.         {
  1979.             DEBUG(0,"ray_cs rx_data fragment lengths don't add upn");
  1980.             local->stats.rx_dropped++; 
  1981.             release_frag_chain(local, prcs);
  1982.             return;
  1983.         }
  1984.     }
  1985.     else { /* Single unfragmented packet */
  1986.         total_len = rx_len;
  1987.     }
  1988.     skb = dev_alloc_skb( total_len+5 );
  1989.     if (skb == NULL)
  1990.     {
  1991.         DEBUG(0,"ray_cs rx_data could not allocate skbn");
  1992.         local->stats.rx_dropped++; 
  1993.         if (readb(&prcs->var.rx_packet.next_frag_rcs_index) != 0xFF)
  1994.             release_frag_chain(local, prcs);
  1995.         return;
  1996.     }
  1997.     skb_reserve( skb, 2);   /* Align IP on 16 byte (TBD check this)*/
  1998.     skb->dev = dev;
  1999.     DEBUG(4,"ray_cs rx_data total_len = %x, rx_len = %xn",total_len,rx_len);
  2000. /************************/
  2001.     /* Reserve enough room for the whole damn packet. */
  2002.     rx_ptr = skb_put( skb, total_len);
  2003.     /* Copy the whole packet to sk_buff */
  2004.     rx_ptr += copy_from_rx_buff(local, rx_ptr, pkt_addr & RX_BUFF_END, rx_len);
  2005.     /* Get source address */
  2006. #ifdef WIRELESS_SPY
  2007.     memcpy(linksrcaddr, ((struct mac_header *)skb->data)->addr_2, ETH_ALEN);
  2008. #endif
  2009.     /* Now, deal with encapsulation/translation/sniffer */
  2010.     if (!sniffer) {
  2011.         if (!translate) { 
  2012.             /* Encapsulated ethernet, so just lop off 802.11 MAC header */
  2013. /* TBD reserve            skb_reserve( skb, RX_MAC_HEADER_LENGTH); */
  2014.             skb_pull( skb, RX_MAC_HEADER_LENGTH);
  2015.         }
  2016.         else {
  2017.             /* Do translation */
  2018.             untranslate(local, skb, total_len);
  2019.         }
  2020.     }
  2021.     else 
  2022.     {  /* sniffer mode, so just pass whole packet */  };
  2023. /************************/
  2024.     /* Now pick up the rest of the fragments if any */
  2025.     tmp = 17; 
  2026.     if (readb(&prcs->var.rx_packet.next_frag_rcs_index) != 0xFF) {
  2027.         prcslink = prcs;
  2028.         DEBUG(1,"ray_cs rx_data in fragment loopn");
  2029.         do {
  2030.             prcslink = ((struct rcs *)(local->sram + CCS_BASE))
  2031.                 + readb(&prcslink->var.rx_packet.next_frag_rcs_index);
  2032.             rx_len = (( readb(&prcslink->var.rx_packet.rx_data_length[0]) << 8)
  2033.                       + readb(&prcslink->var.rx_packet.rx_data_length[1]))
  2034.                 & RX_BUFF_END;
  2035.             pkt_addr = (( readb(&prcslink->var.rx_packet.rx_data_ptr[0]) << 8)
  2036.                         + readb(&prcslink->var.rx_packet.rx_data_ptr[1]))
  2037.                 & RX_BUFF_END;
  2038.             rx_ptr += copy_from_rx_buff(local, rx_ptr, pkt_addr, rx_len);
  2039.         } while (tmp-- && 
  2040.                  readb(&prcslink->var.rx_packet.next_frag_rcs_index) != 0xFF);
  2041.         release_frag_chain(local, prcs);
  2042.     }
  2043.     skb->protocol = eth_type_trans(skb,dev);
  2044.     netif_rx(skb);
  2045.     dev->last_rx = jiffies;
  2046.     local->stats.rx_packets++;
  2047.     local->stats.rx_bytes += total_len;
  2048.     /* Gather signal strength per address */
  2049. #ifdef WIRELESS_SPY
  2050.     /* For the Access Point or the node having started the ad-hoc net
  2051.      * note : ad-hoc work only in some specific configurations, but we
  2052.      * kludge in ray_get_wireless_stats... */
  2053.     if(!memcmp(linksrcaddr, local->bss_id, ETH_ALEN))
  2054.       {
  2055. /* Update statistics */
  2056. /*local->wstats.qual.qual = none ? */
  2057. local->wstats.qual.level = siglev;
  2058. /*local->wstats.qual.noise = none ? */
  2059. local->wstats.qual.updated = 0x2;
  2060.       }
  2061.     /* Now, for the addresses in the spy list */
  2062.     {
  2063.       int i;
  2064.       /* Look all addresses */
  2065.       for(i = 0; i < local->spy_number; i++)
  2066. /* If match */
  2067. if(!memcmp(linksrcaddr, local->spy_address[i], ETH_ALEN))
  2068.   {
  2069.     /* Update statistics */
  2070.     /*local->spy_stat[i].qual = none ? */
  2071.     local->spy_stat[i].level = siglev;
  2072.     /*local->spy_stat[i].noise = none ? */
  2073.     local->spy_stat[i].updated = 0x2;
  2074.   }
  2075.     }
  2076. #endif /* WIRELESS_SPY */
  2077. } /* end rx_data */
  2078. /*===========================================================================*/
  2079. static void untranslate(ray_dev_t *local, struct sk_buff *skb, int len)
  2080. {
  2081.     snaphdr_t *psnap = (snaphdr_t *)(skb->data + RX_MAC_HEADER_LENGTH);
  2082.     struct mac_header *pmac = (struct mac_header *)skb->data;
  2083.     unsigned short type = *(unsigned short *)psnap->ethertype;
  2084.     unsigned int xsap = *(unsigned int *)psnap & 0x00ffffff;
  2085.     unsigned int org = (*(unsigned int *)psnap->org) & 0x00ffffff;
  2086.     int delta;
  2087.     struct ethhdr *peth;
  2088.     UCHAR srcaddr[ADDRLEN];
  2089.     UCHAR destaddr[ADDRLEN];
  2090.     if (pmac->frame_ctl_2 & FC2_FROM_DS) {
  2091. if (pmac->frame_ctl_2 & FC2_TO_DS) { /* AP to AP */
  2092.     memcpy(destaddr, pmac->addr_3, ADDRLEN);
  2093.     memcpy(srcaddr, ((unsigned char *)pmac->addr_3) + ADDRLEN, ADDRLEN);
  2094. } else { /* AP to terminal */
  2095.     memcpy(destaddr, pmac->addr_1, ADDRLEN);
  2096.     memcpy(srcaddr, pmac->addr_3, ADDRLEN); 
  2097. }
  2098.     } else { /* Terminal to AP */
  2099. if (pmac->frame_ctl_2 & FC2_TO_DS) {
  2100.     memcpy(destaddr, pmac->addr_3, ADDRLEN);
  2101.     memcpy(srcaddr, pmac->addr_2, ADDRLEN); 
  2102. } else { /* Adhoc */
  2103.     memcpy(destaddr, pmac->addr_1, ADDRLEN);
  2104.     memcpy(srcaddr, pmac->addr_2, ADDRLEN); 
  2105. }
  2106.     }
  2107. #ifdef PCMCIA_DEBUG
  2108.     if (pc_debug > 3) {
  2109.     int i;
  2110.     printk(KERN_DEBUG "skb->data before untranslate");
  2111.     for (i=0;i<64;i++) 
  2112.         printk("%02x ",skb->data[i]);
  2113.     printk("n" KERN_DEBUG "type = %08x, xsap = %08x, org = %08xn",
  2114.            type,xsap,org);
  2115.     printk(KERN_DEBUG "untranslate skb->data = %pn",skb->data);
  2116.     }
  2117. #endif
  2118.     if ( xsap != SNAP_ID) {
  2119.         /* not a snap type so leave it alone */
  2120.         DEBUG(3,"ray_cs untranslate NOT SNAP %xn", *(unsigned int *)psnap & 0x00ffffff);
  2121.         delta = RX_MAC_HEADER_LENGTH - ETH_HLEN;
  2122.         peth = (struct ethhdr *)(skb->data + delta);
  2123.         peth->h_proto = htons(len - RX_MAC_HEADER_LENGTH);
  2124.     }
  2125.     else { /* Its a SNAP */
  2126.         if (org == BRIDGE_ENCAP) { /* EtherII and nuke the LLC  */
  2127.         DEBUG(3,"ray_cs untranslate Bridge encapn");
  2128.             delta = RX_MAC_HEADER_LENGTH 
  2129.                 + sizeof(struct snaphdr_t) - ETH_HLEN;
  2130.             peth = (struct ethhdr *)(skb->data + delta);
  2131.             peth->h_proto = type;
  2132.         }
  2133.         else {
  2134.             if (org == RFC1042_ENCAP) {
  2135.                 switch (type) {
  2136.                 case RAY_IPX_TYPE:
  2137.                 case APPLEARP_TYPE:
  2138.                     DEBUG(3,"ray_cs untranslate RFC IPX/AARPn");
  2139.                     delta = RX_MAC_HEADER_LENGTH - ETH_HLEN;
  2140.                     peth = (struct ethhdr *)(skb->data + delta);
  2141.                     peth->h_proto = htons(len - RX_MAC_HEADER_LENGTH);
  2142.                     break;
  2143.                 default:
  2144.                     DEBUG(3,"ray_cs untranslate RFC defaultn");
  2145.                     delta = RX_MAC_HEADER_LENGTH + 
  2146.                         sizeof(struct snaphdr_t) - ETH_HLEN;
  2147.                     peth = (struct ethhdr *)(skb->data + delta);
  2148.                     peth->h_proto = type;
  2149.                     break;
  2150.                 }
  2151.             }
  2152.             else {
  2153.                 printk("ray_cs untranslate very confused by packetn");
  2154.                 delta = RX_MAC_HEADER_LENGTH - ETH_HLEN;
  2155.                 peth = (struct ethhdr *)(skb->data + delta);
  2156.                 peth->h_proto = type;
  2157.             }
  2158.         }
  2159.     }
  2160. /* TBD reserve  skb_reserve(skb, delta); */
  2161.     skb_pull(skb, delta);
  2162.     DEBUG(3,"untranslate after skb_pull(%d), skb->data = %pn",delta,skb->data);
  2163.     memcpy(peth->h_dest, destaddr, ADDRLEN);
  2164.     memcpy(peth->h_source, srcaddr, ADDRLEN);
  2165. #ifdef PCMCIA_DEBUG
  2166.     if (pc_debug > 3) {
  2167.     int i;
  2168.     printk(KERN_DEBUG "skb->data after untranslate:");
  2169.     for (i=0;i<64;i++)
  2170.         printk("%02x ",skb->data[i]);
  2171.     printk("n");
  2172.     }
  2173. #endif
  2174. } /* end untranslate */
  2175. /*===========================================================================*/
  2176. /* Copy data from circular receive buffer to PC memory.
  2177.  * dest     = destination address in PC memory
  2178.  * pkt_addr = source address in receive buffer
  2179.  * len      = length of packet to copy
  2180.  */
  2181. static int copy_from_rx_buff(ray_dev_t *local, UCHAR *dest, int pkt_addr, int length)
  2182. {
  2183.     int wrap_bytes = (pkt_addr + length) - (RX_BUFF_END + 1);
  2184.     if (wrap_bytes <= 0)
  2185.     {
  2186.         memcpy_fromio(dest,local->rmem + pkt_addr,length);
  2187.     }
  2188.     else /* Packet wrapped in circular buffer */
  2189.     {
  2190.         memcpy_fromio(dest,local->rmem+pkt_addr,length - wrap_bytes);
  2191.         memcpy_fromio(dest + length - wrap_bytes, local->rmem, wrap_bytes);
  2192.     }
  2193.     return length;
  2194. }
  2195. /*===========================================================================*/
  2196. static void release_frag_chain(ray_dev_t *local, struct rcs* prcs)
  2197. {
  2198.     struct rcs *prcslink = prcs;
  2199.     int tmp = 17;
  2200.     unsigned rcsindex = readb(&prcs->var.rx_packet.next_frag_rcs_index);
  2201.     while (tmp--) {
  2202.         writeb(CCS_BUFFER_FREE, &prcslink->buffer_status);
  2203.         if (rcsindex >= (NUMBER_OF_CCS + NUMBER_OF_RCS)) {
  2204.             DEBUG(1,"ray_cs interrupt bad rcsindex = 0x%xn",rcsindex);
  2205.             break;      
  2206.         }   
  2207.         prcslink = ((struct rcs *)(local->sram + CCS_BASE)) + rcsindex;
  2208.         rcsindex = readb(&prcslink->var.rx_packet.next_frag_rcs_index);
  2209.     }
  2210.     writeb(CCS_BUFFER_FREE, &prcslink->buffer_status);
  2211. }
  2212. /*===========================================================================*/
  2213. static void authenticate(ray_dev_t *local)
  2214. {
  2215.     dev_link_t *link = local->finder;
  2216.     DEBUG(0,"ray_cs Starting authentication.n");
  2217.     if (!(link->state & DEV_PRESENT)) {
  2218.         DEBUG(2,"ray_cs authenticate - device not presentn");
  2219.         return;
  2220.     }
  2221.     del_timer(&local->timer);
  2222.     if (build_auth_frame(local, local->bss_id, OPEN_AUTH_REQUEST)) {
  2223.         local->timer.function = &join_net;
  2224.     }
  2225.     else {
  2226.         local->timer.function = &authenticate_timeout;
  2227.     }
  2228.     local->timer.expires = jiffies + HZ*2;
  2229.     local->timer.data = (long)local;
  2230.     add_timer(&local->timer);
  2231.     local->authentication_state = AWAITING_RESPONSE;
  2232. } /* end authenticate */
  2233. /*===========================================================================*/
  2234. static void rx_authenticate(ray_dev_t *local, struct rcs *prcs,
  2235.                      unsigned int pkt_addr, int rx_len)
  2236. {
  2237.     UCHAR buff[256];
  2238.     struct rx_msg *msg = (struct rx_msg *)buff;
  2239.     
  2240.     del_timer(&local->timer);
  2241.     copy_from_rx_buff(local, buff, pkt_addr, rx_len & 0xff);
  2242.     /* if we are trying to get authenticated */
  2243.     if (local->sparm.b4.a_network_type == ADHOC) {
  2244.         DEBUG(1,"ray_cs rx_auth var= %02x %02x %02x %02x %02x %02xn", msg->var[0],msg->var[1],msg->var[2],msg->var[3],msg->var[4],msg->var[5]);
  2245.         if (msg->var[2] == 1) {
  2246.                     DEBUG(0,"ray_cs Sending authentication response.n");
  2247.                     if (!build_auth_frame (local, msg->mac.addr_2, OPEN_AUTH_RESPONSE)) {
  2248.                         local->authentication_state = NEED_TO_AUTH;
  2249.                         memcpy(local->auth_id, msg->mac.addr_2, ADDRLEN);
  2250.                     }
  2251.         }
  2252.     }
  2253.     else /* Infrastructure network */
  2254.     {
  2255.         if (local->authentication_state == AWAITING_RESPONSE) {
  2256.             /* Verify authentication sequence #2 and success */
  2257.             if (msg->var[2] == 2) {
  2258.                 if ((msg->var[3] | msg->var[4]) == 0) {
  2259.                     DEBUG(1,"Authentication successfuln");
  2260.                     local->card_status = CARD_AUTH_COMPLETE;
  2261.                     associate(local);
  2262.                     local->authentication_state = AUTHENTICATED;
  2263.                 }
  2264.                 else {
  2265.                     DEBUG(0,"Authentication refusedn");
  2266.                     local->card_status = CARD_AUTH_REFUSED;
  2267.                     join_net((u_long)local);
  2268.                     local->authentication_state = UNAUTHENTICATED;
  2269.                 }
  2270.             }
  2271.         }
  2272.     }
  2273. } /* end rx_authenticate */
  2274. /*===========================================================================*/
  2275. static void associate(ray_dev_t *local)
  2276. {
  2277.     struct ccs *pccs;
  2278.     dev_link_t *link = local->finder;
  2279.     struct net_device *dev = link->priv;
  2280.     int ccsindex;
  2281.     if (!(link->state & DEV_PRESENT)) {
  2282.         DEBUG(2,"ray_cs associate - device not presentn");
  2283.         return;
  2284.     }
  2285.     /* If no tx buffers available, return*/
  2286.     if ((ccsindex = get_free_ccs(local)) < 0)
  2287.     {
  2288. /* TBD should never be here but... what if we are? */
  2289.         DEBUG(1,"ray_cs associate - No free ccsn");
  2290.         return;
  2291.     }
  2292.     DEBUG(1,"ray_cs Starting association with access pointn");
  2293.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  2294.     /* fill in the CCS */
  2295.     writeb(CCS_START_ASSOCIATION, &pccs->cmd);
  2296.     /* Interrupt the firmware to process the command */
  2297.     if (interrupt_ecf(local, ccsindex)) {
  2298.         DEBUG(1,"ray_cs associate failed - ECF not ready for intrn");
  2299.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  2300.         del_timer(&local->timer);
  2301.         local->timer.expires = jiffies + HZ*2;
  2302.         local->timer.data = (long)local;
  2303.         local->timer.function = &join_net;
  2304.         add_timer(&local->timer);
  2305.         local->card_status = CARD_ASSOC_FAILED;
  2306.         return;
  2307.     }
  2308.     if (!sniffer) netif_start_queue(dev);
  2309. } /* end associate */
  2310. /*===========================================================================*/
  2311. static void rx_deauthenticate(ray_dev_t *local, struct rcs *prcs, 
  2312.                        unsigned int pkt_addr, int rx_len)
  2313. {
  2314. /*  UCHAR buff[256];
  2315.     struct rx_msg *msg = (struct rx_msg *)buff;
  2316. */
  2317.     DEBUG(0,"Deauthentication frame receivedn");
  2318.     local->authentication_state = UNAUTHENTICATED;
  2319.     /* Need to reauthenticate or rejoin depending on reason code */
  2320. /*  copy_from_rx_buff(local, buff, pkt_addr, rx_len & 0xff);
  2321.  */
  2322. }
  2323. /*===========================================================================*/
  2324. static void clear_interrupt(ray_dev_t *local)
  2325. {
  2326.     writeb(0, local->amem + CIS_OFFSET + HCS_INTR_OFFSET);
  2327. }
  2328. /*===========================================================================*/
  2329. #ifdef CONFIG_PROC_FS
  2330. #define MAXDATA (PAGE_SIZE - 80)
  2331. static char *card_status[] = {
  2332.     "Card inserted - uninitialized",     /* 0 */
  2333.     "Card not downloaded",               /* 1 */
  2334.     "Waiting for download parameters",   /* 2 */
  2335.     "Card doing acquisition",            /* 3 */
  2336.     "Acquisition complete",              /* 4 */
  2337.     "Authentication complete",           /* 5 */
  2338.     "Association complete",              /* 6 */
  2339.     "???", "???", "???", "???",          /* 7 8 9 10 undefined */
  2340.     "Card init error",                   /* 11 */
  2341.     "Download parameters error",         /* 12 */
  2342.     "???",                               /* 13 */
  2343.     "Acquisition failed",                /* 14 */
  2344.     "Authentication refused",            /* 15 */
  2345.     "Association failed"                 /* 16 */
  2346. };
  2347. static char *nettype[] = {"Adhoc", "Infra "};
  2348. static char *framing[] = {"Encapsulation", "Translation"}
  2349. ;
  2350. /*===========================================================================*/
  2351. static int ray_cs_proc_read(char *buf, char **start, off_t offset, int len)
  2352. {
  2353. /* Print current values which are not available via other means
  2354.  * eg ifconfig 
  2355.  */
  2356.     int i;
  2357.     dev_link_t *link;
  2358.     struct net_device *dev;
  2359.     ray_dev_t *local;
  2360.     UCHAR *p;
  2361.     struct freq_hop_element *pfh;
  2362.     UCHAR c[33];
  2363.     link = dev_list;
  2364.     if (!link)
  2365.      return 0;
  2366.     dev = (struct net_device *)link->priv;
  2367.     if (!dev)
  2368.      return 0;
  2369.     local = (ray_dev_t *)dev->priv;
  2370.     if (!local)
  2371.      return 0;
  2372.     len = 0;
  2373.     len += sprintf(buf + len, "Raylink Wireless LAN driver statusn");
  2374.     len += sprintf(buf + len, "%sn", rcsid);
  2375.     /* build 4 does not report version, and field is 0x55 after memtest */
  2376.     len += sprintf(buf + len, "Firmware version     = ");
  2377.     if (local->fw_ver == 0x55)
  2378.         len += sprintf(buf + len, "4 - Use dump_cis for more detailsn");
  2379.     else
  2380.         len += sprintf(buf + len, "%2d.%02d.%02dn",
  2381.                    local->fw_ver, local->fw_bld, local->fw_var);
  2382.     for (i=0; i<32; i++) c[i] = local->sparm.b5.a_current_ess_id[i];
  2383.     c[32] = 0;
  2384.     len += sprintf(buf + len, "%s network ESSID = "%s"n", 
  2385.                    nettype[local->sparm.b5.a_network_type], c);
  2386.     p = local->bss_id;
  2387.     len += sprintf(buf + len, 
  2388.                    "BSSID                = %02x:%02x:%02x:%02x:%02x:%02xn",
  2389.                    p[0],p[1],p[2],p[3],p[4],p[5]);
  2390.     len += sprintf(buf + len, "Country code         = %dn", 
  2391.                    local->sparm.b5.a_curr_country_code);
  2392.     i = local->card_status;
  2393.     if (i < 0) i = 10;
  2394.     if (i > 16) i = 10;
  2395.     len += sprintf(buf + len, "Card status          = %sn", card_status[i]);
  2396.     len += sprintf(buf + len, "Framing mode         = %sn",framing[translate]);
  2397.     len += sprintf(buf + len, "Last pkt signal lvl  = %dn", local->last_rsl);
  2398.     if (local->beacon_rxed) {
  2399. /* Pull some fields out of last beacon received */
  2400. len += sprintf(buf + len, "Beacon Interval      = %d Kusn", 
  2401.        local->last_bcn.beacon_intvl[0]
  2402.        + 256 * local->last_bcn.beacon_intvl[1]);
  2403.     
  2404.     p = local->last_bcn.elements;
  2405.     if (p[0] == C_ESSID_ELEMENT_ID) p += p[1] + 2;
  2406.     else {
  2407.         len += sprintf(buf + len, "Parse beacon failed at essid element id = %dn",p[0]);
  2408.         return len;
  2409.     }
  2410.     if (p[0] == C_SUPPORTED_RATES_ELEMENT_ID) {
  2411.         len += sprintf(buf + len, "Supported rate codes = ");
  2412.         for (i=2; i<p[1] + 2; i++) 
  2413.             len += sprintf(buf + len, "0x%02x ", p[i]);
  2414.         len += sprintf(buf + len, "n");
  2415.         p += p[1] + 2;
  2416.     }
  2417.     else {
  2418.         len += sprintf(buf + len, "Parse beacon failed at rates elementn");
  2419.         return len;
  2420.     }
  2421. if (p[0] == C_FH_PARAM_SET_ELEMENT_ID) {
  2422.     pfh = (struct freq_hop_element *)p;
  2423.     len += sprintf(buf + len, "Hop dwell            = %d Kusn",
  2424.    pfh->dwell_time[0] + 256 * pfh->dwell_time[1]);
  2425.     len += sprintf(buf + len, "Hop set              = %d n", pfh->hop_set);
  2426.     len += sprintf(buf + len, "Hop pattern          = %d n", pfh->hop_pattern);
  2427.     len += sprintf(buf + len, "Hop index            = %d n", pfh->hop_index);
  2428.     p += p[1] + 2;
  2429. }
  2430. else {
  2431.     len += sprintf(buf + len, "Parse beacon failed at FH param elementn");
  2432.     return len;
  2433. }
  2434.     } else {
  2435. len += sprintf(buf + len, "No beacons receivedn");
  2436.     }
  2437.     return len;
  2438. }
  2439. #endif
  2440. /*===========================================================================*/
  2441. static int build_auth_frame(ray_dev_t *local, UCHAR *dest, int auth_type)
  2442. {
  2443.     int addr;
  2444.     struct ccs *pccs;
  2445.     struct tx_msg *ptx;
  2446.     int ccsindex;
  2447.     /* If no tx buffers available, return */
  2448.     if ((ccsindex = get_free_tx_ccs(local)) < 0)
  2449.     {
  2450.         DEBUG(1,"ray_cs send authenticate - No free tx ccsn");
  2451.         return -1;
  2452.     }
  2453.     pccs = ((struct ccs *)(local->sram + CCS_BASE)) + ccsindex;
  2454.     /* Address in card space */
  2455.     addr = TX_BUF_BASE + (ccsindex << 11);
  2456.     /* fill in the CCS */
  2457.     writeb(CCS_TX_REQUEST, &pccs->cmd);
  2458.     writeb(addr >> 8, pccs->var.tx_request.tx_data_ptr);
  2459.     writeb(0x20, pccs->var.tx_request.tx_data_ptr + 1);
  2460.     writeb(TX_AUTHENTICATE_LENGTH_MSB, pccs->var.tx_request.tx_data_length);
  2461.     writeb(TX_AUTHENTICATE_LENGTH_LSB,pccs->var.tx_request.tx_data_length + 1);
  2462.     writeb(0, &pccs->var.tx_request.pow_sav_mode);
  2463.     ptx = (struct tx_msg *)(local->sram + addr);
  2464.     /* fill in the mac header */
  2465.     writeb(PROTOCOL_VER | AUTHENTIC_TYPE, &ptx->mac.frame_ctl_1);
  2466.     writeb(0, &ptx->mac.frame_ctl_2);
  2467.     memcpy_toio(ptx->mac.addr_1, dest, ADDRLEN);
  2468.     memcpy_toio(ptx->mac.addr_2, local->sparm.b4.a_mac_addr, ADDRLEN);
  2469.     memcpy_toio(ptx->mac.addr_3, local->bss_id, ADDRLEN);
  2470.     /* Fill in msg body with protocol 00 00, sequence 01 00 ,status 00 00 */
  2471.     memset_io(ptx->var, 0, 6);
  2472.     writeb(auth_type & 0xff, ptx->var + 2);
  2473.     /* Interrupt the firmware to process the command */
  2474.     if (interrupt_ecf(local, ccsindex)) {
  2475.         DEBUG(1,"ray_cs send authentication request failed - ECF not ready for intrn");
  2476.         writeb(CCS_BUFFER_FREE, &(pccs++)->buffer_status);
  2477.         return -1;
  2478.     }
  2479.     return 0;
  2480. } /* End build_auth_frame */
  2481. /*===========================================================================*/
  2482. #ifdef CONFIG_PROC_FS
  2483. static void raycs_write(const char *name, write_proc_t *w, void *data)
  2484. {
  2485. struct proc_dir_entry * entry = create_proc_entry(name, S_IFREG | S_IWUSR, NULL);
  2486. if (entry) {
  2487. entry->write_proc = w;
  2488. entry->data = data;
  2489. }
  2490. }
  2491. static int write_essid(struct file *file, const char *buffer, unsigned long count, void *data)
  2492. {
  2493. static char proc_essid[33];
  2494. int len = count;
  2495. if (len > 32)
  2496. len = 32;
  2497. memset(proc_essid, 0, 33);
  2498. if (copy_from_user(proc_essid, buffer, len))
  2499. return -EFAULT;
  2500. essid = proc_essid;
  2501. return count;
  2502. }
  2503. static int write_int(struct file *file, const char *buffer, unsigned long count, void *data)
  2504. {
  2505. static char proc_number[10];
  2506. char *p;
  2507. int nr, len;
  2508. if (!count)
  2509. return 0;
  2510. if (count > 9)
  2511. return -EINVAL;
  2512. if (copy_from_user(proc_number, buffer, count))
  2513. return -EFAULT;
  2514. p = proc_number;
  2515. nr = 0;
  2516. len = count;
  2517. do {
  2518. unsigned int c = *p - '0';
  2519. if (c > 9)
  2520. return -EINVAL;
  2521. nr = nr*10 + c;
  2522. p++;
  2523. } while (--len);
  2524. *(int *)data = nr;
  2525. return count;
  2526. }
  2527. #endif
  2528. static int __init init_ray_cs(void)
  2529. {
  2530.     int rc;
  2531.     
  2532.     DEBUG(1, "%sn", rcsid);
  2533.     rc = register_pcmcia_driver(&dev_info, &ray_attach, &ray_detach);
  2534.     DEBUG(1, "raylink init_module register_pcmcia_driver returns 0x%xn",rc);
  2535. #ifdef CONFIG_PROC_FS
  2536.     proc_mkdir("driver/ray_cs", 0);
  2537.     create_proc_info_entry("driver/ray_cs/ray_cs", 0, NULL, &ray_cs_proc_read);
  2538.     raycs_write("driver/ray_cs/essid", write_essid, NULL);
  2539.     raycs_write("driver/ray_cs/net_type", write_int, &net_type);
  2540.     raycs_write("driver/ray_cs/translate", write_int, &translate);
  2541. #endif
  2542.     if (translate != 0) translate = 1;
  2543.     return 0;
  2544. } /* init_ray_cs */
  2545. /*===========================================================================*/
  2546. static void __exit exit_ray_cs(void)
  2547. {
  2548.     DEBUG(0, "ray_cs: cleanup_modulen");
  2549. #ifdef CONFIG_PROC_FS
  2550.     remove_proc_entry("ray_cs", proc_root_driver);
  2551. #endif
  2552.     unregister_pcmcia_driver(&dev_info);
  2553.     while (dev_list != NULL)
  2554.         ray_detach(dev_list);
  2555. #ifdef CONFIG_PROC_FS
  2556.     remove_proc_entry("driver/ray_cs/ray_cs", NULL);
  2557.     remove_proc_entry("driver/ray_cs/essid", NULL);
  2558.     remove_proc_entry("driver/ray_cs/net_type", NULL);
  2559.     remove_proc_entry("driver/ray_cs/translate", NULL);
  2560.     remove_proc_entry("driver/ray_cs", NULL);
  2561. #endif
  2562. } /* exit_ray_cs */
  2563. module_init(init_ray_cs);
  2564. module_exit(exit_ray_cs);
  2565. /*===========================================================================*/