blob: ce933387792613a6b4b1dc0b1e2e43aa9ff40696 [file] [log] [blame]
Christian Lamparter32ddf072008-08-08 21:17:37 +02001#ifndef P54_H
2#define P54_H
Michael Wueff1a592007-09-25 18:11:01 -07003
4/*
5 * Shared defines for all mac80211 Prism54 code
6 *
7 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
8 *
9 * Based on the islsm (softmac prism54) driver, which is:
10 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16
John W. Linville27df6052008-10-22 16:41:55 -040017enum p54_control_frame_types {
Christian Lamparter5e734442008-10-15 04:07:56 +020018 P54_CONTROL_TYPE_SETUP = 0,
John W. Linville27df6052008-10-22 16:41:55 -040019 P54_CONTROL_TYPE_SCAN,
20 P54_CONTROL_TYPE_TRAP,
Michael Wueff1a592007-09-25 18:11:01 -070021 P54_CONTROL_TYPE_DCFINIT,
John W. Linville27df6052008-10-22 16:41:55 -040022 P54_CONTROL_TYPE_RX_KEYCACHE,
Christian Lamparter19c19d52008-09-03 22:25:25 +020023 P54_CONTROL_TYPE_TIM,
John W. Linville27df6052008-10-22 16:41:55 -040024 P54_CONTROL_TYPE_PSM,
25 P54_CONTROL_TYPE_TXCANCEL,
Michael Wueff1a592007-09-25 18:11:01 -070026 P54_CONTROL_TYPE_TXDONE,
John W. Linville27df6052008-10-22 16:41:55 -040027 P54_CONTROL_TYPE_BURST,
Michael Wueff1a592007-09-25 18:11:01 -070028 P54_CONTROL_TYPE_STAT_READBACK,
29 P54_CONTROL_TYPE_BBP,
30 P54_CONTROL_TYPE_EEPROM_READBACK,
Christian Lamparter19c19d52008-09-03 22:25:25 +020031 P54_CONTROL_TYPE_LED,
32 P54_CONTROL_TYPE_GPIO,
33 P54_CONTROL_TYPE_TIMER,
34 P54_CONTROL_TYPE_MODULATION,
35 P54_CONTROL_TYPE_SYNTH_CONFIG,
36 P54_CONTROL_TYPE_DETECTOR_VALUE,
37 P54_CONTROL_TYPE_XBOW_SYNTH_CFG,
38 P54_CONTROL_TYPE_CCE_QUIET,
39 P54_CONTROL_TYPE_PSM_STA_UNLOCK,
John W. Linville27df6052008-10-22 16:41:55 -040040 P54_CONTROL_TYPE_PCS,
41 P54_CONTROL_TYPE_BT_BALANCER = 28,
42 P54_CONTROL_TYPE_GROUP_ADDRESS_TABLE = 30,
43 P54_CONTROL_TYPE_ARPTABLE = 31,
44 P54_CONTROL_TYPE_BT_OPTIONS = 35
Michael Wueff1a592007-09-25 18:11:01 -070045};
46
Christian Lamparter63f2dc92009-01-09 21:05:31 +010047#define P54_MAX_CTRL_FRAME_LEN 0x1000
48
Christian Lamparter0a5ec962008-12-14 15:05:42 +010049#define P54_HDR_FLAG_CONTROL BIT(15)
50#define P54_HDR_FLAG_CONTROL_OPSET (BIT(15) + BIT(0))
51
John W. Linville27df6052008-10-22 16:41:55 -040052struct p54_hdr {
53 __le16 flags;
Michael Wueff1a592007-09-25 18:11:01 -070054 __le16 len;
55 __le32 req_id;
John W. Linville27df6052008-10-22 16:41:55 -040056 __le16 type; /* enum p54_control_frame_types */
57 u8 rts_tries;
58 u8 tries;
Michael Wueff1a592007-09-25 18:11:01 -070059 u8 data[0];
60} __attribute__ ((packed));
61
Christian Lamparter0a5ec962008-12-14 15:05:42 +010062#define FREE_AFTER_TX(skb) \
63 ((((struct p54_hdr *) ((struct sk_buff *) skb)->data)-> \
64 flags) == cpu_to_le16(P54_HDR_FLAG_CONTROL_OPSET))
65
Christian Lamparter0fdd7c52008-10-15 03:55:37 +020066struct p54_edcf_queue_param {
67 __le16 aifs;
68 __le16 cwmin;
69 __le16 cwmax;
70 __le16 txop;
71} __attribute__ ((packed));
72
Christian Lamparter69ba3e52008-12-14 14:45:30 +010073struct p54_rssi_linear_approximation {
74 s16 mul;
75 s16 add;
76 s16 longbow_unkn;
77 s16 longbow_unk2;
78};
79
Christian Lamparter7cb77072008-09-01 22:48:51 +020080#define EEPROM_READBACK_LEN 0x3fc
Michael Wueff1a592007-09-25 18:11:01 -070081
82#define ISL38XX_DEV_FIRMWARE_ADDR 0x20000
83
Christian Lamparter2b808482008-09-04 12:29:38 +020084#define FW_FMAC 0x464d4143
85#define FW_LM86 0x4c4d3836
86#define FW_LM87 0x4c4d3837
87#define FW_LM20 0x4c4d3230
88
Michael Wueff1a592007-09-25 18:11:01 -070089struct p54_common {
Christian Lamparter54fdb042008-12-13 14:14:20 +010090 struct ieee80211_hw *hw;
Michael Wueff1a592007-09-25 18:11:01 -070091 u32 rx_start;
92 u32 rx_end;
93 struct sk_buff_head tx_queue;
Christian Lamparter0a5ec962008-12-14 15:05:42 +010094 void (*tx)(struct ieee80211_hw *dev, struct sk_buff *skb);
Michael Wueff1a592007-09-25 18:11:01 -070095 int (*open)(struct ieee80211_hw *dev);
96 void (*stop)(struct ieee80211_hw *dev);
97 int mode;
Christian Lamparter4e416a62008-09-01 22:48:41 +020098 u16 rx_mtu;
99 u8 headroom;
100 u8 tailroom;
Larry Finger6041e2a2008-08-03 17:58:36 -0500101 struct mutex conf_mutex;
Johannes Berg4150c572007-09-17 01:29:23 -0400102 u8 mac_addr[ETH_ALEN];
103 u8 bssid[ETH_ALEN];
Christian Lamparter78eb7482008-12-30 13:48:19 +0100104 u8 rx_diversity_mask;
105 u8 tx_diversity_mask;
Michael Wueff1a592007-09-25 18:11:01 -0700106 struct pda_iq_autocal_entry *iq_autocal;
107 unsigned int iq_autocal_len;
108 struct pda_channel_output_limit *output_limit;
109 unsigned int output_limit_len;
110 struct pda_pa_curve_data *curve_data;
Christian Lamparter69ba3e52008-12-14 14:45:30 +0100111 struct p54_rssi_linear_approximation rssical_db[IEEE80211_NUM_BANDS];
Christian Lamparter78d57eb2008-09-06 02:56:12 +0200112 unsigned int filter_flags;
Christian Lamparter40333e42008-10-08 20:52:22 +0200113 bool use_short_slot;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200114 u16 rxhw;
Michael Wueff1a592007-09-25 18:11:01 -0700115 u8 version;
116 unsigned int tx_hdr_len;
Michael Wueff1a592007-09-25 18:11:01 -0700117 unsigned int fw_var;
Christian Lamparter2b808482008-09-04 12:29:38 +0200118 unsigned int fw_interface;
Christian Lamparter09adf282008-09-06 14:25:53 +0200119 unsigned int output_power;
Christian Lampartera0db6632008-09-06 02:56:04 +0200120 u32 tsf_low32;
121 u32 tsf_high32;
Christian Lamparterced09572008-11-14 19:42:39 +0100122 u64 basic_rate_mask;
123 u16 wakeup_timer;
124 u16 aid;
Chr84df3ed2008-08-24 03:15:16 +0200125 struct ieee80211_tx_queue_stats tx_stats[8];
Christian Lamparter0fdd7c52008-10-15 03:55:37 +0200126 struct p54_edcf_queue_param qos_params[8];
Christian Lampartercc6de662008-09-06 02:56:23 +0200127 struct ieee80211_low_level_stats stats;
Christian Lamparter54fdb042008-12-13 14:14:20 +0100128 struct delayed_work work;
Christian Lampartere5ea92a2008-10-18 23:19:00 +0200129 struct sk_buff *cached_beacon;
Christian Lampartercc6de662008-09-06 02:56:23 +0200130 int noise;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200131 void *eeprom;
132 struct completion eeprom_comp;
Christian Lamparter25900ef2008-11-29 22:34:37 +0100133 u8 privacy_caps;
134 u8 rx_keycache_size;
Michael Wueff1a592007-09-25 18:11:01 -0700135};
136
137int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb);
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200138void p54_free_skb(struct ieee80211_hw *dev, struct sk_buff *skb);
Christian Lamparter4e416a62008-09-01 22:48:41 +0200139int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw);
Christian Lamparter7cb77072008-09-01 22:48:51 +0200140int p54_read_eeprom(struct ieee80211_hw *dev);
Michael Wueff1a592007-09-25 18:11:01 -0700141struct ieee80211_hw *p54_init_common(size_t priv_data_len);
142void p54_free_common(struct ieee80211_hw *dev);
143
Christian Lamparter32ddf072008-08-08 21:17:37 +0200144#endif /* P54_H */