blob: 4720fb20d66d1c730582e8ecf5d4552a7b4540b5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* orinoco.h
2 *
3 * Common definitions to all pieces of the various orinoco
4 * drivers
5 */
6
7#ifndef _ORINOCO_H
8#define _ORINOCO_H
9
Pavel Roskinf298a2e2006-04-07 04:11:02 -040010#define DRIVER_VERSION "0.15"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/netdevice.h>
13#include <linux/wireless.h>
Pavel Roskin343c6862005-09-09 18:43:02 -040014#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "hermes.h"
17
18/* To enable debug messages */
19//#define ORINOCO_DEBUG 3
20
21#define WIRELESS_SPY // enable iwspy support
22
Christoph Hellwig16739b02005-06-19 01:27:51 +020023#define MAX_SCAN_LEN 4096
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define ORINOCO_MAX_KEY_SIZE 14
26#define ORINOCO_MAX_KEYS 4
27
28struct orinoco_key {
Pavel Roskind133ae42005-09-23 04:18:06 -040029 __le16 len; /* always stored as little-endian */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 char data[ORINOCO_MAX_KEY_SIZE];
31} __attribute__ ((packed));
32
33typedef enum {
34 FIRMWARE_TYPE_AGERE,
35 FIRMWARE_TYPE_INTERSIL,
36 FIRMWARE_TYPE_SYMBOL
37} fwtype_t;
38
39struct orinoco_private {
40 void *card; /* Pointer to card dependent structure */
41 int (*hard_reset)(struct orinoco_private *);
42
43 /* Synchronisation stuff */
44 spinlock_t lock;
45 int hw_unavailable;
46 struct work_struct reset_work;
47
48 /* driver state */
49 int open;
50 u16 last_linkstatus;
Christoph Hellwig16739b02005-06-19 01:27:51 +020051 struct work_struct join_work;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +020052 struct work_struct wevent_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 /* Net device stuff */
55 struct net_device *ndev;
56 struct net_device_stats stats;
57 struct iw_statistics wstats;
58
59 /* Hardware control variables */
60 hermes_t hw;
61 u16 txfid;
62
63 /* Capabilities of the hardware/firmware */
64 fwtype_t firmware_type;
65 char fw_name[32];
66 int ibss_port;
67 int nicbuf_size;
68 u16 channel_mask;
69
70 /* Boolean capabilities */
71 unsigned int has_ibss:1;
72 unsigned int has_port3:1;
73 unsigned int has_wep:1;
74 unsigned int has_big_wep:1;
75 unsigned int has_mwo:1;
76 unsigned int has_pm:1;
77 unsigned int has_preamble:1;
78 unsigned int has_sensitivity:1;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +020079 unsigned int has_hostscan:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unsigned int broken_disableport:1;
Christoph Hellwig98c4cae2005-06-19 01:28:06 +020081 unsigned int broken_monitor:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 /* Configuration paramaters */
84 u32 iw_mode;
85 int prefer_port3;
86 u16 wep_on, wep_restrict, tx_key;
87 struct orinoco_key keys[ORINOCO_MAX_KEYS];
88 int bitratemode;
89 char nick[IW_ESSID_MAX_SIZE+1];
90 char desired_essid[IW_ESSID_MAX_SIZE+1];
Christoph Hellwig16739b02005-06-19 01:27:51 +020091 char desired_bssid[ETH_ALEN];
92 int bssid_fixed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 u16 frag_thresh, mwo_robust;
94 u16 channel;
95 u16 ap_density, rts_thresh;
96 u16 pm_on, pm_mcast, pm_period, pm_timeout;
97 u16 preamble;
98#ifdef WIRELESS_SPY
Pavel Roskin343c6862005-09-09 18:43:02 -040099 struct iw_spy_data spy_data; /* iwspy support */
100 struct iw_public_data wireless_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
103 /* Configuration dependent variables */
104 int port_type, createibss;
105 int promiscuous, mc_count;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200106
107 /* Scanning support */
108 int scan_inprogress; /* Scan pending... */
109 u32 scan_mode; /* Type of scan done */
110 char * scan_result; /* Result of previous scan */
111 int scan_len; /* Lenght of result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114#ifdef ORINOCO_DEBUG
115extern int orinoco_debug;
116#define DEBUG(n, args...) do { if (orinoco_debug>(n)) printk(KERN_DEBUG args); } while(0)
117#else
118#define DEBUG(n, args...) do { } while (0)
119#endif /* ORINOCO_DEBUG */
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/********************************************************************/
122/* Exported prototypes */
123/********************************************************************/
124
125extern struct net_device *alloc_orinocodev(int sizeof_card,
126 int (*hard_reset)(struct orinoco_private *));
127extern void free_orinocodev(struct net_device *dev);
128extern int __orinoco_up(struct net_device *dev);
129extern int __orinoco_down(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130extern int orinoco_reinit_firmware(struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100131extern irqreturn_t orinoco_interrupt(int irq, void * dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133/********************************************************************/
134/* Locking and synchronization functions */
135/********************************************************************/
136
Pavel Roskin821fe682006-08-15 20:45:00 -0400137static inline int orinoco_lock(struct orinoco_private *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned long *flags)
139{
140 spin_lock_irqsave(&priv->lock, *flags);
141 if (priv->hw_unavailable) {
142 DEBUG(1, "orinoco_lock() called with hw_unavailable (dev=%p)\n",
143 priv->ndev);
144 spin_unlock_irqrestore(&priv->lock, *flags);
145 return -EBUSY;
146 }
147 return 0;
148}
149
Pavel Roskin821fe682006-08-15 20:45:00 -0400150static inline void orinoco_unlock(struct orinoco_private *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 unsigned long *flags)
152{
153 spin_unlock_irqrestore(&priv->lock, *flags);
154}
155
156#endif /* _ORINOCO_H */