Lines Matching defs:iwl_priv

634 struct iwl_priv {  struct
636 struct iwl_trans *trans;
637 struct device *dev; /* for debug prints only */
638 const struct iwl_cfg *cfg;
639 const struct iwl_fw *fw;
640 const struct iwl_dvm_cfg *lib;
641 unsigned long status;
643 spinlock_t sta_lock;
644 struct mutex mutex;
668 void (*rx_handlers[REPLY_MAX])(struct iwl_priv *priv, argument
671 struct iwl_notif_wait_data notif_wait;
674 struct iwl_spectrum_notification measure_report;
675 u8 measurement_status;
678 u32 ucode_beacon_time;
679 int missed_beacon_threshold;
682 u32 ibss_manager;
685 unsigned long rx_statistics_jiffies;
688 u32 rx_handlers_stats[REPLY_MAX];
691 struct iwl_rf_reset rf_reset;
694 unsigned long reload_jiffies;
695 int reload_count;
696 bool ucode_loaded;
698 u8 plcp_delta_threshold;
701 s32 temperature; /* Celsius */
702 s32 last_temperature;
704 struct iwl_wipan_noa_data __rcu *noa_data;
707 unsigned long scan_start;
708 unsigned long scan_start_tsf;
709 void *scan_cmd;
710 enum nl80211_band scan_band;
711 struct cfg80211_scan_request *scan_request;
712 struct ieee80211_vif *scan_vif;
713 enum iwl_scan_type scan_type;
714 u8 scan_tx_ant[NUM_NL80211_BANDS];
715 u8 mgmt_tx_ant;
718 u8 sta_key_max_num;
720 bool new_scan_threshold_behaviour;
722 bool wowlan;
725 struct mac_address addresses[2];
727 struct iwl_rxon_context contexts[NUM_IWL_RXON_CTX];
729 __le16 switch_channel;
731 u8 start_calib;
732 struct iwl_sensitivity_data sensitivity_data;
733 struct iwl_chain_noise_data chain_noise_data;
734 __le16 sensitivity_tbl[HD_TABLE_SIZE];
735 __le16 enhance_sensitivity_tbl[ENHANCE_HD_TABLE_ENTRIES];
737 struct iwl_ht_config current_ht_config;
740 u8 retry_rate;
742 int activity_timer_active;
744 struct iwl_power_mgr power_data;
745 struct iwl_tt_mgmt thermal_throttle;
748 int num_stations;
749 struct iwl_station_entry stations[IWLAGN_STATION_COUNT];
750 unsigned long ucode_key_table;
751 struct iwl_tid_data tid_data[IWLAGN_STATION_COUNT][IWL_MAX_TID_COUNT];
752 atomic_t num_aux_in_flight;
754 u8 mac80211_registered;
757 u8 is_open;
759 enum nl80211_iftype iw_mode;
762 u64 timestamp;
764 struct {
777 } statistics;
779 struct {
787 } accum_stats, delta_stats, max_delta_stats;
794 u8 agg_tids_count;
796 struct iwl_rx_phy_res last_phy_res;
797 u32 ampdu_ref;
798 bool last_phy_res_valid;
805 u8 phy_calib_chain_noise_reset_cmd;
806 u8 phy_calib_chain_noise_gain_cmd;
809 struct reply_tx_error_statistics reply_tx_stats;
810 struct reply_agg_tx_error_statistics reply_agg_tx_stats;
813 u8 bt_enable_flag;
814 u8 bt_status;
815 u8 bt_traffic_load, last_bt_traffic_load;
816 bool bt_ch_announce;
817 bool bt_full_concurrent;
818 bool bt_ant_couple_ok;
819 __le32 kill_ack_mask;
820 __le32 kill_cts_mask;
821 __le16 bt_valid;
822 bool reduced_txpower;
823 u16 bt_on_thresh;
824 u16 bt_duration;
825 u16 dynamic_frag_thresh;
826 u8 bt_ci_compliance;
827 struct work_struct bt_traffic_change_work;
828 bool bt_enable_pspoll;
829 struct iwl_rxon_context *cur_rssi_ctx;
830 bool bt_is_sco;
832 struct work_struct restart;
833 struct work_struct scan_completed;
834 struct work_struct abort_scan;
836 struct work_struct beacon_update;
837 struct iwl_rxon_context *beacon_ctx;
838 struct sk_buff *beacon_skb;
839 void *beacon_cmd;
841 struct work_struct tt_work;
842 struct work_struct ct_enter;
843 struct work_struct ct_exit;
844 struct work_struct start_internal_scan;
845 struct work_struct tx_flush;
846 struct work_struct bt_full_concurrency;
847 struct work_struct bt_runtime_config;
849 struct delayed_work scan_check;
852 s8 tx_power_user_lmt;
853 s8 tx_power_next;
857 struct dentry *debugfs_dir;
858 u32 dbgfs_sram_offset, dbgfs_sram_len;
859 bool disable_ht40;
860 void *wowlan_sram;
863 struct iwl_nvm_data *nvm_data;
865 u8 *eeprom_blob;
866 size_t eeprom_blob_size;
868 struct work_struct txpower_work;
869 u32 calib_disabled;
870 struct work_struct run_time_calib_work;
871 struct timer_list statistics_periodic;
872 struct timer_list ucode_trace;
874 struct iwl_event_log event_log;
899 }; /*iwl_priv */ argument