blob: 5f4f5c9eef79ba79dc8e83fac19f4b0d2c5237ec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* orinoco.h
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +03002 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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
David Kilroy31afcef2008-08-21 23:28:04 +010012#include <linux/interrupt.h>
David Kilroy39d1ffe2008-11-22 10:37:28 +000013#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/netdevice.h>
15#include <linux/wireless.h>
Pavel Roskin343c6862005-09-09 18:43:02 -040016#include <net/iw_handler.h>
David Kilroyea60a6a2009-06-18 23:21:26 +010017#include <net/cfg80211.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include "hermes.h"
20
21/* To enable debug messages */
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +030022/*#define ORINOCO_DEBUG 3*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +030024#define WIRELESS_SPY /* enable iwspy support */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Christoph Hellwig16739b02005-06-19 01:27:51 +020026#define MAX_SCAN_LEN 4096
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#define ORINOCO_MAX_KEY_SIZE 14
29#define ORINOCO_MAX_KEYS 4
30
31struct orinoco_key {
Pavel Roskind133ae42005-09-23 04:18:06 -040032 __le16 len; /* always stored as little-endian */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 char data[ORINOCO_MAX_KEY_SIZE];
34} __attribute__ ((packed));
35
David Kilroyd03032a2008-08-21 23:28:02 +010036#define TKIP_KEYLEN 16
37#define MIC_KEYLEN 8
38
39struct orinoco_tkip_key {
40 u8 tkip[TKIP_KEYLEN];
41 u8 tx_mic[MIC_KEYLEN];
42 u8 rx_mic[MIC_KEYLEN];
43};
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045typedef enum {
46 FIRMWARE_TYPE_AGERE,
47 FIRMWARE_TYPE_INTERSIL,
48 FIRMWARE_TYPE_SYMBOL
49} fwtype_t;
50
Andrey Borzenkov4fb30782008-10-19 12:06:11 +040051struct firmware;
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053struct orinoco_private {
54 void *card; /* Pointer to card dependent structure */
David Kilroy3994d502008-08-21 23:27:54 +010055 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int (*hard_reset)(struct orinoco_private *);
David Kilroy3994d502008-08-21 23:27:54 +010057 int (*stop_fw)(struct orinoco_private *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David Kilroyea60a6a2009-06-18 23:21:26 +010059 struct ieee80211_supported_band band;
60 struct ieee80211_channel channels[14];
61 u32 cipher_suites[3];
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 /* Synchronisation stuff */
64 spinlock_t lock;
65 int hw_unavailable;
66 struct work_struct reset_work;
67
David Kilroy31afcef2008-08-21 23:28:04 +010068 /* Interrupt tasklets */
69 struct tasklet_struct rx_tasklet;
70 struct list_head rx_list;
David Kilroy31afcef2008-08-21 23:28:04 +010071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 /* driver state */
73 int open;
74 u16 last_linkstatus;
Christoph Hellwig16739b02005-06-19 01:27:51 +020075 struct work_struct join_work;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +020076 struct work_struct wevent_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* Net device stuff */
79 struct net_device *ndev;
80 struct net_device_stats stats;
81 struct iw_statistics wstats;
82
83 /* Hardware control variables */
84 hermes_t hw;
85 u16 txfid;
86
87 /* Capabilities of the hardware/firmware */
88 fwtype_t firmware_type;
89 char fw_name[32];
90 int ibss_port;
91 int nicbuf_size;
92 u16 channel_mask;
93
94 /* Boolean capabilities */
95 unsigned int has_ibss:1;
96 unsigned int has_port3:1;
97 unsigned int has_wep:1;
98 unsigned int has_big_wep:1;
99 unsigned int has_mwo:1;
100 unsigned int has_pm:1;
101 unsigned int has_preamble:1;
102 unsigned int has_sensitivity:1;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200103 unsigned int has_hostscan:1;
David Kilroy6eecad72008-08-21 23:27:56 +0100104 unsigned int has_alt_txcntl:1;
David Kilroy01632fa2008-08-21 23:27:58 +0100105 unsigned int has_ext_scan:1;
David Kilroyd03032a2008-08-21 23:28:02 +0100106 unsigned int has_wpa:1;
David Kilroy3994d502008-08-21 23:27:54 +0100107 unsigned int do_fw_download:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned int broken_disableport:1;
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200109 unsigned int broken_monitor:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /* Configuration paramaters */
David Kilroy5217c572009-06-18 23:21:32 +0100112 enum nl80211_iftype iw_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 int prefer_port3;
David Kilroy4ae6ee22008-08-21 23:27:59 +0100114 u16 encode_alg, wep_restrict, tx_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct orinoco_key keys[ORINOCO_MAX_KEYS];
116 int bitratemode;
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300117 char nick[IW_ESSID_MAX_SIZE+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 char desired_essid[IW_ESSID_MAX_SIZE+1];
Christoph Hellwig16739b02005-06-19 01:27:51 +0200119 char desired_bssid[ETH_ALEN];
120 int bssid_fixed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 u16 frag_thresh, mwo_robust;
122 u16 channel;
123 u16 ap_density, rts_thresh;
124 u16 pm_on, pm_mcast, pm_period, pm_timeout;
125 u16 preamble;
126#ifdef WIRELESS_SPY
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300127 struct iw_spy_data spy_data; /* iwspy support */
Pavel Roskin343c6862005-09-09 18:43:02 -0400128 struct iw_public_data wireless_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif
130
131 /* Configuration dependent variables */
132 int port_type, createibss;
133 int promiscuous, mc_count;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200134
135 /* Scanning support */
David Kilroyc63cdbe2009-06-18 23:21:33 +0100136 struct cfg80211_scan_request *scan_request;
137 struct work_struct process_scan;
138 struct list_head scan_list;
139 spinlock_t scan_lock; /* protects the scan list */
David Kilroyd03032a2008-08-21 23:28:02 +0100140
141 /* WPA support */
142 u8 *wpa_ie;
143 int wpa_ie_len;
144
145 struct orinoco_tkip_key tkip_key[ORINOCO_MAX_KEYS];
David Kilroy23edcc42008-08-21 23:28:05 +0100146 struct crypto_hash *rx_tfm_mic;
147 struct crypto_hash *tx_tfm_mic;
David Kilroyd03032a2008-08-21 23:28:02 +0100148
149 unsigned int wpa_enabled:1;
150 unsigned int tkip_cm_active:1;
151 unsigned int key_mgmt:3;
Andrey Borzenkov4fb30782008-10-19 12:06:11 +0400152
Andrey Borzenkov2bfc5cb2009-02-28 23:09:09 +0300153#if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP)
David Kilroy2cea7b22008-11-22 10:37:26 +0000154 /* Cached in memory firmware to use during ->resume. */
155 const struct firmware *cached_pri_fw;
Andrey Borzenkov4fb30782008-10-19 12:06:11 +0400156 const struct firmware *cached_fw;
Andrey Borzenkov2bfc5cb2009-02-28 23:09:09 +0300157#endif
David Kilroy39d1ffe2008-11-22 10:37:28 +0000158
159 struct notifier_block pm_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
162#ifdef ORINOCO_DEBUG
163extern int orinoco_debug;
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300164#define DEBUG(n, args...) do { \
165 if (orinoco_debug > (n)) \
166 printk(KERN_DEBUG args); \
167} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#else
169#define DEBUG(n, args...) do { } while (0)
170#endif /* ORINOCO_DEBUG */
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/********************************************************************/
173/* Exported prototypes */
174/********************************************************************/
175
David Kilroya2608362009-06-18 23:21:23 +0100176extern struct orinoco_private *alloc_orinocodev(
David Kilroy3994d502008-08-21 23:27:54 +0100177 int sizeof_card, struct device *device,
178 int (*hard_reset)(struct orinoco_private *),
179 int (*stop_fw)(struct orinoco_private *, int));
David Kilroya2608362009-06-18 23:21:23 +0100180extern void free_orinocodev(struct orinoco_private *priv);
David Kilroy8e638262009-06-18 23:21:24 +0100181extern int orinoco_init(struct orinoco_private *priv);
David Kilroy53819562009-06-18 23:21:28 +0100182extern int orinoco_if_add(struct orinoco_private *priv,
183 unsigned long base_addr,
184 unsigned int irq);
185extern void orinoco_if_del(struct orinoco_private *priv);
David Kilroy6415f7d2009-06-18 23:21:30 +0100186extern int orinoco_up(struct orinoco_private *priv);
187extern void orinoco_down(struct orinoco_private *priv);
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300188extern irqreturn_t orinoco_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/********************************************************************/
191/* Locking and synchronization functions */
192/********************************************************************/
193
Pavel Roskin821fe682006-08-15 20:45:00 -0400194static inline int orinoco_lock(struct orinoco_private *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 unsigned long *flags)
196{
197 spin_lock_irqsave(&priv->lock, *flags);
198 if (priv->hw_unavailable) {
199 DEBUG(1, "orinoco_lock() called with hw_unavailable (dev=%p)\n",
200 priv->ndev);
201 spin_unlock_irqrestore(&priv->lock, *flags);
202 return -EBUSY;
203 }
204 return 0;
205}
206
Pavel Roskin821fe682006-08-15 20:45:00 -0400207static inline void orinoco_unlock(struct orinoco_private *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned long *flags)
209{
210 spin_unlock_irqrestore(&priv->lock, *flags);
211}
212
David Kilroyea60a6a2009-06-18 23:21:26 +0100213/*** Navigate from net_device to orinoco_private ***/
214static inline struct orinoco_private *ndev_priv(struct net_device *dev)
215{
216 struct wireless_dev *wdev = netdev_priv(dev);
217 return wdev_priv(wdev);
218}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#endif /* _ORINOCO_H */