Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* orinoco.h |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 2 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Common definitions to all pieces of the various orinoco |
| 4 | * drivers |
| 5 | */ |
| 6 | |
| 7 | #ifndef _ORINOCO_H |
| 8 | #define _ORINOCO_H |
| 9 | |
Pavel Roskin | f298a2e | 2006-04-07 04:11:02 -0400 | [diff] [blame] | 10 | #define DRIVER_VERSION "0.15" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
David Kilroy | 31afcef | 2008-08-21 23:28:04 +0100 | [diff] [blame] | 12 | #include <linux/interrupt.h> |
David Kilroy | 39d1ffe | 2008-11-22 10:37:28 +0000 | [diff] [blame] | 13 | #include <linux/suspend.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/netdevice.h> |
| 15 | #include <linux/wireless.h> |
Pavel Roskin | 343c686 | 2005-09-09 18:43:02 -0400 | [diff] [blame] | 16 | #include <net/iw_handler.h> |
David Kilroy | ea60a6a | 2009-06-18 23:21:26 +0100 | [diff] [blame] | 17 | #include <net/cfg80211.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | #include "hermes.h" |
| 20 | |
| 21 | /* To enable debug messages */ |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 22 | /*#define ORINOCO_DEBUG 3*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 24 | #define WIRELESS_SPY /* enable iwspy support */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Christoph Hellwig | 16739b0 | 2005-06-19 01:27:51 +0200 | [diff] [blame] | 26 | #define MAX_SCAN_LEN 4096 |
| 27 | |
David Kilroy | 5c9f41e | 2009-08-05 21:23:28 +0100 | [diff] [blame] | 28 | #define ORINOCO_SEQ_LEN 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #define ORINOCO_MAX_KEY_SIZE 14 |
| 30 | #define ORINOCO_MAX_KEYS 4 |
| 31 | |
| 32 | struct orinoco_key { |
Pavel Roskin | d133ae4 | 2005-09-23 04:18:06 -0400 | [diff] [blame] | 33 | __le16 len; /* always stored as little-endian */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | char data[ORINOCO_MAX_KEY_SIZE]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 35 | } __packed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
David Kilroy | d03032a | 2008-08-21 23:28:02 +0100 | [diff] [blame] | 37 | #define TKIP_KEYLEN 16 |
| 38 | #define MIC_KEYLEN 8 |
| 39 | |
| 40 | struct orinoco_tkip_key { |
| 41 | u8 tkip[TKIP_KEYLEN]; |
| 42 | u8 tx_mic[MIC_KEYLEN]; |
| 43 | u8 rx_mic[MIC_KEYLEN]; |
| 44 | }; |
| 45 | |
David Kilroy | 5c9f41e | 2009-08-05 21:23:28 +0100 | [diff] [blame] | 46 | enum orinoco_alg { |
| 47 | ORINOCO_ALG_NONE, |
| 48 | ORINOCO_ALG_WEP, |
| 49 | ORINOCO_ALG_TKIP |
| 50 | }; |
| 51 | |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame^] | 52 | enum fwtype { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | FIRMWARE_TYPE_AGERE, |
| 54 | FIRMWARE_TYPE_INTERSIL, |
| 55 | FIRMWARE_TYPE_SYMBOL |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame^] | 56 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Andrey Borzenkov | 4fb3078 | 2008-10-19 12:06:11 +0400 | [diff] [blame] | 58 | struct firmware; |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | struct orinoco_private { |
| 61 | void *card; /* Pointer to card dependent structure */ |
David Kilroy | 3994d50 | 2008-08-21 23:27:54 +0100 | [diff] [blame] | 62 | struct device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | int (*hard_reset)(struct orinoco_private *); |
David Kilroy | 3994d50 | 2008-08-21 23:27:54 +0100 | [diff] [blame] | 64 | int (*stop_fw)(struct orinoco_private *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
David Kilroy | ea60a6a | 2009-06-18 23:21:26 +0100 | [diff] [blame] | 66 | struct ieee80211_supported_band band; |
| 67 | struct ieee80211_channel channels[14]; |
| 68 | u32 cipher_suites[3]; |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | /* Synchronisation stuff */ |
| 71 | spinlock_t lock; |
| 72 | int hw_unavailable; |
| 73 | struct work_struct reset_work; |
| 74 | |
David Kilroy | 31afcef | 2008-08-21 23:28:04 +0100 | [diff] [blame] | 75 | /* Interrupt tasklets */ |
| 76 | struct tasklet_struct rx_tasklet; |
| 77 | struct list_head rx_list; |
David Kilroy | 31afcef | 2008-08-21 23:28:04 +0100 | [diff] [blame] | 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* driver state */ |
| 80 | int open; |
| 81 | u16 last_linkstatus; |
Christoph Hellwig | 16739b0 | 2005-06-19 01:27:51 +0200 | [diff] [blame] | 82 | struct work_struct join_work; |
Christoph Hellwig | 95dd91f | 2005-06-19 01:27:56 +0200 | [diff] [blame] | 83 | struct work_struct wevent_work; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | /* Net device stuff */ |
| 86 | struct net_device *ndev; |
| 87 | struct net_device_stats stats; |
| 88 | struct iw_statistics wstats; |
| 89 | |
| 90 | /* Hardware control variables */ |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame^] | 91 | struct hermes hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | u16 txfid; |
| 93 | |
| 94 | /* Capabilities of the hardware/firmware */ |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame^] | 95 | enum fwtype firmware_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | int ibss_port; |
| 97 | int nicbuf_size; |
| 98 | u16 channel_mask; |
| 99 | |
| 100 | /* Boolean capabilities */ |
| 101 | unsigned int has_ibss:1; |
| 102 | unsigned int has_port3:1; |
| 103 | unsigned int has_wep:1; |
| 104 | unsigned int has_big_wep:1; |
| 105 | unsigned int has_mwo:1; |
| 106 | unsigned int has_pm:1; |
| 107 | unsigned int has_preamble:1; |
| 108 | unsigned int has_sensitivity:1; |
Christoph Hellwig | 95dd91f | 2005-06-19 01:27:56 +0200 | [diff] [blame] | 109 | unsigned int has_hostscan:1; |
David Kilroy | 6eecad7 | 2008-08-21 23:27:56 +0100 | [diff] [blame] | 110 | unsigned int has_alt_txcntl:1; |
David Kilroy | 01632fa | 2008-08-21 23:27:58 +0100 | [diff] [blame] | 111 | unsigned int has_ext_scan:1; |
David Kilroy | d03032a | 2008-08-21 23:28:02 +0100 | [diff] [blame] | 112 | unsigned int has_wpa:1; |
David Kilroy | 3994d50 | 2008-08-21 23:27:54 +0100 | [diff] [blame] | 113 | unsigned int do_fw_download:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | unsigned int broken_disableport:1; |
Christoph Hellwig | 98c4cae | 2005-06-19 01:28:06 +0200 | [diff] [blame] | 115 | unsigned int broken_monitor:1; |
David Kilroy | bb7e43c | 2009-08-05 21:23:27 +0100 | [diff] [blame] | 116 | unsigned int prefer_port3:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | /* Configuration paramaters */ |
David Kilroy | 5217c57 | 2009-06-18 23:21:32 +0100 | [diff] [blame] | 119 | enum nl80211_iftype iw_mode; |
David Kilroy | 5c9f41e | 2009-08-05 21:23:28 +0100 | [diff] [blame] | 120 | enum orinoco_alg encode_alg; |
| 121 | u16 wep_restrict, tx_key; |
David Kilroy | 4af198f | 2009-08-05 21:23:32 +0100 | [diff] [blame] | 122 | struct key_params keys[ORINOCO_MAX_KEYS]; |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | int bitratemode; |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame^] | 125 | char nick[IW_ESSID_MAX_SIZE + 1]; |
| 126 | char desired_essid[IW_ESSID_MAX_SIZE + 1]; |
Christoph Hellwig | 16739b0 | 2005-06-19 01:27:51 +0200 | [diff] [blame] | 127 | char desired_bssid[ETH_ALEN]; |
| 128 | int bssid_fixed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | u16 frag_thresh, mwo_robust; |
| 130 | u16 channel; |
| 131 | u16 ap_density, rts_thresh; |
| 132 | u16 pm_on, pm_mcast, pm_period, pm_timeout; |
| 133 | u16 preamble; |
David Kilroy | c3d4150 | 2010-04-19 08:16:21 +0100 | [diff] [blame] | 134 | u16 short_retry_limit, long_retry_limit; |
| 135 | u16 retry_lifetime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | #ifdef WIRELESS_SPY |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 137 | struct iw_spy_data spy_data; /* iwspy support */ |
Pavel Roskin | 343c686 | 2005-09-09 18:43:02 -0400 | [diff] [blame] | 138 | struct iw_public_data wireless_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | #endif |
| 140 | |
| 141 | /* Configuration dependent variables */ |
| 142 | int port_type, createibss; |
| 143 | int promiscuous, mc_count; |
Christoph Hellwig | 95dd91f | 2005-06-19 01:27:56 +0200 | [diff] [blame] | 144 | |
| 145 | /* Scanning support */ |
David Kilroy | c63cdbe | 2009-06-18 23:21:33 +0100 | [diff] [blame] | 146 | struct cfg80211_scan_request *scan_request; |
| 147 | struct work_struct process_scan; |
| 148 | struct list_head scan_list; |
| 149 | spinlock_t scan_lock; /* protects the scan list */ |
David Kilroy | d03032a | 2008-08-21 23:28:02 +0100 | [diff] [blame] | 150 | |
| 151 | /* WPA support */ |
| 152 | u8 *wpa_ie; |
| 153 | int wpa_ie_len; |
| 154 | |
David Kilroy | 23edcc4 | 2008-08-21 23:28:05 +0100 | [diff] [blame] | 155 | struct crypto_hash *rx_tfm_mic; |
| 156 | struct crypto_hash *tx_tfm_mic; |
David Kilroy | d03032a | 2008-08-21 23:28:02 +0100 | [diff] [blame] | 157 | |
| 158 | unsigned int wpa_enabled:1; |
| 159 | unsigned int tkip_cm_active:1; |
| 160 | unsigned int key_mgmt:3; |
Andrey Borzenkov | 4fb3078 | 2008-10-19 12:06:11 +0400 | [diff] [blame] | 161 | |
Andrey Borzenkov | 2bfc5cb | 2009-02-28 23:09:09 +0300 | [diff] [blame] | 162 | #if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP) |
David Kilroy | 2cea7b2 | 2008-11-22 10:37:26 +0000 | [diff] [blame] | 163 | /* Cached in memory firmware to use during ->resume. */ |
| 164 | const struct firmware *cached_pri_fw; |
Andrey Borzenkov | 4fb3078 | 2008-10-19 12:06:11 +0400 | [diff] [blame] | 165 | const struct firmware *cached_fw; |
Andrey Borzenkov | 2bfc5cb | 2009-02-28 23:09:09 +0300 | [diff] [blame] | 166 | #endif |
David Kilroy | 39d1ffe | 2008-11-22 10:37:28 +0000 | [diff] [blame] | 167 | |
| 168 | struct notifier_block pm_notifier; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | }; |
| 170 | |
| 171 | #ifdef ORINOCO_DEBUG |
| 172 | extern int orinoco_debug; |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 173 | #define DEBUG(n, args...) do { \ |
| 174 | if (orinoco_debug > (n)) \ |
| 175 | printk(KERN_DEBUG args); \ |
| 176 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | #else |
| 178 | #define DEBUG(n, args...) do { } while (0) |
| 179 | #endif /* ORINOCO_DEBUG */ |
| 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /********************************************************************/ |
| 182 | /* Exported prototypes */ |
| 183 | /********************************************************************/ |
| 184 | |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 185 | extern struct orinoco_private *alloc_orinocodev( |
David Kilroy | 3994d50 | 2008-08-21 23:27:54 +0100 | [diff] [blame] | 186 | int sizeof_card, struct device *device, |
| 187 | int (*hard_reset)(struct orinoco_private *), |
| 188 | int (*stop_fw)(struct orinoco_private *, int)); |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 189 | extern void free_orinocodev(struct orinoco_private *priv); |
David Kilroy | 8e63826 | 2009-06-18 23:21:24 +0100 | [diff] [blame] | 190 | extern int orinoco_init(struct orinoco_private *priv); |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 191 | extern int orinoco_if_add(struct orinoco_private *priv, |
| 192 | unsigned long base_addr, |
David Kilroy | 593ef09 | 2010-05-01 14:05:39 +0100 | [diff] [blame] | 193 | unsigned int irq, |
| 194 | const struct net_device_ops *ops); |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 195 | extern void orinoco_if_del(struct orinoco_private *priv); |
David Kilroy | 6415f7d | 2009-06-18 23:21:30 +0100 | [diff] [blame] | 196 | extern int orinoco_up(struct orinoco_private *priv); |
| 197 | extern void orinoco_down(struct orinoco_private *priv); |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 198 | extern irqreturn_t orinoco_interrupt(int irq, void *dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame^] | 200 | extern void __orinoco_ev_info(struct net_device *dev, struct hermes *hw); |
| 201 | extern void __orinoco_ev_rx(struct net_device *dev, struct hermes *hw); |
David Kilroy | 9afac70 | 2010-05-01 14:05:41 +0100 | [diff] [blame] | 202 | |
David Kilroy | bac6faf | 2010-05-04 22:54:41 +0100 | [diff] [blame] | 203 | int orinoco_process_xmit_skb(struct sk_buff *skb, |
| 204 | struct net_device *dev, |
| 205 | struct orinoco_private *priv, |
| 206 | int *tx_control, |
| 207 | u8 *mic); |
| 208 | |
David Kilroy | 593ef09 | 2010-05-01 14:05:39 +0100 | [diff] [blame] | 209 | /* Common ndo functions exported for reuse by orinoco_usb */ |
| 210 | int orinoco_open(struct net_device *dev); |
| 211 | int orinoco_stop(struct net_device *dev); |
| 212 | struct net_device_stats *orinoco_get_stats(struct net_device *dev); |
| 213 | void orinoco_set_multicast_list(struct net_device *dev); |
| 214 | int orinoco_change_mtu(struct net_device *dev, int new_mtu); |
| 215 | void orinoco_tx_timeout(struct net_device *dev); |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /********************************************************************/ |
| 218 | /* Locking and synchronization functions */ |
| 219 | /********************************************************************/ |
| 220 | |
Pavel Roskin | 821fe68 | 2006-08-15 20:45:00 -0400 | [diff] [blame] | 221 | static inline int orinoco_lock(struct orinoco_private *priv, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | unsigned long *flags) |
| 223 | { |
David Kilroy | bcad6e8 | 2010-05-01 14:05:40 +0100 | [diff] [blame] | 224 | priv->hw.ops->lock_irqsave(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | if (priv->hw_unavailable) { |
| 226 | DEBUG(1, "orinoco_lock() called with hw_unavailable (dev=%p)\n", |
| 227 | priv->ndev); |
David Kilroy | bcad6e8 | 2010-05-01 14:05:40 +0100 | [diff] [blame] | 228 | priv->hw.ops->unlock_irqrestore(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | return -EBUSY; |
| 230 | } |
| 231 | return 0; |
| 232 | } |
| 233 | |
Pavel Roskin | 821fe68 | 2006-08-15 20:45:00 -0400 | [diff] [blame] | 234 | static inline void orinoco_unlock(struct orinoco_private *priv, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | unsigned long *flags) |
| 236 | { |
David Kilroy | bcad6e8 | 2010-05-01 14:05:40 +0100 | [diff] [blame] | 237 | priv->hw.ops->unlock_irqrestore(&priv->lock, flags); |
| 238 | } |
| 239 | |
| 240 | static inline void orinoco_lock_irq(struct orinoco_private *priv) |
| 241 | { |
| 242 | priv->hw.ops->lock_irq(&priv->lock); |
| 243 | } |
| 244 | |
| 245 | static inline void orinoco_unlock_irq(struct orinoco_private *priv) |
| 246 | { |
| 247 | priv->hw.ops->unlock_irq(&priv->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
| 249 | |
David Kilroy | ea60a6a | 2009-06-18 23:21:26 +0100 | [diff] [blame] | 250 | /*** Navigate from net_device to orinoco_private ***/ |
| 251 | static inline struct orinoco_private *ndev_priv(struct net_device *dev) |
| 252 | { |
| 253 | struct wireless_dev *wdev = netdev_priv(dev); |
| 254 | return wdev_priv(wdev); |
| 255 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | #endif /* _ORINOCO_H */ |