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