Skip to content

Commit

Permalink
iwlwifi: 3945 drop usage of union tsf
Browse files Browse the repository at this point in the history
This patch replaces union tsf with u64
This also allows to use iwl_error_res
and iwl_rxon_time_cmd instead of 3945 structures

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Tomas Winkler authored and John W. Linville committed Jan 29, 2009
1 parent 4c89725 commit 28afaf9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 48 deletions.
33 changes: 1 addition & 32 deletions drivers/net/wireless/iwlwifi/iwl-3945-commands.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,25 +173,6 @@ struct iwl3945_alive_resp {
__le32 is_valid;
} __attribute__ ((packed));

union tsf {
u8 byte[8];
__le16 word[4];
__le32 dw[2];
};

/*
* REPLY_ERROR = 0x2 (response only, not a command)
*/
struct iwl3945_error_resp {
__le32 error_type;
u8 cmd_id;
u8 reserved1;
__le16 bad_cmd_seq_num;
__le16 reserved2;
__le32 error_info;
union tsf timestamp;
} __attribute__ ((packed));

/******************************************************************************
* (1)
* RXON Commands & Responses:
Expand Down Expand Up @@ -245,18 +226,6 @@ struct iwl3945_rxon_assoc_cmd {
__le16 reserved;
} __attribute__ ((packed));

/*
* REPLY_RXON_TIMING = 0x14 (command, has simple generic response)
*/
struct iwl3945_rxon_time_cmd {
union tsf timestamp;
__le16 beacon_interval;
__le16 atim_window;
__le32 beacon_init_val;
__le16 listen_interval;
__le16 reserved;
} __attribute__ ((packed));

/*
* REPLY_CHANNEL_SWITCH = 0x72 (command, has simple generic response)
*/
Expand Down Expand Up @@ -783,7 +752,7 @@ struct iwl3945_rx_packet {
struct iwl3945_tx_resp tx_resp;
struct iwl_spectrum_notification spectrum_notif;
struct iwl_csa_notification csa_notif;
struct iwl3945_error_resp err_resp;
struct iwl_error_resp err_resp;
struct iwl_card_state_notif card_state_notif;
struct iwl3945_beacon_notif beacon_status;
struct iwl_add_sta_resp add_sta;
Expand Down
7 changes: 3 additions & 4 deletions drivers/net/wireless/iwlwifi/iwl-3945.h
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ struct iwl3945_cmd {
u16 val16;
u32 val32;
struct iwl_bt_cmd bt;
struct iwl3945_rxon_time_cmd rxon_time;
struct iwl_rxon_time_cmd rxon_time;
struct iwl_powertable_cmd powertable;
struct iwl_qosparam_cmd qosparam;
struct iwl3945_tx_cmd tx;
Expand Down Expand Up @@ -754,7 +754,7 @@ struct iwl3945_priv {
struct fw_desc ucode_boot; /* bootstrap inst */


struct iwl3945_rxon_time_cmd rxon_timing;
struct iwl_rxon_time_cmd rxon_timing;

/* We declare this const so it can only be
* changed via explicit cast within the
Expand Down Expand Up @@ -844,8 +844,7 @@ struct iwl3945_priv {
struct sk_buff *ibss_beacon;

/* Last Rx'd beacon timestamp */
u32 timestamp0;
u32 timestamp1;
u64 timestamp;
u16 beacon_int;
struct iwl3945_driver_hw_info hw_setting;
struct ieee80211_vif *vif;
Expand Down
18 changes: 6 additions & 12 deletions drivers/net/wireless/iwlwifi/iwl3945-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -2058,13 +2058,10 @@ static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
conf = ieee80211_get_hw_conf(priv->hw);

spin_lock_irqsave(&priv->lock, flags);
priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);

priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;

tsf = priv->timestamp1;
tsf = ((tsf << 32) | priv->timestamp0);
tsf = priv->timestamp;

beacon_int = priv->beacon_int;
spin_unlock_irqrestore(&priv->lock, flags);
Expand Down Expand Up @@ -6306,7 +6303,7 @@ static void iwl3945_post_associate(struct iwl3945_priv *priv)
priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
iwl3945_commit_rxon(priv);

memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
iwl3945_setup_rxon_timing(priv);
rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
sizeof(priv->rxon_timing), &priv->rxon_timing);
Expand Down Expand Up @@ -6686,7 +6683,7 @@ static void iwl3945_config_ap(struct iwl3945_priv *priv)
iwl3945_commit_rxon(priv);

/* RXON Timing */
memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
iwl3945_setup_rxon_timing(priv);
rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
sizeof(priv->rxon_timing), &priv->rxon_timing);
Expand Down Expand Up @@ -6934,9 +6931,7 @@ static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
if (bss_conf->assoc) {
priv->assoc_id = bss_conf->aid;
priv->beacon_int = bss_conf->beacon_int;
priv->timestamp0 = bss_conf->timestamp & 0xFFFFFFFF;
priv->timestamp1 = (bss_conf->timestamp >> 32) &
0xFFFFFFFF;
priv->timestamp = bss_conf->timestamp;
priv->assoc_capability = bss_conf->assoc_capability;
priv->next_scan_jiffies = jiffies +
IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Expand Down Expand Up @@ -7178,8 +7173,7 @@ static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
priv->ibss_beacon = NULL;

priv->beacon_int = priv->hw->conf.beacon_int;
priv->timestamp1 = 0;
priv->timestamp0 = 0;
priv->timestamp = 0;
if ((priv->iw_mode == NL80211_IFTYPE_STATION))
priv->beacon_int = 0;

Expand Down

0 comments on commit 28afaf9

Please sign in to comment.