Lines Matching defs:iwl_priv

626 struct iwl_priv {  struct
628 struct iwl_trans *trans;
629 struct device *dev; /* for debug prints only */
630 const struct iwl_cfg *cfg;
631 const struct iwl_fw *fw;
632 const struct iwl_dvm_cfg *lib;
633 unsigned long status;
635 spinlock_t sta_lock;
636 struct mutex mutex;
660 void (*rx_handlers[REPLY_MAX])(struct iwl_priv *priv, argument
663 struct iwl_notif_wait_data notif_wait;
666 struct iwl_spectrum_notification measure_report;
667 u8 measurement_status;
670 u32 ucode_beacon_time;
671 int missed_beacon_threshold;
674 u32 ibss_manager;
677 unsigned long rx_statistics_jiffies;
680 u32 rx_handlers_stats[REPLY_MAX];
683 struct iwl_rf_reset rf_reset;
686 unsigned long reload_jiffies;
687 int reload_count;
688 bool ucode_loaded;
690 u8 plcp_delta_threshold;
693 s32 temperature; /* Celsius */
694 s32 last_temperature;
696 struct iwl_wipan_noa_data __rcu *noa_data;
699 unsigned long scan_start;
700 unsigned long scan_start_tsf;
701 size_t scan_cmd_size;
702 void *scan_cmd;
703 enum nl80211_band scan_band;
704 struct cfg80211_scan_request *scan_request;
705 struct ieee80211_vif *scan_vif;
706 enum iwl_scan_type scan_type;
707 u8 scan_tx_ant[NUM_NL80211_BANDS];
708 u8 mgmt_tx_ant;
711 u8 sta_key_max_num;
713 bool new_scan_threshold_behaviour;
715 bool wowlan;
718 struct mac_address addresses[2];
720 struct iwl_rxon_context contexts[NUM_IWL_RXON_CTX];
722 __le16 switch_channel;
724 u8 start_calib;
725 struct iwl_sensitivity_data sensitivity_data;
726 struct iwl_chain_noise_data chain_noise_data;
727 __le16 sensitivity_tbl[HD_TABLE_SIZE];
728 __le16 enhance_sensitivity_tbl[ENHANCE_HD_TABLE_ENTRIES];
730 struct iwl_ht_config current_ht_config;
733 u8 retry_rate;
735 int activity_timer_active;
737 struct iwl_power_mgr power_data;
738 struct iwl_tt_mgmt thermal_throttle;
741 int num_stations;
742 struct iwl_station_entry stations[IWLAGN_STATION_COUNT];
743 unsigned long ucode_key_table;
744 struct iwl_tid_data tid_data[IWLAGN_STATION_COUNT][IWL_MAX_TID_COUNT];
745 atomic_t num_aux_in_flight;
747 u8 mac80211_registered;
750 u8 is_open;
752 enum nl80211_iftype iw_mode;
755 u64 timestamp;
757 struct {
770 } statistics;
772 struct {
780 } accum_stats, delta_stats, max_delta_stats;
787 u8 agg_tids_count;
789 struct iwl_rx_phy_res last_phy_res;
790 u32 ampdu_ref;
791 bool last_phy_res_valid;
798 u8 phy_calib_chain_noise_reset_cmd;
799 u8 phy_calib_chain_noise_gain_cmd;
802 struct reply_tx_error_statistics reply_tx_stats;
803 struct reply_agg_tx_error_statistics reply_agg_tx_stats;
806 u8 bt_enable_flag;
807 u8 bt_status;
808 u8 bt_traffic_load, last_bt_traffic_load;
809 bool bt_ch_announce;
810 bool bt_full_concurrent;
811 __le32 kill_ack_mask;
812 __le32 kill_cts_mask;
813 __le16 bt_valid;
814 bool reduced_txpower;
815 u16 bt_on_thresh;
816 u16 bt_duration;
817 u16 dynamic_frag_thresh;
818 u8 bt_ci_compliance;
819 struct work_struct bt_traffic_change_work;
820 bool bt_enable_pspoll;
821 struct iwl_rxon_context *cur_rssi_ctx;
822 bool bt_is_sco;
824 struct work_struct restart;
825 struct work_struct scan_completed;
826 struct work_struct abort_scan;
828 struct work_struct beacon_update;
829 struct iwl_rxon_context *beacon_ctx;
830 struct sk_buff *beacon_skb;
831 void *beacon_cmd;
833 struct work_struct tt_work;
834 struct work_struct ct_enter;
835 struct work_struct ct_exit;
836 struct work_struct start_internal_scan;
837 struct work_struct tx_flush;
838 struct work_struct bt_full_concurrency;
839 struct work_struct bt_runtime_config;
841 struct delayed_work scan_check;
844 s8 tx_power_user_lmt;
845 s8 tx_power_next;
849 struct dentry *debugfs_dir;
850 u32 dbgfs_sram_offset, dbgfs_sram_len;
851 bool disable_ht40;
852 void *wowlan_sram;
855 struct iwl_nvm_data *nvm_data;
857 u8 *eeprom_blob;
858 size_t eeprom_blob_size;
860 struct work_struct txpower_work;
861 u32 calib_disabled;
862 struct work_struct run_time_calib_work;
863 struct timer_list statistics_periodic;
864 struct timer_list ucode_trace;
866 struct iwl_event_log event_log;
891 }; /*iwl_priv */ argument