ipw2100.h 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167
  1. /******************************************************************************
  2. Copyright(c) 2003 - 2005 Intel Corporation. All rights reserved.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of version 2 of the GNU General Public License as
  5. published by the Free Software Foundation.
  6. This program is distributed in the hope that it will be useful, but WITHOUT
  7. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  8. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  9. more details.
  10. You should have received a copy of the GNU General Public License along with
  11. this program; if not, write to the Free Software Foundation, Inc., 59
  12. Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  13. The full GNU General Public License is included in this distribution in the
  14. file called LICENSE.
  15. Contact Information:
  16. James P. Ketrenos <ipw2100-admin@linux.intel.com>
  17. Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  18. ******************************************************************************/
  19. #ifndef _IPW2100_H
  20. #define _IPW2100_H
  21. #include <linux/sched.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/netdevice.h>
  24. #include <linux/etherdevice.h>
  25. #include <linux/list.h>
  26. #include <linux/delay.h>
  27. #include <linux/skbuff.h>
  28. #include <asm/io.h>
  29. #include <linux/socket.h>
  30. #include <linux/if_arp.h>
  31. #include <linux/wireless.h>
  32. #include <linux/version.h>
  33. #include <net/iw_handler.h> // new driver API
  34. #include <net/ieee80211.h>
  35. #include <linux/workqueue.h>
  36. struct ipw2100_priv;
  37. struct ipw2100_tx_packet;
  38. struct ipw2100_rx_packet;
  39. #define IPW_DL_UNINIT 0x80000000
  40. #define IPW_DL_NONE 0x00000000
  41. #define IPW_DL_ALL 0x7FFFFFFF
  42. /*
  43. * To use the debug system;
  44. *
  45. * If you are defining a new debug classification, simply add it to the #define
  46. * list here in the form of:
  47. *
  48. * #define IPW_DL_xxxx VALUE
  49. *
  50. * shifting value to the left one bit from the previous entry. xxxx should be
  51. * the name of the classification (for example, WEP)
  52. *
  53. * You then need to either add a IPW2100_xxxx_DEBUG() macro definition for your
  54. * classification, or use IPW_DEBUG(IPW_DL_xxxx, ...) whenever you want
  55. * to send output to that classification.
  56. *
  57. * To add your debug level to the list of levels seen when you perform
  58. *
  59. * % cat /proc/net/ipw2100/debug_level
  60. *
  61. * you simply need to add your entry to the ipw2100_debug_levels array.
  62. *
  63. * If you do not see debug_level in /proc/net/ipw2100 then you do not have
  64. * CONFIG_IPW_DEBUG defined in your kernel configuration
  65. *
  66. */
  67. #define IPW_DL_ERROR (1<<0)
  68. #define IPW_DL_WARNING (1<<1)
  69. #define IPW_DL_INFO (1<<2)
  70. #define IPW_DL_WX (1<<3)
  71. #define IPW_DL_HC (1<<5)
  72. #define IPW_DL_STATE (1<<6)
  73. #define IPW_DL_NOTIF (1<<10)
  74. #define IPW_DL_SCAN (1<<11)
  75. #define IPW_DL_ASSOC (1<<12)
  76. #define IPW_DL_DROP (1<<13)
  77. #define IPW_DL_IOCTL (1<<14)
  78. #define IPW_DL_RF_KILL (1<<17)
  79. #define IPW_DL_MANAGE (1<<15)
  80. #define IPW_DL_FW (1<<16)
  81. #define IPW_DL_FRAG (1<<21)
  82. #define IPW_DL_WEP (1<<22)
  83. #define IPW_DL_TX (1<<23)
  84. #define IPW_DL_RX (1<<24)
  85. #define IPW_DL_ISR (1<<25)
  86. #define IPW_DL_IO (1<<26)
  87. #define IPW_DL_TRACE (1<<28)
  88. #define IPW_DEBUG_ERROR(f, a...) printk(KERN_ERR DRV_NAME ": " f, ## a)
  89. #define IPW_DEBUG_WARNING(f, a...) printk(KERN_WARNING DRV_NAME ": " f, ## a)
  90. #define IPW_DEBUG_INFO(f...) IPW_DEBUG(IPW_DL_INFO, ## f)
  91. #define IPW_DEBUG_WX(f...) IPW_DEBUG(IPW_DL_WX, ## f)
  92. #define IPW_DEBUG_SCAN(f...) IPW_DEBUG(IPW_DL_SCAN, ## f)
  93. #define IPW_DEBUG_NOTIF(f...) IPW_DEBUG(IPW_DL_NOTIF, ## f)
  94. #define IPW_DEBUG_TRACE(f...) IPW_DEBUG(IPW_DL_TRACE, ## f)
  95. #define IPW_DEBUG_RX(f...) IPW_DEBUG(IPW_DL_RX, ## f)
  96. #define IPW_DEBUG_TX(f...) IPW_DEBUG(IPW_DL_TX, ## f)
  97. #define IPW_DEBUG_ISR(f...) IPW_DEBUG(IPW_DL_ISR, ## f)
  98. #define IPW_DEBUG_MANAGEMENT(f...) IPW_DEBUG(IPW_DL_MANAGE, ## f)
  99. #define IPW_DEBUG_WEP(f...) IPW_DEBUG(IPW_DL_WEP, ## f)
  100. #define IPW_DEBUG_HC(f...) IPW_DEBUG(IPW_DL_HC, ## f)
  101. #define IPW_DEBUG_FRAG(f...) IPW_DEBUG(IPW_DL_FRAG, ## f)
  102. #define IPW_DEBUG_FW(f...) IPW_DEBUG(IPW_DL_FW, ## f)
  103. #define IPW_DEBUG_RF_KILL(f...) IPW_DEBUG(IPW_DL_RF_KILL, ## f)
  104. #define IPW_DEBUG_DROP(f...) IPW_DEBUG(IPW_DL_DROP, ## f)
  105. #define IPW_DEBUG_IO(f...) IPW_DEBUG(IPW_DL_IO, ## f)
  106. #define IPW_DEBUG_IOCTL(f...) IPW_DEBUG(IPW_DL_IOCTL, ## f)
  107. #define IPW_DEBUG_STATE(f, a...) IPW_DEBUG(IPW_DL_STATE | IPW_DL_ASSOC | IPW_DL_INFO, f, ## a)
  108. #define IPW_DEBUG_ASSOC(f, a...) IPW_DEBUG(IPW_DL_ASSOC | IPW_DL_INFO, f, ## a)
  109. enum {
  110. IPW_HW_STATE_DISABLED = 1,
  111. IPW_HW_STATE_ENABLED = 0
  112. };
  113. struct ssid_context {
  114. char ssid[IW_ESSID_MAX_SIZE + 1];
  115. int ssid_len;
  116. unsigned char bssid[ETH_ALEN];
  117. int port_type;
  118. int channel;
  119. };
  120. extern const char *port_type_str[];
  121. extern const char *band_str[];
  122. #define NUMBER_OF_BD_PER_COMMAND_PACKET 1
  123. #define NUMBER_OF_BD_PER_DATA_PACKET 2
  124. #define IPW_MAX_BDS 6
  125. #define NUMBER_OF_OVERHEAD_BDS_PER_PACKETR 2
  126. #define NUMBER_OF_BDS_TO_LEAVE_FOR_COMMANDS 1
  127. #define REQUIRED_SPACE_IN_RING_FOR_COMMAND_PACKET \
  128. (IPW_BD_QUEUE_W_R_MIN_SPARE + NUMBER_OF_BD_PER_COMMAND_PACKET)
  129. struct bd_status {
  130. union {
  131. struct { u8 nlf:1, txType:2, intEnabled:1, reserved:4;} fields;
  132. u8 field;
  133. } info;
  134. } __attribute__ ((packed));
  135. struct ipw2100_bd {
  136. u32 host_addr;
  137. u32 buf_length;
  138. struct bd_status status;
  139. /* number of fragments for frame (should be set only for
  140. * 1st TBD) */
  141. u8 num_fragments;
  142. u8 reserved[6];
  143. } __attribute__ ((packed));
  144. #define IPW_BD_QUEUE_LENGTH(n) (1<<n)
  145. #define IPW_BD_ALIGNMENT(L) (L*sizeof(struct ipw2100_bd))
  146. #define IPW_BD_STATUS_TX_FRAME_802_3 0x00
  147. #define IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT 0x01
  148. #define IPW_BD_STATUS_TX_FRAME_COMMAND 0x02
  149. #define IPW_BD_STATUS_TX_FRAME_802_11 0x04
  150. #define IPW_BD_STATUS_TX_INTERRUPT_ENABLE 0x08
  151. struct ipw2100_bd_queue {
  152. /* driver (virtual) pointer to queue */
  153. struct ipw2100_bd *drv;
  154. /* firmware (physical) pointer to queue */
  155. dma_addr_t nic;
  156. /* Length of phy memory allocated for BDs */
  157. u32 size;
  158. /* Number of BDs in queue (and in array) */
  159. u32 entries;
  160. /* Number of available BDs (invalid for NIC BDs) */
  161. u32 available;
  162. /* Offset of oldest used BD in array (next one to
  163. * check for completion) */
  164. u32 oldest;
  165. /* Offset of next available (unused) BD */
  166. u32 next;
  167. };
  168. #define RX_QUEUE_LENGTH 256
  169. #define TX_QUEUE_LENGTH 256
  170. #define HW_QUEUE_LENGTH 256
  171. #define TX_PENDED_QUEUE_LENGTH (TX_QUEUE_LENGTH / NUMBER_OF_BD_PER_DATA_PACKET)
  172. #define STATUS_TYPE_MASK 0x0000000f
  173. #define COMMAND_STATUS_VAL 0
  174. #define STATUS_CHANGE_VAL 1
  175. #define P80211_DATA_VAL 2
  176. #define P8023_DATA_VAL 3
  177. #define HOST_NOTIFICATION_VAL 4
  178. #define IPW2100_RSSI_TO_DBM (-98)
  179. struct ipw2100_status {
  180. u32 frame_size;
  181. u16 status_fields;
  182. u8 flags;
  183. #define IPW_STATUS_FLAG_DECRYPTED (1<<0)
  184. #define IPW_STATUS_FLAG_WEP_ENCRYPTED (1<<1)
  185. #define IPW_STATUS_FLAG_CRC_ERROR (1<<2)
  186. u8 rssi;
  187. } __attribute__ ((packed));
  188. struct ipw2100_status_queue {
  189. /* driver (virtual) pointer to queue */
  190. struct ipw2100_status *drv;
  191. /* firmware (physical) pointer to queue */
  192. dma_addr_t nic;
  193. /* Length of phy memory allocated for BDs */
  194. u32 size;
  195. };
  196. #define HOST_COMMAND_PARAMS_REG_LEN 100
  197. #define CMD_STATUS_PARAMS_REG_LEN 3
  198. #define IPW_WPA_CAPABILITIES 0x1
  199. #define IPW_WPA_LISTENINTERVAL 0x2
  200. #define IPW_WPA_AP_ADDRESS 0x4
  201. #define IPW_MAX_VAR_IE_LEN ((HOST_COMMAND_PARAMS_REG_LEN - 4) * sizeof(u32))
  202. struct ipw2100_wpa_assoc_frame {
  203. u16 fixed_ie_mask;
  204. struct {
  205. u16 capab_info;
  206. u16 listen_interval;
  207. u8 current_ap[ETH_ALEN];
  208. } fixed_ies;
  209. u32 var_ie_len;
  210. u8 var_ie[IPW_MAX_VAR_IE_LEN];
  211. };
  212. #define IPW_BSS 1
  213. #define IPW_MONITOR 2
  214. #define IPW_IBSS 3
  215. /**
  216. * @struct _tx_cmd - HWCommand
  217. * @brief H/W command structure.
  218. */
  219. struct ipw2100_cmd_header {
  220. u32 host_command_reg;
  221. u32 host_command_reg1;
  222. u32 sequence;
  223. u32 host_command_len_reg;
  224. u32 host_command_params_reg[HOST_COMMAND_PARAMS_REG_LEN];
  225. u32 cmd_status_reg;
  226. u32 cmd_status_params_reg[CMD_STATUS_PARAMS_REG_LEN];
  227. u32 rxq_base_ptr;
  228. u32 rxq_next_ptr;
  229. u32 rxq_host_ptr;
  230. u32 txq_base_ptr;
  231. u32 txq_next_ptr;
  232. u32 txq_host_ptr;
  233. u32 tx_status_reg;
  234. u32 reserved;
  235. u32 status_change_reg;
  236. u32 reserved1[3];
  237. u32 *ordinal1_ptr;
  238. u32 *ordinal2_ptr;
  239. } __attribute__ ((packed));
  240. struct ipw2100_data_header {
  241. u32 host_command_reg;
  242. u32 host_command_reg1;
  243. u8 encrypted; // BOOLEAN in win! TRUE if frame is enc by driver
  244. u8 needs_encryption; // BOOLEAN in win! TRUE if frma need to be enc in NIC
  245. u8 wep_index; // 0 no key, 1-4 key index, 0xff immediate key
  246. u8 key_size; // 0 no imm key, 0x5 64bit encr, 0xd 128bit encr, 0x10 128bit encr and 128bit IV
  247. u8 key[16];
  248. u8 reserved[10]; // f/w reserved
  249. u8 src_addr[ETH_ALEN];
  250. u8 dst_addr[ETH_ALEN];
  251. u16 fragment_size;
  252. } __attribute__ ((packed));
  253. /* Host command data structure */
  254. struct host_command {
  255. u32 host_command; // COMMAND ID
  256. u32 host_command1; // COMMAND ID
  257. u32 host_command_sequence; // UNIQUE COMMAND NUMBER (ID)
  258. u32 host_command_length; // LENGTH
  259. u32 host_command_parameters[HOST_COMMAND_PARAMS_REG_LEN]; // COMMAND PARAMETERS
  260. } __attribute__ ((packed));
  261. typedef enum {
  262. POWER_ON_RESET,
  263. EXIT_POWER_DOWN_RESET,
  264. SW_RESET,
  265. EEPROM_RW,
  266. SW_RE_INIT
  267. } ipw2100_reset_event;
  268. enum {
  269. COMMAND = 0xCAFE,
  270. DATA,
  271. RX
  272. };
  273. struct ipw2100_tx_packet {
  274. int type;
  275. int index;
  276. union {
  277. struct { /* COMMAND */
  278. struct ipw2100_cmd_header* cmd;
  279. dma_addr_t cmd_phys;
  280. } c_struct;
  281. struct { /* DATA */
  282. struct ipw2100_data_header* data;
  283. dma_addr_t data_phys;
  284. struct ieee80211_txb *txb;
  285. } d_struct;
  286. } info;
  287. int jiffy_start;
  288. struct list_head list;
  289. };
  290. struct ipw2100_rx_packet {
  291. struct ipw2100_rx *rxp;
  292. dma_addr_t dma_addr;
  293. int jiffy_start;
  294. struct sk_buff *skb;
  295. struct list_head list;
  296. };
  297. #define FRAG_DISABLED (1<<31)
  298. #define RTS_DISABLED (1<<31)
  299. #define MAX_RTS_THRESHOLD 2304U
  300. #define MIN_RTS_THRESHOLD 1U
  301. #define DEFAULT_RTS_THRESHOLD 1000U
  302. #define DEFAULT_BEACON_INTERVAL 100U
  303. #define DEFAULT_SHORT_RETRY_LIMIT 7U
  304. #define DEFAULT_LONG_RETRY_LIMIT 4U
  305. struct ipw2100_ordinals {
  306. u32 table1_addr;
  307. u32 table2_addr;
  308. u32 table1_size;
  309. u32 table2_size;
  310. };
  311. /* Host Notification header */
  312. struct ipw2100_notification {
  313. u32 hnhdr_subtype; /* type of host notification */
  314. u32 hnhdr_size; /* size in bytes of data
  315. or number of entries, if table.
  316. Does NOT include header */
  317. } __attribute__ ((packed));
  318. #define MAX_KEY_SIZE 16
  319. #define MAX_KEYS 8
  320. #define IPW2100_WEP_ENABLE (1<<1)
  321. #define IPW2100_WEP_DROP_CLEAR (1<<2)
  322. #define IPW_NONE_CIPHER (1<<0)
  323. #define IPW_WEP40_CIPHER (1<<1)
  324. #define IPW_TKIP_CIPHER (1<<2)
  325. #define IPW_CCMP_CIPHER (1<<4)
  326. #define IPW_WEP104_CIPHER (1<<5)
  327. #define IPW_CKIP_CIPHER (1<<6)
  328. #define IPW_AUTH_OPEN 0
  329. #define IPW_AUTH_SHARED 1
  330. struct statistic {
  331. int value;
  332. int hi;
  333. int lo;
  334. };
  335. #define INIT_STAT(x) do { \
  336. (x)->value = (x)->hi = 0; \
  337. (x)->lo = 0x7fffffff; \
  338. } while (0)
  339. #define SET_STAT(x,y) do { \
  340. (x)->value = y; \
  341. if ((x)->value > (x)->hi) (x)->hi = (x)->value; \
  342. if ((x)->value < (x)->lo) (x)->lo = (x)->value; \
  343. } while (0)
  344. #define INC_STAT(x) do { if (++(x)->value > (x)->hi) (x)->hi = (x)->value; } \
  345. while (0)
  346. #define DEC_STAT(x) do { if (--(x)->value < (x)->lo) (x)->lo = (x)->value; } \
  347. while (0)
  348. #define IPW2100_ERROR_QUEUE 5
  349. /* Power management code: enable or disable? */
  350. enum {
  351. #ifdef CONFIG_PM
  352. IPW2100_PM_DISABLED = 0,
  353. PM_STATE_SIZE = 16,
  354. #else
  355. IPW2100_PM_DISABLED = 1,
  356. PM_STATE_SIZE = 0,
  357. #endif
  358. };
  359. #define STATUS_POWERED (1<<0)
  360. #define STATUS_CMD_ACTIVE (1<<1) /**< host command in progress */
  361. #define STATUS_RUNNING (1<<2) /* Card initialized, but not enabled */
  362. #define STATUS_ENABLED (1<<3) /* Card enabled -- can scan,Tx,Rx */
  363. #define STATUS_STOPPING (1<<4) /* Card is in shutdown phase */
  364. #define STATUS_INITIALIZED (1<<5) /* Card is ready for external calls */
  365. #define STATUS_ASSOCIATING (1<<9) /* Associated, but no BSSID yet */
  366. #define STATUS_ASSOCIATED (1<<10) /* Associated and BSSID valid */
  367. #define STATUS_INT_ENABLED (1<<11)
  368. #define STATUS_RF_KILL_HW (1<<12)
  369. #define STATUS_RF_KILL_SW (1<<13)
  370. #define STATUS_RF_KILL_MASK (STATUS_RF_KILL_HW | STATUS_RF_KILL_SW)
  371. #define STATUS_EXIT_PENDING (1<<14)
  372. #define STATUS_SCAN_PENDING (1<<23)
  373. #define STATUS_SCANNING (1<<24)
  374. #define STATUS_SCAN_ABORTING (1<<25)
  375. #define STATUS_SCAN_COMPLETE (1<<26)
  376. #define STATUS_WX_EVENT_PENDING (1<<27)
  377. #define STATUS_RESET_PENDING (1<<29)
  378. #define STATUS_SECURITY_UPDATED (1<<30) /* Security sync needed */
  379. /* Internal NIC states */
  380. #define IPW_STATE_INITIALIZED (1<<0)
  381. #define IPW_STATE_COUNTRY_FOUND (1<<1)
  382. #define IPW_STATE_ASSOCIATED (1<<2)
  383. #define IPW_STATE_ASSN_LOST (1<<3)
  384. #define IPW_STATE_ASSN_CHANGED (1<<4)
  385. #define IPW_STATE_SCAN_COMPLETE (1<<5)
  386. #define IPW_STATE_ENTERED_PSP (1<<6)
  387. #define IPW_STATE_LEFT_PSP (1<<7)
  388. #define IPW_STATE_RF_KILL (1<<8)
  389. #define IPW_STATE_DISABLED (1<<9)
  390. #define IPW_STATE_POWER_DOWN (1<<10)
  391. #define IPW_STATE_SCANNING (1<<11)
  392. #define CFG_STATIC_CHANNEL (1<<0) /* Restrict assoc. to single channel */
  393. #define CFG_STATIC_ESSID (1<<1) /* Restrict assoc. to single SSID */
  394. #define CFG_STATIC_BSSID (1<<2) /* Restrict assoc. to single BSSID */
  395. #define CFG_CUSTOM_MAC (1<<3)
  396. #define CFG_LONG_PREAMBLE (1<<4)
  397. #define CFG_ASSOCIATE (1<<6)
  398. #define CFG_FIXED_RATE (1<<7)
  399. #define CFG_ADHOC_CREATE (1<<8)
  400. #define CFG_C3_DISABLED (1<<9)
  401. #define CFG_PASSIVE_SCAN (1<<10)
  402. #define CAP_SHARED_KEY (1<<0) /* Off = OPEN */
  403. #define CAP_PRIVACY_ON (1<<1) /* Off = No privacy */
  404. struct ipw2100_priv {
  405. int stop_hang_check; /* Set 1 when shutting down to kill hang_check */
  406. int stop_rf_kill; /* Set 1 when shutting down to kill rf_kill */
  407. struct ieee80211_device *ieee;
  408. unsigned long status;
  409. unsigned long config;
  410. unsigned long capability;
  411. /* Statistics */
  412. int resets;
  413. int reset_backoff;
  414. /* Context */
  415. u8 essid[IW_ESSID_MAX_SIZE];
  416. u8 essid_len;
  417. u8 bssid[ETH_ALEN];
  418. u8 channel;
  419. int last_mode;
  420. int cstate_limit;
  421. unsigned long connect_start;
  422. unsigned long last_reset;
  423. u32 channel_mask;
  424. u32 fatal_error;
  425. u32 fatal_errors[IPW2100_ERROR_QUEUE];
  426. u32 fatal_index;
  427. int eeprom_version;
  428. int firmware_version;
  429. unsigned long hw_features;
  430. int hangs;
  431. u32 last_rtc;
  432. int dump_raw; /* 1 to dump raw bytes in /sys/.../memory */
  433. u8* snapshot[0x30];
  434. u8 mandatory_bssid_mac[ETH_ALEN];
  435. u8 mac_addr[ETH_ALEN];
  436. int power_mode;
  437. /* WEP data */
  438. struct ieee80211_security sec;
  439. int messages_sent;
  440. int short_retry_limit;
  441. int long_retry_limit;
  442. u32 rts_threshold;
  443. u32 frag_threshold;
  444. int in_isr;
  445. u32 tx_rates;
  446. int tx_power;
  447. u32 beacon_interval;
  448. char nick[IW_ESSID_MAX_SIZE + 1];
  449. struct ipw2100_status_queue status_queue;
  450. struct statistic txq_stat;
  451. struct statistic rxq_stat;
  452. struct ipw2100_bd_queue rx_queue;
  453. struct ipw2100_bd_queue tx_queue;
  454. struct ipw2100_rx_packet *rx_buffers;
  455. struct statistic fw_pend_stat;
  456. struct list_head fw_pend_list;
  457. struct statistic msg_free_stat;
  458. struct statistic msg_pend_stat;
  459. struct list_head msg_free_list;
  460. struct list_head msg_pend_list;
  461. struct ipw2100_tx_packet *msg_buffers;
  462. struct statistic tx_free_stat;
  463. struct statistic tx_pend_stat;
  464. struct list_head tx_free_list;
  465. struct list_head tx_pend_list;
  466. struct ipw2100_tx_packet *tx_buffers;
  467. struct ipw2100_ordinals ordinals;
  468. struct pci_dev *pci_dev;
  469. struct proc_dir_entry *dir_dev;
  470. struct net_device *net_dev;
  471. struct iw_statistics wstats;
  472. struct tasklet_struct irq_tasklet;
  473. struct workqueue_struct *workqueue;
  474. struct work_struct reset_work;
  475. struct work_struct security_work;
  476. struct work_struct wx_event_work;
  477. struct work_struct hang_check;
  478. struct work_struct rf_kill;
  479. u32 interrupts;
  480. int tx_interrupts;
  481. int rx_interrupts;
  482. int inta_other;
  483. spinlock_t low_lock;
  484. struct semaphore action_sem;
  485. struct semaphore adapter_sem;
  486. wait_queue_head_t wait_command_queue;
  487. };
  488. /*********************************************************
  489. * Host Command -> From Driver to FW
  490. *********************************************************/
  491. /**
  492. * Host command identifiers
  493. */
  494. #define HOST_COMPLETE 2
  495. #define SYSTEM_CONFIG 6
  496. #define SSID 8
  497. #define MANDATORY_BSSID 9
  498. #define AUTHENTICATION_TYPE 10
  499. #define ADAPTER_ADDRESS 11
  500. #define PORT_TYPE 12
  501. #define INTERNATIONAL_MODE 13
  502. #define CHANNEL 14
  503. #define RTS_THRESHOLD 15
  504. #define FRAG_THRESHOLD 16
  505. #define POWER_MODE 17
  506. #define TX_RATES 18
  507. #define BASIC_TX_RATES 19
  508. #define WEP_KEY_INFO 20
  509. #define WEP_KEY_INDEX 25
  510. #define WEP_FLAGS 26
  511. #define ADD_MULTICAST 27
  512. #define CLEAR_ALL_MULTICAST 28
  513. #define BEACON_INTERVAL 29
  514. #define ATIM_WINDOW 30
  515. #define CLEAR_STATISTICS 31
  516. #define SEND 33
  517. #define TX_POWER_INDEX 36
  518. #define BROADCAST_SCAN 43
  519. #define CARD_DISABLE 44
  520. #define PREFERRED_BSSID 45
  521. #define SET_SCAN_OPTIONS 46
  522. #define SCAN_DWELL_TIME 47
  523. #define SWEEP_TABLE 48
  524. #define AP_OR_STATION_TABLE 49
  525. #define GROUP_ORDINALS 50
  526. #define SHORT_RETRY_LIMIT 51
  527. #define LONG_RETRY_LIMIT 52
  528. #define HOST_PRE_POWER_DOWN 58
  529. #define CARD_DISABLE_PHY_OFF 61
  530. #define MSDU_TX_RATES 62
  531. /* Rogue AP Detection */
  532. #define SET_STATION_STAT_BITS 64
  533. #define CLEAR_STATIONS_STAT_BITS 65
  534. #define LEAP_ROGUE_MODE 66 //TODO tbw replaced by CFG_LEAP_ROGUE_AP
  535. #define SET_SECURITY_INFORMATION 67
  536. #define DISASSOCIATION_BSSID 68
  537. #define SET_WPA_IE 69
  538. /* system configuration bit mask: */
  539. #define IPW_CFG_MONITOR 0x00004
  540. #define IPW_CFG_PREAMBLE_AUTO 0x00010
  541. #define IPW_CFG_IBSS_AUTO_START 0x00020
  542. #define IPW_CFG_LOOPBACK 0x00100
  543. #define IPW_CFG_ANSWER_BCSSID_PROBE 0x00800
  544. #define IPW_CFG_BT_SIDEBAND_SIGNAL 0x02000
  545. #define IPW_CFG_802_1x_ENABLE 0x04000
  546. #define IPW_CFG_BSS_MASK 0x08000
  547. #define IPW_CFG_IBSS_MASK 0x10000
  548. #define IPW_SCAN_NOASSOCIATE (1<<0)
  549. #define IPW_SCAN_MIXED_CELL (1<<1)
  550. /* RESERVED (1<<2) */
  551. #define IPW_SCAN_PASSIVE (1<<3)
  552. #define IPW_NIC_FATAL_ERROR 0x2A7F0
  553. #define IPW_ERROR_ADDR(x) (x & 0x3FFFF)
  554. #define IPW_ERROR_CODE(x) ((x & 0xFF000000) >> 24)
  555. #define IPW2100_ERR_C3_CORRUPTION (0x10 << 24)
  556. #define IPW2100_ERR_MSG_TIMEOUT (0x11 << 24)
  557. #define IPW2100_ERR_FW_LOAD (0x12 << 24)
  558. #define IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND 0x200
  559. #define IPW_MEM_SRAM_HOST_INTERRUPT_AREA_LOWER_BOUND IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x0D80
  560. #define IPW_MEM_HOST_SHARED_RX_BD_BASE (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x40)
  561. #define IPW_MEM_HOST_SHARED_RX_STATUS_BASE (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x44)
  562. #define IPW_MEM_HOST_SHARED_RX_BD_SIZE (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x48)
  563. #define IPW_MEM_HOST_SHARED_RX_READ_INDEX (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0xa0)
  564. #define IPW_MEM_HOST_SHARED_TX_QUEUE_BD_BASE (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x00)
  565. #define IPW_MEM_HOST_SHARED_TX_QUEUE_BD_SIZE (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x04)
  566. #define IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x80)
  567. #define IPW_MEM_HOST_SHARED_RX_WRITE_INDEX \
  568. (IPW_MEM_SRAM_HOST_INTERRUPT_AREA_LOWER_BOUND + 0x20)
  569. #define IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX \
  570. (IPW_MEM_SRAM_HOST_INTERRUPT_AREA_LOWER_BOUND)
  571. #define IPW_MEM_HOST_SHARED_ORDINALS_TABLE_1 (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x180)
  572. #define IPW_MEM_HOST_SHARED_ORDINALS_TABLE_2 (IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND + 0x184)
  573. #define IPW2100_INTA_TX_TRANSFER (0x00000001) // Bit 0 (LSB)
  574. #define IPW2100_INTA_RX_TRANSFER (0x00000002) // Bit 1
  575. #define IPW2100_INTA_TX_COMPLETE (0x00000004) // Bit 2
  576. #define IPW2100_INTA_EVENT_INTERRUPT (0x00000008) // Bit 3
  577. #define IPW2100_INTA_STATUS_CHANGE (0x00000010) // Bit 4
  578. #define IPW2100_INTA_BEACON_PERIOD_EXPIRED (0x00000020) // Bit 5
  579. #define IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE (0x00010000) // Bit 16
  580. #define IPW2100_INTA_FW_INIT_DONE (0x01000000) // Bit 24
  581. #define IPW2100_INTA_FW_CALIBRATION_CALC (0x02000000) // Bit 25
  582. #define IPW2100_INTA_FATAL_ERROR (0x40000000) // Bit 30
  583. #define IPW2100_INTA_PARITY_ERROR (0x80000000) // Bit 31 (MSB)
  584. #define IPW_AUX_HOST_RESET_REG_PRINCETON_RESET (0x00000001)
  585. #define IPW_AUX_HOST_RESET_REG_FORCE_NMI (0x00000002)
  586. #define IPW_AUX_HOST_RESET_REG_PCI_HOST_CLUSTER_FATAL_NMI (0x00000004)
  587. #define IPW_AUX_HOST_RESET_REG_CORE_FATAL_NMI (0x00000008)
  588. #define IPW_AUX_HOST_RESET_REG_SW_RESET (0x00000080)
  589. #define IPW_AUX_HOST_RESET_REG_MASTER_DISABLED (0x00000100)
  590. #define IPW_AUX_HOST_RESET_REG_STOP_MASTER (0x00000200)
  591. #define IPW_AUX_HOST_GP_CNTRL_BIT_CLOCK_READY (0x00000001) // Bit 0 (LSB)
  592. #define IPW_AUX_HOST_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY (0x00000002) // Bit 1
  593. #define IPW_AUX_HOST_GP_CNTRL_BIT_INIT_DONE (0x00000004) // Bit 2
  594. #define IPW_AUX_HOST_GP_CNTRL_BITS_SYS_CONFIG (0x000007c0) // Bits 6-10
  595. #define IPW_AUX_HOST_GP_CNTRL_BIT_BUS_TYPE (0x00000200) // Bit 9
  596. #define IPW_AUX_HOST_GP_CNTRL_BIT_BAR0_BLOCK_SIZE (0x00000400) // Bit 10
  597. #define IPW_AUX_HOST_GP_CNTRL_BIT_USB_MODE (0x20000000) // Bit 29
  598. #define IPW_AUX_HOST_GP_CNTRL_BIT_HOST_FORCES_SYS_CLK (0x40000000) // Bit 30
  599. #define IPW_AUX_HOST_GP_CNTRL_BIT_FW_FORCES_SYS_CLK (0x80000000) // Bit 31 (MSB)
  600. #define IPW_BIT_GPIO_GPIO1_MASK 0x0000000C
  601. #define IPW_BIT_GPIO_GPIO3_MASK 0x000000C0
  602. #define IPW_BIT_GPIO_GPIO1_ENABLE 0x00000008
  603. #define IPW_BIT_GPIO_RF_KILL 0x00010000
  604. #define IPW_BIT_GPIO_LED_OFF 0x00002000 // Bit 13 = 1
  605. #define IPW_REG_DOMAIN_0_OFFSET 0x0000
  606. #define IPW_REG_DOMAIN_1_OFFSET IPW_MEM_SRAM_HOST_SHARED_LOWER_BOUND
  607. #define IPW_REG_INTA IPW_REG_DOMAIN_0_OFFSET + 0x0008
  608. #define IPW_REG_INTA_MASK IPW_REG_DOMAIN_0_OFFSET + 0x000C
  609. #define IPW_REG_INDIRECT_ACCESS_ADDRESS IPW_REG_DOMAIN_0_OFFSET + 0x0010
  610. #define IPW_REG_INDIRECT_ACCESS_DATA IPW_REG_DOMAIN_0_OFFSET + 0x0014
  611. #define IPW_REG_AUTOINCREMENT_ADDRESS IPW_REG_DOMAIN_0_OFFSET + 0x0018
  612. #define IPW_REG_AUTOINCREMENT_DATA IPW_REG_DOMAIN_0_OFFSET + 0x001C
  613. #define IPW_REG_RESET_REG IPW_REG_DOMAIN_0_OFFSET + 0x0020
  614. #define IPW_REG_GP_CNTRL IPW_REG_DOMAIN_0_OFFSET + 0x0024
  615. #define IPW_REG_GPIO IPW_REG_DOMAIN_0_OFFSET + 0x0030
  616. #define IPW_REG_FW_TYPE IPW_REG_DOMAIN_1_OFFSET + 0x0188
  617. #define IPW_REG_FW_VERSION IPW_REG_DOMAIN_1_OFFSET + 0x018C
  618. #define IPW_REG_FW_COMPATABILITY_VERSION IPW_REG_DOMAIN_1_OFFSET + 0x0190
  619. #define IPW_REG_INDIRECT_ADDR_MASK 0x00FFFFFC
  620. #define IPW_INTERRUPT_MASK 0xC1010013
  621. #define IPW2100_CONTROL_REG 0x220000
  622. #define IPW2100_CONTROL_PHY_OFF 0x8
  623. #define IPW2100_COMMAND 0x00300004
  624. #define IPW2100_COMMAND_PHY_ON 0x0
  625. #define IPW2100_COMMAND_PHY_OFF 0x1
  626. /* in DEBUG_AREA, values of memory always 0xd55555d5 */
  627. #define IPW_REG_DOA_DEBUG_AREA_START IPW_REG_DOMAIN_0_OFFSET + 0x0090
  628. #define IPW_REG_DOA_DEBUG_AREA_END IPW_REG_DOMAIN_0_OFFSET + 0x00FF
  629. #define IPW_DATA_DOA_DEBUG_VALUE 0xd55555d5
  630. #define IPW_INTERNAL_REGISTER_HALT_AND_RESET 0x003000e0
  631. #define IPW_WAIT_CLOCK_STABILIZATION_DELAY 50 // micro seconds
  632. #define IPW_WAIT_RESET_ARC_COMPLETE_DELAY 10 // micro seconds
  633. #define IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY 10 // micro seconds
  634. // BD ring queue read/write difference
  635. #define IPW_BD_QUEUE_W_R_MIN_SPARE 2
  636. #define IPW_CACHE_LINE_LENGTH_DEFAULT 0x80
  637. #define IPW_CARD_DISABLE_PHY_OFF_COMPLETE_WAIT 100 // 100 milli
  638. #define IPW_PREPARE_POWER_DOWN_COMPLETE_WAIT 100 // 100 milli
  639. #define IPW_HEADER_802_11_SIZE sizeof(struct ieee80211_hdr_3addr)
  640. #define IPW_MAX_80211_PAYLOAD_SIZE 2304U
  641. #define IPW_MAX_802_11_PAYLOAD_LENGTH 2312
  642. #define IPW_MAX_ACCEPTABLE_TX_FRAME_LENGTH 1536
  643. #define IPW_MIN_ACCEPTABLE_RX_FRAME_LENGTH 60
  644. #define IPW_MAX_ACCEPTABLE_RX_FRAME_LENGTH \
  645. (IPW_MAX_ACCEPTABLE_TX_FRAME_LENGTH + IPW_HEADER_802_11_SIZE - \
  646. sizeof(struct ethhdr))
  647. #define IPW_802_11_FCS_LENGTH 4
  648. #define IPW_RX_NIC_BUFFER_LENGTH \
  649. (IPW_MAX_802_11_PAYLOAD_LENGTH + IPW_HEADER_802_11_SIZE + \
  650. IPW_802_11_FCS_LENGTH)
  651. #define IPW_802_11_PAYLOAD_OFFSET \
  652. (sizeof(struct ieee80211_hdr_3addr) + \
  653. sizeof(struct ieee80211_snap_hdr))
  654. struct ipw2100_rx {
  655. union {
  656. unsigned char payload[IPW_RX_NIC_BUFFER_LENGTH];
  657. struct ieee80211_hdr header;
  658. u32 status;
  659. struct ipw2100_notification notification;
  660. struct ipw2100_cmd_header command;
  661. } rx_data;
  662. } __attribute__ ((packed));
  663. /* Bit 0-7 are for 802.11b tx rates - . Bit 5-7 are reserved */
  664. #define TX_RATE_1_MBIT 0x0001
  665. #define TX_RATE_2_MBIT 0x0002
  666. #define TX_RATE_5_5_MBIT 0x0004
  667. #define TX_RATE_11_MBIT 0x0008
  668. #define TX_RATE_MASK 0x000F
  669. #define DEFAULT_TX_RATES 0x000F
  670. #define IPW_POWER_MODE_CAM 0x00 //(always on)
  671. #define IPW_POWER_INDEX_1 0x01
  672. #define IPW_POWER_INDEX_2 0x02
  673. #define IPW_POWER_INDEX_3 0x03
  674. #define IPW_POWER_INDEX_4 0x04
  675. #define IPW_POWER_INDEX_5 0x05
  676. #define IPW_POWER_AUTO 0x06
  677. #define IPW_POWER_MASK 0x0F
  678. #define IPW_POWER_ENABLED 0x10
  679. #define IPW_POWER_LEVEL(x) ((x) & IPW_POWER_MASK)
  680. #define IPW_TX_POWER_AUTO 0
  681. #define IPW_TX_POWER_ENHANCED 1
  682. #define IPW_TX_POWER_DEFAULT 32
  683. #define IPW_TX_POWER_MIN 0
  684. #define IPW_TX_POWER_MAX 16
  685. #define IPW_TX_POWER_MIN_DBM (-12)
  686. #define IPW_TX_POWER_MAX_DBM 16
  687. #define FW_SCAN_DONOT_ASSOCIATE 0x0001 // Dont Attempt to Associate after Scan
  688. #define FW_SCAN_PASSIVE 0x0008 // Force PASSSIVE Scan
  689. #define REG_MIN_CHANNEL 0
  690. #define REG_MAX_CHANNEL 14
  691. #define REG_CHANNEL_MASK 0x00003FFF
  692. #define IPW_IBSS_11B_DEFAULT_MASK 0x87ff
  693. #define DIVERSITY_EITHER 0 // Use both antennas
  694. #define DIVERSITY_ANTENNA_A 1 // Use antenna A
  695. #define DIVERSITY_ANTENNA_B 2 // Use antenna B
  696. #define HOST_COMMAND_WAIT 0
  697. #define HOST_COMMAND_NO_WAIT 1
  698. #define LOCK_NONE 0
  699. #define LOCK_DRIVER 1
  700. #define LOCK_FW 2
  701. #define TYPE_SWEEP_ORD 0x000D
  702. #define TYPE_IBSS_STTN_ORD 0x000E
  703. #define TYPE_BSS_AP_ORD 0x000F
  704. #define TYPE_RAW_BEACON_ENTRY 0x0010
  705. #define TYPE_CALIBRATION_DATA 0x0011
  706. #define TYPE_ROGUE_AP_DATA 0x0012
  707. #define TYPE_ASSOCIATION_REQUEST 0x0013
  708. #define TYPE_REASSOCIATION_REQUEST 0x0014
  709. #define HW_FEATURE_RFKILL (0x0001)
  710. #define RF_KILLSWITCH_OFF (1)
  711. #define RF_KILLSWITCH_ON (0)
  712. #define IPW_COMMAND_POOL_SIZE 40
  713. #define IPW_START_ORD_TAB_1 1
  714. #define IPW_START_ORD_TAB_2 1000
  715. #define IPW_ORD_TAB_1_ENTRY_SIZE sizeof(u32)
  716. #define IS_ORDINAL_TABLE_ONE(mgr,id) \
  717. ((id >= IPW_START_ORD_TAB_1) && (id < mgr->table1_size))
  718. #define IS_ORDINAL_TABLE_TWO(mgr,id) \
  719. ((id >= IPW_START_ORD_TAB_2) && (id < (mgr->table2_size + IPW_START_ORD_TAB_2)))
  720. #define BSS_ID_LENGTH 6
  721. // Fixed size data: Ordinal Table 1
  722. typedef enum _ORDINAL_TABLE_1 { // NS - means Not Supported by FW
  723. // Transmit statistics
  724. IPW_ORD_STAT_TX_HOST_REQUESTS = 1,// # of requested Host Tx's (MSDU)
  725. IPW_ORD_STAT_TX_HOST_COMPLETE, // # of successful Host Tx's (MSDU)
  726. IPW_ORD_STAT_TX_DIR_DATA, // # of successful Directed Tx's (MSDU)
  727. IPW_ORD_STAT_TX_DIR_DATA1 = 4, // # of successful Directed Tx's (MSDU) @ 1MB
  728. IPW_ORD_STAT_TX_DIR_DATA2, // # of successful Directed Tx's (MSDU) @ 2MB
  729. IPW_ORD_STAT_TX_DIR_DATA5_5, // # of successful Directed Tx's (MSDU) @ 5_5MB
  730. IPW_ORD_STAT_TX_DIR_DATA11, // # of successful Directed Tx's (MSDU) @ 11MB
  731. IPW_ORD_STAT_TX_DIR_DATA22, // # of successful Directed Tx's (MSDU) @ 22MB
  732. IPW_ORD_STAT_TX_NODIR_DATA1 = 13,// # of successful Non_Directed Tx's (MSDU) @ 1MB
  733. IPW_ORD_STAT_TX_NODIR_DATA2, // # of successful Non_Directed Tx's (MSDU) @ 2MB
  734. IPW_ORD_STAT_TX_NODIR_DATA5_5, // # of successful Non_Directed Tx's (MSDU) @ 5.5MB
  735. IPW_ORD_STAT_TX_NODIR_DATA11, // # of successful Non_Directed Tx's (MSDU) @ 11MB
  736. IPW_ORD_STAT_NULL_DATA = 21, // # of successful NULL data Tx's
  737. IPW_ORD_STAT_TX_RTS, // # of successful Tx RTS
  738. IPW_ORD_STAT_TX_CTS, // # of successful Tx CTS
  739. IPW_ORD_STAT_TX_ACK, // # of successful Tx ACK
  740. IPW_ORD_STAT_TX_ASSN, // # of successful Association Tx's
  741. IPW_ORD_STAT_TX_ASSN_RESP, // # of successful Association response Tx's
  742. IPW_ORD_STAT_TX_REASSN, // # of successful Reassociation Tx's
  743. IPW_ORD_STAT_TX_REASSN_RESP, // # of successful Reassociation response Tx's
  744. IPW_ORD_STAT_TX_PROBE, // # of probes successfully transmitted
  745. IPW_ORD_STAT_TX_PROBE_RESP, // # of probe responses successfully transmitted
  746. IPW_ORD_STAT_TX_BEACON, // # of tx beacon
  747. IPW_ORD_STAT_TX_ATIM, // # of Tx ATIM
  748. IPW_ORD_STAT_TX_DISASSN, // # of successful Disassociation TX
  749. IPW_ORD_STAT_TX_AUTH, // # of successful Authentication Tx
  750. IPW_ORD_STAT_TX_DEAUTH, // # of successful Deauthentication TX
  751. IPW_ORD_STAT_TX_TOTAL_BYTES = 41,// Total successful Tx data bytes
  752. IPW_ORD_STAT_TX_RETRIES, // # of Tx retries
  753. IPW_ORD_STAT_TX_RETRY1, // # of Tx retries at 1MBPS
  754. IPW_ORD_STAT_TX_RETRY2, // # of Tx retries at 2MBPS
  755. IPW_ORD_STAT_TX_RETRY5_5, // # of Tx retries at 5.5MBPS
  756. IPW_ORD_STAT_TX_RETRY11, // # of Tx retries at 11MBPS
  757. IPW_ORD_STAT_TX_FAILURES = 51, // # of Tx Failures
  758. IPW_ORD_STAT_TX_ABORT_AT_HOP, //NS // # of Tx's aborted at hop time
  759. IPW_ORD_STAT_TX_MAX_TRIES_IN_HOP,// # of times max tries in a hop failed
  760. IPW_ORD_STAT_TX_ABORT_LATE_DMA, //NS // # of times tx aborted due to late dma setup
  761. IPW_ORD_STAT_TX_ABORT_STX, //NS // # of times backoff aborted
  762. IPW_ORD_STAT_TX_DISASSN_FAIL, // # of times disassociation failed
  763. IPW_ORD_STAT_TX_ERR_CTS, // # of missed/bad CTS frames
  764. IPW_ORD_STAT_TX_BPDU, //NS // # of spanning tree BPDUs sent
  765. IPW_ORD_STAT_TX_ERR_ACK, // # of tx err due to acks
  766. // Receive statistics
  767. IPW_ORD_STAT_RX_HOST = 61, // # of packets passed to host
  768. IPW_ORD_STAT_RX_DIR_DATA, // # of directed packets
  769. IPW_ORD_STAT_RX_DIR_DATA1, // # of directed packets at 1MB
  770. IPW_ORD_STAT_RX_DIR_DATA2, // # of directed packets at 2MB
  771. IPW_ORD_STAT_RX_DIR_DATA5_5, // # of directed packets at 5.5MB
  772. IPW_ORD_STAT_RX_DIR_DATA11, // # of directed packets at 11MB
  773. IPW_ORD_STAT_RX_DIR_DATA22, // # of directed packets at 22MB
  774. IPW_ORD_STAT_RX_NODIR_DATA = 71,// # of nondirected packets
  775. IPW_ORD_STAT_RX_NODIR_DATA1, // # of nondirected packets at 1MB
  776. IPW_ORD_STAT_RX_NODIR_DATA2, // # of nondirected packets at 2MB
  777. IPW_ORD_STAT_RX_NODIR_DATA5_5, // # of nondirected packets at 5.5MB
  778. IPW_ORD_STAT_RX_NODIR_DATA11, // # of nondirected packets at 11MB
  779. IPW_ORD_STAT_RX_NULL_DATA = 80, // # of null data rx's
  780. IPW_ORD_STAT_RX_POLL, //NS // # of poll rx
  781. IPW_ORD_STAT_RX_RTS, // # of Rx RTS
  782. IPW_ORD_STAT_RX_CTS, // # of Rx CTS
  783. IPW_ORD_STAT_RX_ACK, // # of Rx ACK
  784. IPW_ORD_STAT_RX_CFEND, // # of Rx CF End
  785. IPW_ORD_STAT_RX_CFEND_ACK, // # of Rx CF End + CF Ack
  786. IPW_ORD_STAT_RX_ASSN, // # of Association Rx's
  787. IPW_ORD_STAT_RX_ASSN_RESP, // # of Association response Rx's
  788. IPW_ORD_STAT_RX_REASSN, // # of Reassociation Rx's
  789. IPW_ORD_STAT_RX_REASSN_RESP, // # of Reassociation response Rx's
  790. IPW_ORD_STAT_RX_PROBE, // # of probe Rx's
  791. IPW_ORD_STAT_RX_PROBE_RESP, // # of probe response Rx's
  792. IPW_ORD_STAT_RX_BEACON, // # of Rx beacon
  793. IPW_ORD_STAT_RX_ATIM, // # of Rx ATIM
  794. IPW_ORD_STAT_RX_DISASSN, // # of disassociation Rx
  795. IPW_ORD_STAT_RX_AUTH, // # of authentication Rx
  796. IPW_ORD_STAT_RX_DEAUTH, // # of deauthentication Rx
  797. IPW_ORD_STAT_RX_TOTAL_BYTES = 101,// Total rx data bytes received
  798. IPW_ORD_STAT_RX_ERR_CRC, // # of packets with Rx CRC error
  799. IPW_ORD_STAT_RX_ERR_CRC1, // # of Rx CRC errors at 1MB
  800. IPW_ORD_STAT_RX_ERR_CRC2, // # of Rx CRC errors at 2MB
  801. IPW_ORD_STAT_RX_ERR_CRC5_5, // # of Rx CRC errors at 5.5MB
  802. IPW_ORD_STAT_RX_ERR_CRC11, // # of Rx CRC errors at 11MB
  803. IPW_ORD_STAT_RX_DUPLICATE1 = 112, // # of duplicate rx packets at 1MB
  804. IPW_ORD_STAT_RX_DUPLICATE2, // # of duplicate rx packets at 2MB
  805. IPW_ORD_STAT_RX_DUPLICATE5_5, // # of duplicate rx packets at 5.5MB
  806. IPW_ORD_STAT_RX_DUPLICATE11, // # of duplicate rx packets at 11MB
  807. IPW_ORD_STAT_RX_DUPLICATE = 119, // # of duplicate rx packets
  808. IPW_ORD_PERS_DB_LOCK = 120, // # locking fw permanent db
  809. IPW_ORD_PERS_DB_SIZE, // # size of fw permanent db
  810. IPW_ORD_PERS_DB_ADDR, // # address of fw permanent db
  811. IPW_ORD_STAT_RX_INVALID_PROTOCOL, // # of rx frames with invalid protocol
  812. IPW_ORD_SYS_BOOT_TIME, // # Boot time
  813. IPW_ORD_STAT_RX_NO_BUFFER, // # of rx frames rejected due to no buffer
  814. IPW_ORD_STAT_RX_ABORT_LATE_DMA, //NS // # of rx frames rejected due to dma setup too late
  815. IPW_ORD_STAT_RX_ABORT_AT_HOP, //NS // # of rx frames aborted due to hop
  816. IPW_ORD_STAT_RX_MISSING_FRAG, // # of rx frames dropped due to missing fragment
  817. IPW_ORD_STAT_RX_ORPHAN_FRAG, // # of rx frames dropped due to non-sequential fragment
  818. IPW_ORD_STAT_RX_ORPHAN_FRAME, // # of rx frames dropped due to unmatched 1st frame
  819. IPW_ORD_STAT_RX_FRAG_AGEOUT, // # of rx frames dropped due to uncompleted frame
  820. IPW_ORD_STAT_RX_BAD_SSID, //NS // Bad SSID (unused)
  821. IPW_ORD_STAT_RX_ICV_ERRORS, // # of ICV errors during decryption
  822. // PSP Statistics
  823. IPW_ORD_STAT_PSP_SUSPENSION = 137,// # of times adapter suspended
  824. IPW_ORD_STAT_PSP_BCN_TIMEOUT, // # of beacon timeout
  825. IPW_ORD_STAT_PSP_POLL_TIMEOUT, // # of poll response timeouts
  826. IPW_ORD_STAT_PSP_NONDIR_TIMEOUT,// # of timeouts waiting for last broadcast/muticast pkt
  827. IPW_ORD_STAT_PSP_RX_DTIMS, // # of PSP DTIMs received
  828. IPW_ORD_STAT_PSP_RX_TIMS, // # of PSP TIMs received
  829. IPW_ORD_STAT_PSP_STATION_ID, // PSP Station ID
  830. // Association and roaming
  831. IPW_ORD_LAST_ASSN_TIME = 147, // RTC time of last association
  832. IPW_ORD_STAT_PERCENT_MISSED_BCNS,// current calculation of % missed beacons
  833. IPW_ORD_STAT_PERCENT_RETRIES, // current calculation of % missed tx retries
  834. IPW_ORD_ASSOCIATED_AP_PTR, // If associated, this is ptr to the associated
  835. // AP table entry. set to 0 if not associated
  836. IPW_ORD_AVAILABLE_AP_CNT, // # of AP's decsribed in the AP table
  837. IPW_ORD_AP_LIST_PTR, // Ptr to list of available APs
  838. IPW_ORD_STAT_AP_ASSNS, // # of associations
  839. IPW_ORD_STAT_ASSN_FAIL, // # of association failures
  840. IPW_ORD_STAT_ASSN_RESP_FAIL, // # of failuresdue to response fail
  841. IPW_ORD_STAT_FULL_SCANS, // # of full scans
  842. IPW_ORD_CARD_DISABLED, // # Card Disabled
  843. IPW_ORD_STAT_ROAM_INHIBIT, // # of times roaming was inhibited due to ongoing activity
  844. IPW_FILLER_40,
  845. IPW_ORD_RSSI_AT_ASSN = 160, // RSSI of associated AP at time of association
  846. IPW_ORD_STAT_ASSN_CAUSE1, // # of reassociations due to no tx from AP in last N
  847. // hops or no prob_ responses in last 3 minutes
  848. IPW_ORD_STAT_ASSN_CAUSE2, // # of reassociations due to poor tx/rx quality
  849. IPW_ORD_STAT_ASSN_CAUSE3, // # of reassociations due to tx/rx quality with excessive
  850. // load at the AP
  851. IPW_ORD_STAT_ASSN_CAUSE4, // # of reassociations due to AP RSSI level fell below
  852. // eligible group
  853. IPW_ORD_STAT_ASSN_CAUSE5, // # of reassociations due to load leveling
  854. IPW_ORD_STAT_ASSN_CAUSE6, //NS // # of reassociations due to dropped by Ap
  855. IPW_FILLER_41,
  856. IPW_FILLER_42,
  857. IPW_FILLER_43,
  858. IPW_ORD_STAT_AUTH_FAIL, // # of times authentication failed
  859. IPW_ORD_STAT_AUTH_RESP_FAIL, // # of times authentication response failed
  860. IPW_ORD_STATION_TABLE_CNT, // # of entries in association table
  861. // Other statistics
  862. IPW_ORD_RSSI_AVG_CURR = 173, // Current avg RSSI
  863. IPW_ORD_STEST_RESULTS_CURR, //NS // Current self test results word
  864. IPW_ORD_STEST_RESULTS_CUM, //NS // Cummulative self test results word
  865. IPW_ORD_SELF_TEST_STATUS, //NS //
  866. IPW_ORD_POWER_MGMT_MODE, // Power mode - 0=CAM, 1=PSP
  867. IPW_ORD_POWER_MGMT_INDEX, //NS //
  868. IPW_ORD_COUNTRY_CODE, // IEEE country code as recv'd from beacon
  869. IPW_ORD_COUNTRY_CHANNELS, // channels suported by country
  870. // IPW_ORD_COUNTRY_CHANNELS:
  871. // For 11b the lower 2-byte are used for channels from 1-14
  872. // and the higher 2-byte are not used.
  873. IPW_ORD_RESET_CNT, // # of adapter resets (warm)
  874. IPW_ORD_BEACON_INTERVAL, // Beacon interval
  875. IPW_ORD_PRINCETON_VERSION = 184, //NS // Princeton Version
  876. IPW_ORD_ANTENNA_DIVERSITY, // TRUE if antenna diversity is disabled
  877. IPW_ORD_CCA_RSSI, //NS // CCA RSSI value (factory programmed)
  878. IPW_ORD_STAT_EEPROM_UPDATE, //NS // # of times config EEPROM updated
  879. IPW_ORD_DTIM_PERIOD, // # of beacon intervals between DTIMs
  880. IPW_ORD_OUR_FREQ, // current radio freq lower digits - channel ID
  881. IPW_ORD_RTC_TIME = 190, // current RTC time
  882. IPW_ORD_PORT_TYPE, // operating mode
  883. IPW_ORD_CURRENT_TX_RATE, // current tx rate
  884. IPW_ORD_SUPPORTED_RATES, // Bitmap of supported tx rates
  885. IPW_ORD_ATIM_WINDOW, // current ATIM Window
  886. IPW_ORD_BASIC_RATES, // bitmap of basic tx rates
  887. IPW_ORD_NIC_HIGHEST_RATE, // bitmap of basic tx rates
  888. IPW_ORD_AP_HIGHEST_RATE, // bitmap of basic tx rates
  889. IPW_ORD_CAPABILITIES, // Management frame capability field
  890. IPW_ORD_AUTH_TYPE, // Type of authentication
  891. IPW_ORD_RADIO_TYPE, // Adapter card platform type
  892. IPW_ORD_RTS_THRESHOLD = 201, // Min length of packet after which RTS handshaking is used
  893. IPW_ORD_INT_MODE, // International mode
  894. IPW_ORD_FRAGMENTATION_THRESHOLD, // protocol frag threshold
  895. IPW_ORD_EEPROM_SRAM_DB_BLOCK_START_ADDRESS, // EEPROM offset in SRAM
  896. IPW_ORD_EEPROM_SRAM_DB_BLOCK_SIZE, // EEPROM size in SRAM
  897. IPW_ORD_EEPROM_SKU_CAPABILITY, // EEPROM SKU Capability 206 =
  898. IPW_ORD_EEPROM_IBSS_11B_CHANNELS, // EEPROM IBSS 11b channel set
  899. IPW_ORD_MAC_VERSION = 209, // MAC Version
  900. IPW_ORD_MAC_REVISION, // MAC Revision
  901. IPW_ORD_RADIO_VERSION, // Radio Version
  902. IPW_ORD_NIC_MANF_DATE_TIME, // MANF Date/Time STAMP
  903. IPW_ORD_UCODE_VERSION, // Ucode Version
  904. IPW_ORD_HW_RF_SWITCH_STATE = 214, // HW RF Kill Switch State
  905. } ORDINALTABLE1;
  906. // ordinal table 2
  907. // Variable length data:
  908. #define IPW_FIRST_VARIABLE_LENGTH_ORDINAL 1001
  909. typedef enum _ORDINAL_TABLE_2 { // NS - means Not Supported by FW
  910. IPW_ORD_STAT_BASE = 1000, // contains number of variable ORDs
  911. IPW_ORD_STAT_ADAPTER_MAC = 1001, // 6 bytes: our adapter MAC address
  912. IPW_ORD_STAT_PREFERRED_BSSID = 1002, // 6 bytes: BSSID of the preferred AP
  913. IPW_ORD_STAT_MANDATORY_BSSID = 1003, // 6 bytes: BSSID of the mandatory AP
  914. IPW_FILL_1, //NS //
  915. IPW_ORD_STAT_COUNTRY_TEXT = 1005, // 36 bytes: Country name text, First two bytes are Country code
  916. IPW_ORD_STAT_ASSN_SSID = 1006, // 32 bytes: ESSID String
  917. IPW_ORD_STATION_TABLE = 1007, // ? bytes: Station/AP table (via Direct SSID Scans)
  918. IPW_ORD_STAT_SWEEP_TABLE = 1008, // ? bytes: Sweep/Host Table table (via Broadcast Scans)
  919. IPW_ORD_STAT_ROAM_LOG = 1009, // ? bytes: Roaming log
  920. IPW_ORD_STAT_RATE_LOG = 1010, //NS // 0 bytes: Rate log
  921. IPW_ORD_STAT_FIFO = 1011, //NS // 0 bytes: Fifo buffer data structures
  922. IPW_ORD_STAT_FW_VER_NUM = 1012, // 14 bytes: fw version ID string as in (a.bb.ccc; "0.08.011")
  923. IPW_ORD_STAT_FW_DATE = 1013, // 14 bytes: fw date string (mmm dd yyyy; "Mar 13 2002")
  924. IPW_ORD_STAT_ASSN_AP_BSSID = 1014, // 6 bytes: MAC address of associated AP
  925. IPW_ORD_STAT_DEBUG = 1015, //NS // ? bytes:
  926. IPW_ORD_STAT_NIC_BPA_NUM = 1016, // 11 bytes: NIC BPA number in ASCII
  927. IPW_ORD_STAT_UCODE_DATE = 1017, // 5 bytes: uCode date
  928. IPW_ORD_SECURITY_NGOTIATION_RESULT = 1018,
  929. } ORDINALTABLE2; // NS - means Not Supported by FW
  930. #define IPW_LAST_VARIABLE_LENGTH_ORDINAL 1018
  931. #ifndef WIRELESS_SPY
  932. #define WIRELESS_SPY // enable iwspy support
  933. #endif
  934. #define IPW_HOST_FW_SHARED_AREA0 0x0002f200
  935. #define IPW_HOST_FW_SHARED_AREA0_END 0x0002f510 // 0x310 bytes
  936. #define IPW_HOST_FW_SHARED_AREA1 0x0002f610
  937. #define IPW_HOST_FW_SHARED_AREA1_END 0x0002f630 // 0x20 bytes
  938. #define IPW_HOST_FW_SHARED_AREA2 0x0002fa00
  939. #define IPW_HOST_FW_SHARED_AREA2_END 0x0002fa20 // 0x20 bytes
  940. #define IPW_HOST_FW_SHARED_AREA3 0x0002fc00
  941. #define IPW_HOST_FW_SHARED_AREA3_END 0x0002fc10 // 0x10 bytes
  942. #define IPW_HOST_FW_INTERRUPT_AREA 0x0002ff80
  943. #define IPW_HOST_FW_INTERRUPT_AREA_END 0x00030000 // 0x80 bytes
  944. struct ipw2100_fw_chunk {
  945. unsigned char *buf;
  946. long len;
  947. long pos;
  948. struct list_head list;
  949. };
  950. struct ipw2100_fw_chunk_set {
  951. const void *data;
  952. unsigned long size;
  953. };
  954. struct ipw2100_fw {
  955. int version;
  956. struct ipw2100_fw_chunk_set fw;
  957. struct ipw2100_fw_chunk_set uc;
  958. const struct firmware *fw_entry;
  959. };
  960. #define MAX_FW_VERSION_LEN 14
  961. #endif /* _IPW2100_H */