ath9k: initialize hw prior to debugfs
[pandora-kernel.git] / drivers / net / wireless / ath / ath.h
index 2ca9701..5e19a73 100644 (file)
 
 static const u8 ath_bcast_mac[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
 
+enum ath_device_state {
+       ATH_HW_UNAVAILABLE,
+       ATH_HW_INITIALIZED,
+};
+
 struct reg_dmn_pair_mapping {
        u16 regDmnEnum;
        u16 reg_5ghz_ctl;
@@ -45,10 +50,21 @@ struct ath_ops {
         void (*write)(void *, u32 val, u32 reg_offset);
 };
 
+struct ath_common;
+
+struct ath_bus_ops {
+       void            (*read_cachesize)(struct ath_common *common, int *csz);
+       void            (*cleanup)(struct ath_common *common);
+       bool            (*eeprom_read)(struct ath_common *common, u32 off, u16 *data);
+       void            (*bt_coex_prep)(struct ath_common *common);
+};
+
 struct ath_common {
        void *ah;
+       void *priv;
        struct ieee80211_hw *hw;
        int debug_mask;
+       enum ath_device_state state;
 
        u16 cachelsz;
        u16 curaid;
@@ -56,8 +72,12 @@ struct ath_common {
        u8 curbssid[ETH_ALEN];
        u8 bssidmask[ETH_ALEN];
 
+       u8 tx_chainmask;
+       u8 rx_chainmask;
+
        struct ath_regulatory regulatory;
        const struct ath_ops *ops;
+       const struct ath_bus_ops *bus_ops;
 };
 
 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,