2007-02-10 22:25:27 +08:00
|
|
|
/**
|
|
|
|
* This file contains definitions and data structures specific
|
|
|
|
* to Marvell 802.11 NIC. It contains the Device Information
|
2007-12-09 04:04:36 +08:00
|
|
|
* structure struct lbs_private..
|
2007-02-10 22:25:27 +08:00
|
|
|
*/
|
2007-11-16 07:05:47 +08:00
|
|
|
#ifndef _LBS_DEV_H_
|
|
|
|
#define _LBS_DEV_H_
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2009-10-22 21:30:48 +08:00
|
|
|
#include "scan.h"
|
|
|
|
#include "assoc.h"
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** sleep_params */
|
|
|
|
struct sleep_params {
|
2007-12-18 12:48:31 +08:00
|
|
|
uint16_t sp_error;
|
|
|
|
uint16_t sp_offset;
|
|
|
|
uint16_t sp_stabletime;
|
|
|
|
uint8_t sp_calcontrol;
|
|
|
|
uint8_t sp_extsleepclk;
|
|
|
|
uint16_t sp_reserved;
|
2007-02-10 22:25:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Mesh statistics */
|
2007-11-16 07:05:47 +08:00
|
|
|
struct lbs_mesh_stats {
|
2007-02-10 22:25:27 +08:00
|
|
|
u32 fwd_bcast_cnt; /* Fwd: Broadcast counter */
|
|
|
|
u32 fwd_unicast_cnt; /* Fwd: Unicast counter */
|
|
|
|
u32 fwd_drop_ttl; /* Fwd: TTL zero */
|
|
|
|
u32 fwd_drop_rbt; /* Fwd: Recently Broadcasted */
|
|
|
|
u32 fwd_drop_noroute; /* Fwd: No route to Destination */
|
|
|
|
u32 fwd_drop_nobuf; /* Fwd: Run out of internal buffers */
|
|
|
|
u32 drop_blind; /* Rx: Dropped by blinding table */
|
2007-05-26 00:12:06 +08:00
|
|
|
u32 tx_failed_cnt; /* Tx: Failed transmissions */
|
2007-02-10 22:25:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Private structure for the MV device */
|
2007-11-23 22:43:44 +08:00
|
|
|
struct lbs_private {
|
2009-10-06 22:31:54 +08:00
|
|
|
struct wireless_dev *wdev;
|
2007-02-10 22:25:27 +08:00
|
|
|
int mesh_open;
|
2009-03-26 00:51:16 +08:00
|
|
|
int mesh_fw_ver;
|
2007-02-10 22:25:27 +08:00
|
|
|
int infra_open;
|
2007-08-03 01:16:02 +08:00
|
|
|
int mesh_autostart_enabled;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-05-26 01:05:16 +08:00
|
|
|
char name[DEV_NAME_LEN];
|
|
|
|
|
|
|
|
void *card;
|
|
|
|
struct net_device *dev;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-08-03 01:16:55 +08:00
|
|
|
struct net_device *mesh_dev; /* Virtual device */
|
|
|
|
struct net_device *rtap_net_dev;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
struct iw_statistics wstats;
|
2007-11-16 07:05:47 +08:00
|
|
|
struct lbs_mesh_stats mstats;
|
2007-02-10 22:25:27 +08:00
|
|
|
struct dentry *debugfs_dir;
|
|
|
|
struct dentry *debugfs_debug;
|
|
|
|
struct dentry *debugfs_files[6];
|
|
|
|
|
|
|
|
struct dentry *events_dir;
|
|
|
|
struct dentry *debugfs_events_files[6];
|
|
|
|
|
|
|
|
struct dentry *regs_dir;
|
|
|
|
struct dentry *debugfs_regs_files[6];
|
|
|
|
|
|
|
|
u32 mac_offset;
|
|
|
|
u32 bbp_offset;
|
|
|
|
u32 rf_offset;
|
|
|
|
|
2009-10-01 11:04:38 +08:00
|
|
|
/** Deep sleep flag */
|
|
|
|
int is_deep_sleep;
|
|
|
|
/** Auto deep sleep enabled flag */
|
|
|
|
int is_auto_deep_sleep_enabled;
|
|
|
|
/** Device wakeup required flag */
|
|
|
|
int wakeup_dev_required;
|
|
|
|
/** Auto deep sleep flag*/
|
|
|
|
int is_activity_detected;
|
|
|
|
/** Auto deep sleep timeout (in miliseconds) */
|
|
|
|
int auto_deep_sleep_timeout;
|
|
|
|
|
|
|
|
/** Deep sleep wait queue */
|
|
|
|
wait_queue_head_t ds_awake_q;
|
|
|
|
|
2007-05-26 01:05:16 +08:00
|
|
|
/* Download sent:
|
|
|
|
bit0 1/0=data_sent/data_tx_done,
|
|
|
|
bit1 1/0=cmd_sent/cmd_tx_done,
|
|
|
|
all other bits reserved 0 */
|
|
|
|
u8 dnld_sent;
|
|
|
|
|
2007-02-10 22:25:27 +08:00
|
|
|
/** thread to service interrupts */
|
2007-08-02 23:32:25 +08:00
|
|
|
struct task_struct *main_thread;
|
|
|
|
wait_queue_head_t waitq;
|
2007-08-03 01:19:04 +08:00
|
|
|
struct workqueue_struct *work_thread;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2008-05-20 20:32:45 +08:00
|
|
|
struct work_struct mcast_work;
|
|
|
|
|
2008-01-29 00:28:05 +08:00
|
|
|
/** Scanning */
|
2007-08-03 01:19:04 +08:00
|
|
|
struct delayed_work scan_work;
|
2007-02-10 22:25:27 +08:00
|
|
|
struct delayed_work assoc_work;
|
2007-05-31 00:14:34 +08:00
|
|
|
struct work_struct sync_channel;
|
2008-01-29 00:28:05 +08:00
|
|
|
/* remember which channel was scanned last, != 0 if currently scanning */
|
|
|
|
int scan_channel;
|
2009-10-22 21:30:47 +08:00
|
|
|
u8 scan_ssid[IEEE80211_MAX_SSID_LEN + 1];
|
2008-03-05 14:05:32 +08:00
|
|
|
u8 scan_ssid_len;
|
2007-05-26 00:17:06 +08:00
|
|
|
|
|
|
|
/** Hardware access */
|
2007-11-23 22:43:44 +08:00
|
|
|
int (*hw_host_to_card) (struct lbs_private *priv, u8 type, u8 *payload, u16 nb);
|
2008-05-20 23:43:31 +08:00
|
|
|
void (*reset_card) (struct lbs_private *priv);
|
2009-10-01 11:04:38 +08:00
|
|
|
int (*enter_deep_sleep) (struct lbs_private *priv);
|
|
|
|
int (*exit_deep_sleep) (struct lbs_private *priv);
|
|
|
|
int (*reset_deep_sleep_wakeup) (struct lbs_private *priv);
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-12-13 09:06:06 +08:00
|
|
|
/* Wake On LAN */
|
|
|
|
uint32_t wol_criteria;
|
|
|
|
uint8_t wol_gpio;
|
|
|
|
uint8_t wol_gap;
|
|
|
|
|
2007-12-09 04:04:36 +08:00
|
|
|
/** Wlan adapter data structure*/
|
2007-02-10 22:25:27 +08:00
|
|
|
/** STATUS variables */
|
2008-01-16 22:55:22 +08:00
|
|
|
u32 fwrelease;
|
2007-02-10 22:25:27 +08:00
|
|
|
u32 fwcapinfo;
|
|
|
|
|
|
|
|
struct mutex lock;
|
|
|
|
|
2007-12-10 12:54:27 +08:00
|
|
|
/* TX packet ready to be sent... */
|
|
|
|
int tx_pending_len; /* -1 while building packet */
|
|
|
|
|
|
|
|
u8 tx_pending_buf[LBS_UPLD_SIZE];
|
2007-02-10 22:25:27 +08:00
|
|
|
/* protected by hard_start_xmit serialization */
|
|
|
|
|
|
|
|
/** command-related variables */
|
|
|
|
u16 seqnum;
|
|
|
|
|
|
|
|
struct cmd_ctrl_node *cmd_array;
|
|
|
|
/** Current command */
|
|
|
|
struct cmd_ctrl_node *cur_cmd;
|
|
|
|
int cur_cmd_retcode;
|
|
|
|
/** command Queues */
|
|
|
|
/** Free command buffers */
|
|
|
|
struct list_head cmdfreeq;
|
|
|
|
/** Pending command buffers */
|
|
|
|
struct list_head cmdpendingq;
|
|
|
|
|
|
|
|
wait_queue_head_t cmd_pending;
|
|
|
|
|
2008-04-01 20:50:43 +08:00
|
|
|
/* Command responses sent from the hardware to the driver */
|
|
|
|
u8 resp_idx;
|
|
|
|
u8 resp_buf[2][LBS_UPLD_SIZE];
|
|
|
|
u32 resp_len[2];
|
|
|
|
|
|
|
|
/* Events sent from hardware to driver */
|
|
|
|
struct kfifo *event_fifo;
|
|
|
|
|
|
|
|
/* nickname */
|
|
|
|
u8 nodename[16];
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** spin locks */
|
|
|
|
spinlock_t driver_lock;
|
|
|
|
|
|
|
|
/** Timers */
|
|
|
|
struct timer_list command_timer;
|
2009-10-01 11:04:38 +08:00
|
|
|
struct timer_list auto_deepsleep_timer;
|
2007-12-16 08:33:43 +08:00
|
|
|
int nr_retries;
|
|
|
|
int cmd_timed_out;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** current ssid/bssid related parameters*/
|
|
|
|
struct current_bss_params curbssparams;
|
2007-12-13 12:29:13 +08:00
|
|
|
|
|
|
|
uint16_t mesh_tlv;
|
2009-10-22 21:30:47 +08:00
|
|
|
u8 mesh_ssid[IEEE80211_MAX_SSID_LEN + 1];
|
2007-12-12 07:56:42 +08:00
|
|
|
u8 mesh_ssid_len;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-05-11 10:58:02 +08:00
|
|
|
/* IW_MODE_* */
|
|
|
|
u8 mode;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-05-26 04:15:56 +08:00
|
|
|
/* Scan results list */
|
|
|
|
struct list_head network_list;
|
|
|
|
struct list_head network_free_list;
|
|
|
|
struct bss_descriptor *networks;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-11-21 06:44:28 +08:00
|
|
|
u16 beacon_period;
|
|
|
|
u8 beacon_enable;
|
2007-02-10 22:25:27 +08:00
|
|
|
u8 adhoccreate;
|
|
|
|
|
|
|
|
/** capability Info used in Association, start, join */
|
2007-08-02 22:43:44 +08:00
|
|
|
u16 capability;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** MAC address information */
|
|
|
|
u8 current_addr[ETH_ALEN];
|
|
|
|
u8 multicastlist[MRVDRV_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
|
|
|
|
u32 nr_of_multicastmacaddr;
|
|
|
|
|
|
|
|
/** 802.11 statistics */
|
|
|
|
// struct cmd_DS_802_11_GET_STAT wlan802_11Stat;
|
|
|
|
|
2008-05-24 17:59:49 +08:00
|
|
|
uint16_t enablehwauto;
|
|
|
|
uint16_t ratebitmap;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
u8 txretrycount;
|
|
|
|
|
|
|
|
/** Tx-related variables (for single packet tx) */
|
|
|
|
struct sk_buff *currenttxskb;
|
|
|
|
|
|
|
|
/** NIC Operation characteristics */
|
2008-03-12 23:06:43 +08:00
|
|
|
u16 mac_control;
|
2007-02-10 22:25:27 +08:00
|
|
|
u32 connect_status;
|
2007-11-21 06:44:14 +08:00
|
|
|
u32 mesh_connect_status;
|
2007-02-10 22:25:27 +08:00
|
|
|
u16 regioncode;
|
2008-08-20 03:15:35 +08:00
|
|
|
s16 txpower_cur;
|
|
|
|
s16 txpower_min;
|
|
|
|
s16 txpower_max;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** POWER MANAGEMENT AND PnP SUPPORT */
|
|
|
|
u8 surpriseremoved;
|
|
|
|
|
|
|
|
u16 psmode; /* Wlan802_11PowermodeCAM=disable
|
|
|
|
Wlan802_11PowermodeMAX_PSP=enable */
|
|
|
|
u32 psstate;
|
|
|
|
u8 needtowakeup;
|
|
|
|
|
2007-05-26 05:09:41 +08:00
|
|
|
struct assoc_request * pending_assoc_req;
|
|
|
|
struct assoc_request * in_progress_assoc_req;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** Encryption parameter */
|
2007-11-16 07:05:47 +08:00
|
|
|
struct lbs_802_11_security secinfo;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** WEP keys */
|
2007-08-02 22:45:55 +08:00
|
|
|
struct enc_key wep_keys[4];
|
2007-02-10 22:25:27 +08:00
|
|
|
u16 wep_tx_keyidx;
|
|
|
|
|
|
|
|
/** WPA keys */
|
2007-08-02 22:45:55 +08:00
|
|
|
struct enc_key wpa_mcast_key;
|
|
|
|
struct enc_key wpa_unicast_key;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** WPA Information Elements*/
|
|
|
|
u8 wpa_ie[MAX_WPA_IE_LEN];
|
|
|
|
u8 wpa_ie_len;
|
|
|
|
|
|
|
|
/** Requested Signal Strength*/
|
|
|
|
u16 SNR[MAX_TYPE_B][MAX_TYPE_AVG];
|
|
|
|
u16 NF[MAX_TYPE_B][MAX_TYPE_AVG];
|
|
|
|
u8 RSSI[MAX_TYPE_B][MAX_TYPE_AVG];
|
|
|
|
u8 rawSNR[DEFAULT_DATA_AVG_FACTOR];
|
|
|
|
u8 rawNF[DEFAULT_DATA_AVG_FACTOR];
|
|
|
|
u16 nextSNRNF;
|
|
|
|
u16 numSNRNF;
|
|
|
|
|
2008-08-22 05:51:07 +08:00
|
|
|
u8 radio_on;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-08-02 23:40:45 +08:00
|
|
|
/** data rate stuff */
|
|
|
|
u8 cur_rate;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
|
|
|
/** RF calibration data */
|
|
|
|
|
|
|
|
#define MAX_REGION_CHANNEL_NUM 2
|
|
|
|
/** region channel data */
|
|
|
|
struct region_channel region_channel[MAX_REGION_CHANNEL_NUM];
|
|
|
|
|
|
|
|
/** MISCELLANEOUS */
|
2007-11-16 07:05:47 +08:00
|
|
|
struct lbs_offset_value offsetvalue;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-08-03 01:16:55 +08:00
|
|
|
u32 monitormode;
|
2007-02-10 22:25:27 +08:00
|
|
|
u8 fw_ready;
|
|
|
|
};
|
|
|
|
|
2008-03-26 20:22:11 +08:00
|
|
|
extern struct cmd_confirm_sleep confirm_sleep;
|
|
|
|
|
2007-11-16 07:05:47 +08:00
|
|
|
#endif
|