Lines Matching defs:iwl_priv

649 struct iwl_priv {  struct
651 struct iwl_trans *trans;
652 struct device *dev; /* for debug prints only */
653 const struct iwl_cfg *cfg;
654 const struct iwl_fw *fw;
655 const struct iwl_dvm_cfg *lib;
656 unsigned long status;
658 spinlock_t sta_lock;
659 struct mutex mutex;
683 void (*rx_handlers[REPLY_MAX])(struct iwl_priv *priv, argument
686 struct iwl_notif_wait_data notif_wait;
689 struct iwl_spectrum_notification measure_report;
690 u8 measurement_status;
693 u32 ucode_beacon_time;
694 int missed_beacon_threshold;
697 u32 ibss_manager;
700 unsigned long rx_statistics_jiffies;
703 u32 rx_handlers_stats[REPLY_MAX];
706 struct iwl_rf_reset rf_reset;
709 unsigned long reload_jiffies;
710 int reload_count;
711 bool ucode_loaded;
713 u8 plcp_delta_threshold;
716 s32 temperature; /* Celsius */
717 s32 last_temperature;
719 struct iwl_wipan_noa_data __rcu *noa_data;
722 unsigned long scan_start;
723 unsigned long scan_start_tsf;
724 void *scan_cmd;
725 enum ieee80211_band scan_band;
726 struct cfg80211_scan_request *scan_request;
727 struct ieee80211_vif *scan_vif;
728 enum iwl_scan_type scan_type;
729 u8 scan_tx_ant[IEEE80211_NUM_BANDS];
730 u8 mgmt_tx_ant;
733 u8 sta_key_max_num;
735 bool new_scan_threshold_behaviour;
737 bool wowlan;
740 struct mac_address addresses[2];
742 struct iwl_rxon_context contexts[NUM_IWL_RXON_CTX];
744 __le16 switch_channel;
746 u8 start_calib;
747 struct iwl_sensitivity_data sensitivity_data;
748 struct iwl_chain_noise_data chain_noise_data;
749 __le16 sensitivity_tbl[HD_TABLE_SIZE];
750 __le16 enhance_sensitivity_tbl[ENHANCE_HD_TABLE_ENTRIES];
752 struct iwl_ht_config current_ht_config;
755 u8 retry_rate;
757 int activity_timer_active;
759 struct iwl_power_mgr power_data;
760 struct iwl_tt_mgmt thermal_throttle;
763 int num_stations;
764 struct iwl_station_entry stations[IWLAGN_STATION_COUNT];
765 unsigned long ucode_key_table;
766 struct iwl_tid_data tid_data[IWLAGN_STATION_COUNT][IWL_MAX_TID_COUNT];
767 atomic_t num_aux_in_flight;
769 u8 mac80211_registered;
772 u8 is_open;
774 enum nl80211_iftype iw_mode;
777 u64 timestamp;
779 struct {
792 } statistics;
794 struct {
802 } accum_stats, delta_stats, max_delta_stats;
809 u8 agg_tids_count;
811 struct iwl_rx_phy_res last_phy_res;
812 u32 ampdu_ref;
813 bool last_phy_res_valid;
820 u8 phy_calib_chain_noise_reset_cmd;
821 u8 phy_calib_chain_noise_gain_cmd;
824 struct reply_tx_error_statistics reply_tx_stats;
825 struct reply_agg_tx_error_statistics reply_agg_tx_stats;
828 u8 bt_enable_flag;
829 u8 bt_status;
830 u8 bt_traffic_load, last_bt_traffic_load;
831 bool bt_ch_announce;
832 bool bt_full_concurrent;
833 bool bt_ant_couple_ok;
834 __le32 kill_ack_mask;
835 __le32 kill_cts_mask;
836 __le16 bt_valid;
837 bool reduced_txpower;
838 u16 bt_on_thresh;
839 u16 bt_duration;
840 u16 dynamic_frag_thresh;
841 u8 bt_ci_compliance;
842 struct work_struct bt_traffic_change_work;
843 bool bt_enable_pspoll;
844 struct iwl_rxon_context *cur_rssi_ctx;
845 bool bt_is_sco;
847 struct work_struct restart;
848 struct work_struct scan_completed;
849 struct work_struct abort_scan;
851 struct work_struct beacon_update;
852 struct iwl_rxon_context *beacon_ctx;
853 struct sk_buff *beacon_skb;
854 void *beacon_cmd;
856 struct work_struct tt_work;
857 struct work_struct ct_enter;
858 struct work_struct ct_exit;
859 struct work_struct start_internal_scan;
860 struct work_struct tx_flush;
861 struct work_struct bt_full_concurrency;
862 struct work_struct bt_runtime_config;
864 struct delayed_work scan_check;
867 s8 tx_power_user_lmt;
868 s8 tx_power_next;
872 struct dentry *debugfs_dir;
873 u32 dbgfs_sram_offset, dbgfs_sram_len;
874 bool disable_ht40;
875 void *wowlan_sram;
878 struct iwl_nvm_data *nvm_data;
880 u8 *eeprom_blob;
881 size_t eeprom_blob_size;
883 struct work_struct txpower_work;
884 u32 calib_disabled;
885 struct work_struct run_time_calib_work;
886 struct timer_list statistics_periodic;
887 struct timer_list ucode_trace;
889 struct iwl_event_log event_log;
914 }; /*iwl_priv */ argument