diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath.h')
| -rw-r--r-- | drivers/net/wireless/ath/ath.h | 158 | 
1 files changed, 139 insertions, 19 deletions
diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h index 20ea68c59f7..a889fd66fc6 100644 --- a/drivers/net/wireless/ath/ath.h +++ b/drivers/net/wireless/ath/ath.h @@ -17,6 +17,7 @@  #ifndef ATH_H  #define ATH_H +#include <linux/etherdevice.h>  #include <linux/skbuff.h>  #include <linux/if_ether.h>  #include <linux/spinlock.h> @@ -55,6 +56,15 @@ enum ath_device_state {  	ATH_HW_INITIALIZED,  }; +enum ath_op_flags { +	ATH_OP_INVALID, +	ATH_OP_BEACONS, +	ATH_OP_ANI_RUN, +	ATH_OP_PRIM_STA_VIF, +	ATH_OP_HW_RESET, +	ATH_OP_SCANNING, +}; +  enum ath_bus_type {  	ATH_PCI,  	ATH_AHB, @@ -62,7 +72,7 @@ enum ath_bus_type {  };  struct reg_dmn_pair_mapping { -	u16 regDmnEnum; +	u16 reg_domain;  	u16 reg_5ghz_ctl;  	u16 reg_2ghz_ctl;  }; @@ -71,9 +81,7 @@ struct ath_regulatory {  	char alpha2[2];  	u16 country_code;  	u16 max_power_level; -	u32 tp_scale;  	u16 current_rd; -	u16 current_rd_ext;  	int16_t power_limit;  	struct reg_dmn_pair_mapping *regpair;  }; @@ -104,34 +112,26 @@ enum ath_cipher {  	ATH_CIPHER_MIC = 127  }; -enum ath_drv_info { -	AR7010_DEVICE		= BIT(0), -	AR9287_DEVICE		= BIT(1), -}; -  /**   * struct ath_ops - Register read/write operations   *   * @read: Register read + * @multi_read: Multiple register read   * @write: Register write   * @enable_write_buffer: Enable multiple register writes   * @write_flush: flush buffered register writes and disable buffering   */  struct ath_ops {  	unsigned int (*read)(void *, u32 reg_offset); +	void (*multi_read)(void *, u32 *addr, u32 *val, u16 count);  	void (*write)(void *, u32 val, u32 reg_offset);  	void (*enable_write_buffer)(void *);  	void (*write_flush) (void *); +	u32 (*rmw)(void *, u32 reg_offset, u32 set, u32 clr);  };  struct ath_common; - -struct ath_bus_ops { -	enum ath_bus_type ath_bus_type; -	void (*read_cachesize)(struct ath_common *common, int *csz); -	bool (*eeprom_read)(struct ath_common *common, u32 off, u16 *data); -	void (*bt_coex_prep)(struct ath_common *common); -}; +struct ath_bus_ops;  struct ath_common {  	void *ah; @@ -139,6 +139,7 @@ struct ath_common {  	struct ieee80211_hw *hw;  	int debug_mask;  	enum ath_device_state state; +	unsigned long op_flags;  	struct ath_ani ani; @@ -148,15 +149,12 @@ struct ath_common {  	u8 curbssid[ETH_ALEN];  	u8 bssidmask[ETH_ALEN]; -	u8 tx_chainmask; -	u8 rx_chainmask; -  	u32 rx_bufsize; -	u32 driver_info;  	u32 keymax;  	DECLARE_BITMAP(keymap, ATH_KEYMAX);  	DECLARE_BITMAP(tkip_keymap, ATH_KEYMAX); +	DECLARE_BITMAP(ccmp_keymap, ATH_KEYMAX);  	enum ath_crypt_caps crypt_caps;  	unsigned int clockrate; @@ -166,13 +164,22 @@ struct ath_common {  	struct ath_cycle_counters cc_survey;  	struct ath_regulatory regulatory; +	struct ath_regulatory reg_world_copy;  	const struct ath_ops *ops;  	const struct ath_bus_ops *bus_ops; + +	bool btcoex_enabled; +	bool disable_ani; +	bool bt_ant_diversity; + +	int last_rssi; +	struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];  };  struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,  				u32 len,  				gfp_t gfp_mask); +bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr);  void ath_hw_setbssidmask(struct ath_common *common);  void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key); @@ -184,4 +191,117 @@ bool ath_hw_keyreset(struct ath_common *common, u16 entry);  void ath_hw_cycle_counters_update(struct ath_common *common);  int32_t ath_hw_get_listen_time(struct ath_common *common); +__printf(3, 4) +void ath_printk(const char *level, const struct ath_common *common, +		const char *fmt, ...); + +#define ath_emerg(common, fmt, ...)				\ +	ath_printk(KERN_EMERG, common, fmt, ##__VA_ARGS__) +#define ath_alert(common, fmt, ...)				\ +	ath_printk(KERN_ALERT, common, fmt, ##__VA_ARGS__) +#define ath_crit(common, fmt, ...)				\ +	ath_printk(KERN_CRIT, common, fmt, ##__VA_ARGS__) +#define ath_err(common, fmt, ...)				\ +	ath_printk(KERN_ERR, common, fmt, ##__VA_ARGS__) +#define ath_warn(common, fmt, ...)				\ +	ath_printk(KERN_WARNING, common, fmt, ##__VA_ARGS__) +#define ath_notice(common, fmt, ...)				\ +	ath_printk(KERN_NOTICE, common, fmt, ##__VA_ARGS__) +#define ath_info(common, fmt, ...)				\ +	ath_printk(KERN_INFO, common, fmt, ##__VA_ARGS__) + +/** + * enum ath_debug_level - atheros wireless debug level + * + * @ATH_DBG_RESET: reset processing + * @ATH_DBG_QUEUE: hardware queue management + * @ATH_DBG_EEPROM: eeprom processing + * @ATH_DBG_CALIBRATE: periodic calibration + * @ATH_DBG_INTERRUPT: interrupt processing + * @ATH_DBG_REGULATORY: regulatory processing + * @ATH_DBG_ANI: adaptive noise immunitive processing + * @ATH_DBG_XMIT: basic xmit operation + * @ATH_DBG_BEACON: beacon handling + * @ATH_DBG_CONFIG: configuration of the hardware + * @ATH_DBG_FATAL: fatal errors, this is the default, DBG_DEFAULT + * @ATH_DBG_PS: power save processing + * @ATH_DBG_HWTIMER: hardware timer handling + * @ATH_DBG_BTCOEX: bluetooth coexistance + * @ATH_DBG_BSTUCK: stuck beacons + * @ATH_DBG_MCI: Message Coexistence Interface, a private protocol + *	used exclusively for WLAN-BT coexistence starting from + *	AR9462. + * @ATH_DBG_DFS: radar datection + * @ATH_DBG_WOW: Wake on Wireless + * @ATH_DBG_ANY: enable all debugging + * + * The debug level is used to control the amount and type of debugging output + * we want to see. Each driver has its own method for enabling debugging and + * modifying debug level states -- but this is typically done through a + * module parameter 'debug' along with a respective 'debug' debugfs file + * entry. + */ +enum ATH_DEBUG { +	ATH_DBG_RESET		= 0x00000001, +	ATH_DBG_QUEUE		= 0x00000002, +	ATH_DBG_EEPROM		= 0x00000004, +	ATH_DBG_CALIBRATE	= 0x00000008, +	ATH_DBG_INTERRUPT	= 0x00000010, +	ATH_DBG_REGULATORY	= 0x00000020, +	ATH_DBG_ANI		= 0x00000040, +	ATH_DBG_XMIT		= 0x00000080, +	ATH_DBG_BEACON		= 0x00000100, +	ATH_DBG_CONFIG		= 0x00000200, +	ATH_DBG_FATAL		= 0x00000400, +	ATH_DBG_PS		= 0x00000800, +	ATH_DBG_BTCOEX		= 0x00001000, +	ATH_DBG_WMI		= 0x00002000, +	ATH_DBG_BSTUCK		= 0x00004000, +	ATH_DBG_MCI		= 0x00008000, +	ATH_DBG_DFS		= 0x00010000, +	ATH_DBG_WOW		= 0x00020000, +	ATH_DBG_ANY		= 0xffffffff +}; + +#define ATH_DBG_DEFAULT (ATH_DBG_FATAL) + +#ifdef CONFIG_ATH_DEBUG + +#define ath_dbg(common, dbg_mask, fmt, ...)				\ +do {									\ +	if ((common)->debug_mask & ATH_DBG_##dbg_mask)			\ +		ath_printk(KERN_DEBUG, common, fmt, ##__VA_ARGS__);	\ +} while (0) + +#define ATH_DBG_WARN(foo, arg...) WARN(foo, arg) +#define ATH_DBG_WARN_ON_ONCE(foo) WARN_ON_ONCE(foo) + +#else + +static inline  __attribute__ ((format (printf, 3, 4))) +void _ath_dbg(struct ath_common *common, enum ATH_DEBUG dbg_mask, +	     const char *fmt, ...) +{ +} +#define ath_dbg(common, dbg_mask, fmt, ...)				\ +	_ath_dbg(common, ATH_DBG_##dbg_mask, fmt, ##__VA_ARGS__) + +#define ATH_DBG_WARN(foo, arg...) do {} while (0) +#define ATH_DBG_WARN_ON_ONCE(foo) ({				\ +	int __ret_warn_once = !!(foo);				\ +	unlikely(__ret_warn_once);				\ +}) + +#endif /* CONFIG_ATH_DEBUG */ + +/** Returns string describing opmode, or NULL if unknown mode. */ +#ifdef CONFIG_ATH_DEBUG +const char *ath_opmode_to_string(enum nl80211_iftype opmode); +#else +static inline const char *ath_opmode_to_string(enum nl80211_iftype opmode) +{ +	return "UNKNOWN"; +} +#endif +  #endif /* ATH_H */  | 
