blob: ebe1ea1f565b3d696ae5ce380d168e52173db570 [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
John W. Linville27df6052008-10-22 16:41:55 -040047struct p54_hdr {
48 __le16 flags;
Michael Wueff1a592007-09-25 18:11:01 -070049 __le16 len;
50 __le32 req_id;
John W. Linville27df6052008-10-22 16:41:55 -040051 __le16 type; /* enum p54_control_frame_types */
52 u8 rts_tries;
53 u8 tries;
Michael Wueff1a592007-09-25 18:11:01 -070054 u8 data[0];
55} __attribute__ ((packed));
56
Christian Lamparter0fdd7c52008-10-15 03:55:37 +020057struct p54_edcf_queue_param {
58 __le16 aifs;
59 __le16 cwmin;
60 __le16 cwmax;
61 __le16 txop;
62} __attribute__ ((packed));
63
Christian Lamparter7cb77072008-09-01 22:48:51 +020064#define EEPROM_READBACK_LEN 0x3fc
Michael Wueff1a592007-09-25 18:11:01 -070065
66#define ISL38XX_DEV_FIRMWARE_ADDR 0x20000
67
Christian Lamparter2b808482008-09-04 12:29:38 +020068#define FW_FMAC 0x464d4143
69#define FW_LM86 0x4c4d3836
70#define FW_LM87 0x4c4d3837
71#define FW_LM20 0x4c4d3230
72
Michael Wueff1a592007-09-25 18:11:01 -070073struct p54_common {
74 u32 rx_start;
75 u32 rx_end;
76 struct sk_buff_head tx_queue;
Christian Lamparterb92f30d2008-10-15 04:07:16 +020077 void (*tx)(struct ieee80211_hw *dev, struct sk_buff *skb,
78 int free_on_tx);
Michael Wueff1a592007-09-25 18:11:01 -070079 int (*open)(struct ieee80211_hw *dev);
80 void (*stop)(struct ieee80211_hw *dev);
81 int mode;
Christian Lamparter4e416a62008-09-01 22:48:41 +020082 u16 rx_mtu;
83 u8 headroom;
84 u8 tailroom;
Larry Finger6041e2a2008-08-03 17:58:36 -050085 struct mutex conf_mutex;
Johannes Berg4150c572007-09-17 01:29:23 -040086 u8 mac_addr[ETH_ALEN];
87 u8 bssid[ETH_ALEN];
Christian Lamparter5e734442008-10-15 04:07:56 +020088 u16 mac_mode;
Michael Wueff1a592007-09-25 18:11:01 -070089 struct pda_iq_autocal_entry *iq_autocal;
90 unsigned int iq_autocal_len;
91 struct pda_channel_output_limit *output_limit;
92 unsigned int output_limit_len;
93 struct pda_pa_curve_data *curve_data;
Christian Lamparter78d57eb2008-09-06 02:56:12 +020094 unsigned int filter_flags;
Christian Lamparter40333e42008-10-08 20:52:22 +020095 bool use_short_slot;
Christian Lamparter7cb77072008-09-01 22:48:51 +020096 u16 rxhw;
Michael Wueff1a592007-09-25 18:11:01 -070097 u8 version;
Christian Lampartere0a58ea2008-09-03 22:25:20 +020098 u8 rx_antenna;
Michael Wueff1a592007-09-25 18:11:01 -070099 unsigned int tx_hdr_len;
Michael Wueff1a592007-09-25 18:11:01 -0700100 unsigned int fw_var;
Christian Lamparter2b808482008-09-04 12:29:38 +0200101 unsigned int fw_interface;
Christian Lamparter09adf282008-09-06 14:25:53 +0200102 unsigned int output_power;
Christian Lampartera0db6632008-09-06 02:56:04 +0200103 u32 tsf_low32;
104 u32 tsf_high32;
Christian Lamparterced09572008-11-14 19:42:39 +0100105 u64 basic_rate_mask;
106 u16 wakeup_timer;
107 u16 aid;
Chr84df3ed2008-08-24 03:15:16 +0200108 struct ieee80211_tx_queue_stats tx_stats[8];
Christian Lamparter0fdd7c52008-10-15 03:55:37 +0200109 struct p54_edcf_queue_param qos_params[8];
Christian Lampartercc6de662008-09-06 02:56:23 +0200110 struct ieee80211_low_level_stats stats;
111 struct timer_list stats_timer;
112 struct completion stats_comp;
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200113 struct sk_buff *cached_stats;
Christian Lampartere5ea92a2008-10-18 23:19:00 +0200114 struct sk_buff *cached_beacon;
Christian Lampartercc6de662008-09-06 02:56:23 +0200115 int noise;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200116 void *eeprom;
117 struct completion eeprom_comp;
Christian Lamparter25900ef2008-11-29 22:34:37 +0100118 u8 privacy_caps;
119 u8 rx_keycache_size;
Michael Wueff1a592007-09-25 18:11:01 -0700120};
121
122int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb);
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200123void p54_free_skb(struct ieee80211_hw *dev, struct sk_buff *skb);
Christian Lamparter4e416a62008-09-01 22:48:41 +0200124int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw);
Christian Lamparter7cb77072008-09-01 22:48:51 +0200125int p54_read_eeprom(struct ieee80211_hw *dev);
Michael Wueff1a592007-09-25 18:11:01 -0700126struct ieee80211_hw *p54_init_common(size_t priv_data_len);
127void p54_free_common(struct ieee80211_hw *dev);
128
Christian Lamparter32ddf072008-08-08 21:17:37 +0200129#endif /* P54_H */