Lines Matching defs:iwl_priv

629 struct iwl_priv {  struct
631 struct iwl_trans *trans;
632 struct device *dev; /* for debug prints only */
633 const struct iwl_cfg *cfg;
634 const struct iwl_fw *fw;
635 const struct iwl_dvm_cfg *lib;
636 unsigned long status;
638 spinlock_t sta_lock;
639 struct mutex mutex;
663 void (*rx_handlers[REPLY_MAX])(struct iwl_priv *priv, argument
666 struct iwl_notif_wait_data notif_wait;
669 struct iwl_spectrum_notification measure_report;
670 u8 measurement_status;
673 u32 ucode_beacon_time;
674 int missed_beacon_threshold;
677 u32 ibss_manager;
680 unsigned long rx_statistics_jiffies;
683 u32 rx_handlers_stats[REPLY_MAX];
686 struct iwl_rf_reset rf_reset;
689 unsigned long reload_jiffies;
690 int reload_count;
691 bool ucode_loaded;
693 u8 plcp_delta_threshold;
696 s32 temperature; /* Celsius */
697 s32 last_temperature;
699 struct iwl_wipan_noa_data __rcu *noa_data;
702 unsigned long scan_start;
703 unsigned long scan_start_tsf;
704 void *scan_cmd;
705 enum nl80211_band scan_band;
706 struct cfg80211_scan_request *scan_request;
707 struct ieee80211_vif *scan_vif;
708 enum iwl_scan_type scan_type;
709 u8 scan_tx_ant[NUM_NL80211_BANDS];
710 u8 mgmt_tx_ant;
713 u8 sta_key_max_num;
715 bool new_scan_threshold_behaviour;
717 bool wowlan;
720 struct mac_address addresses[2];
722 struct iwl_rxon_context contexts[NUM_IWL_RXON_CTX];
724 __le16 switch_channel;
726 u8 start_calib;
727 struct iwl_sensitivity_data sensitivity_data;
728 struct iwl_chain_noise_data chain_noise_data;
729 __le16 sensitivity_tbl[HD_TABLE_SIZE];
730 __le16 enhance_sensitivity_tbl[ENHANCE_HD_TABLE_ENTRIES];
732 struct iwl_ht_config current_ht_config;
735 u8 retry_rate;
737 int activity_timer_active;
739 struct iwl_power_mgr power_data;
740 struct iwl_tt_mgmt thermal_throttle;
743 int num_stations;
744 struct iwl_station_entry stations[IWLAGN_STATION_COUNT];
745 unsigned long ucode_key_table;
746 struct iwl_tid_data tid_data[IWLAGN_STATION_COUNT][IWL_MAX_TID_COUNT];
747 atomic_t num_aux_in_flight;
749 u8 mac80211_registered;
752 u8 is_open;
754 enum nl80211_iftype iw_mode;
757 u64 timestamp;
759 struct {
772 } statistics;
774 struct {
782 } accum_stats, delta_stats, max_delta_stats;
789 u8 agg_tids_count;
791 struct iwl_rx_phy_res last_phy_res;
792 u32 ampdu_ref;
793 bool last_phy_res_valid;
800 u8 phy_calib_chain_noise_reset_cmd;
801 u8 phy_calib_chain_noise_gain_cmd;
804 struct reply_tx_error_statistics reply_tx_stats;
805 struct reply_agg_tx_error_statistics reply_agg_tx_stats;
808 u8 bt_enable_flag;
809 u8 bt_status;
810 u8 bt_traffic_load, last_bt_traffic_load;
811 bool bt_ch_announce;
812 bool bt_full_concurrent;
813 __le32 kill_ack_mask;
814 __le32 kill_cts_mask;
815 __le16 bt_valid;
816 bool reduced_txpower;
817 u16 bt_on_thresh;
818 u16 bt_duration;
819 u16 dynamic_frag_thresh;
820 u8 bt_ci_compliance;
821 struct work_struct bt_traffic_change_work;
822 bool bt_enable_pspoll;
823 struct iwl_rxon_context *cur_rssi_ctx;
824 bool bt_is_sco;
826 struct work_struct restart;
827 struct work_struct scan_completed;
828 struct work_struct abort_scan;
830 struct work_struct beacon_update;
831 struct iwl_rxon_context *beacon_ctx;
832 struct sk_buff *beacon_skb;
833 void *beacon_cmd;
835 struct work_struct tt_work;
836 struct work_struct ct_enter;
837 struct work_struct ct_exit;
838 struct work_struct start_internal_scan;
839 struct work_struct tx_flush;
840 struct work_struct bt_full_concurrency;
841 struct work_struct bt_runtime_config;
843 struct delayed_work scan_check;
846 s8 tx_power_user_lmt;
847 s8 tx_power_next;
851 struct dentry *debugfs_dir;
852 u32 dbgfs_sram_offset, dbgfs_sram_len;
853 bool disable_ht40;
854 void *wowlan_sram;
857 struct iwl_nvm_data *nvm_data;
859 u8 *eeprom_blob;
860 size_t eeprom_blob_size;
862 struct work_struct txpower_work;
863 u32 calib_disabled;
864 struct work_struct run_time_calib_work;
865 struct timer_list statistics_periodic;
866 struct timer_list ucode_trace;
868 struct iwl_event_log event_log;
893 }; /*iwl_priv */ argument