Lines Matching +full:timing +full:- +full:adjustment

1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2011-2012, Pavel Zubarev <pavel.zubarev@gmail.com>
4 * Copyright 2011-2012, Marco Porsch <marco.porsch@s2005.tu-chemnitz.de>
5 * Copyright 2011-2012, cozybit Inc.
11 #include "driver-ops.h"
14 * which we do no TSF adjustment.
20 * introduced by TSF adjustment latency.
37 * mesh_peer_tbtt_adjusting - check if an mp is currently adjusting its TBTT
44 (cfg->meshconf_cap & IEEE80211_MESHCONF_CAPAB_TBTT_ADJUSTING); in mesh_peer_tbtt_adjusting()
49 struct ieee80211_local *local = sdata->local; in mesh_sync_adjust_tsf()
50 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; in mesh_sync_adjust_tsf()
51 /* sdata->vif.bss_conf.beacon_int in 1024us units, 0.04% */ in mesh_sync_adjust_tsf()
52 u64 beacon_int_fraction = sdata->vif.bss_conf.beacon_int * 1024 / 2500; in mesh_sync_adjust_tsf()
56 spin_lock_bh(&ifmsh->sync_offset_lock); in mesh_sync_adjust_tsf()
57 if (ifmsh->sync_offset_clockdrift_max < beacon_int_fraction) { in mesh_sync_adjust_tsf()
59 (long long) ifmsh->sync_offset_clockdrift_max); in mesh_sync_adjust_tsf()
60 tsfdelta = -ifmsh->sync_offset_clockdrift_max; in mesh_sync_adjust_tsf()
61 ifmsh->sync_offset_clockdrift_max = 0; in mesh_sync_adjust_tsf()
64 (long long) ifmsh->sync_offset_clockdrift_max, in mesh_sync_adjust_tsf()
66 tsfdelta = -beacon_int_fraction; in mesh_sync_adjust_tsf()
67 ifmsh->sync_offset_clockdrift_max -= beacon_int_fraction; in mesh_sync_adjust_tsf()
69 spin_unlock_bh(&ifmsh->sync_offset_lock); in mesh_sync_adjust_tsf()
71 if (local->ops->offset_tsf) { in mesh_sync_adjust_tsf()
75 if (tsf != -1ULL) in mesh_sync_adjust_tsf()
86 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; in mesh_sync_offset_rx_bcn_presp()
87 struct ieee80211_local *local = sdata->local; in mesh_sync_offset_rx_bcn_presp()
91 WARN_ON(ifmsh->mesh_sp_id != IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET); in mesh_sync_offset_rx_bcn_presp()
100 * drv_get_tsf() must be called before entering the rcu-read in mesh_sync_offset_rx_bcn_presp()
110 sta = sta_info_get(sdata, mgmt->sa); in mesh_sync_offset_rx_bcn_presp()
117 * dot11MeshNbrOffsetMaxNeighbor non-peer non-MBSS neighbors in mesh_sync_offset_rx_bcn_presp()
122 sta->sta.addr); in mesh_sync_offset_rx_bcn_presp()
126 /* Timing offset calculation (see 13.13.2.2.2) */ in mesh_sync_offset_rx_bcn_presp()
127 t_t = le64_to_cpu(mgmt->u.beacon.timestamp); in mesh_sync_offset_rx_bcn_presp()
128 sta->mesh->t_offset = t_t - t_r; in mesh_sync_offset_rx_bcn_presp()
131 s64 t_clockdrift = sta->mesh->t_offset_setpoint - sta->mesh->t_offset; in mesh_sync_offset_rx_bcn_presp()
134 sta->sta.addr, (long long) sta->mesh->t_offset, in mesh_sync_offset_rx_bcn_presp()
135 (long long) sta->mesh->t_offset_setpoint, in mesh_sync_offset_rx_bcn_presp()
139 t_clockdrift < -TOFFSET_MAXIMUM_ADJUSTMENT) { in mesh_sync_offset_rx_bcn_presp()
142 sta->sta.addr, in mesh_sync_offset_rx_bcn_presp()
148 spin_lock_bh(&ifmsh->sync_offset_lock); in mesh_sync_offset_rx_bcn_presp()
149 if (t_clockdrift > ifmsh->sync_offset_clockdrift_max) in mesh_sync_offset_rx_bcn_presp()
150 ifmsh->sync_offset_clockdrift_max = t_clockdrift; in mesh_sync_offset_rx_bcn_presp()
151 spin_unlock_bh(&ifmsh->sync_offset_lock); in mesh_sync_offset_rx_bcn_presp()
153 sta->mesh->t_offset_setpoint = sta->mesh->t_offset - TOFFSET_SET_MARGIN; in mesh_sync_offset_rx_bcn_presp()
157 sta->sta.addr, in mesh_sync_offset_rx_bcn_presp()
158 (long long) sta->mesh->t_offset); in mesh_sync_offset_rx_bcn_presp()
168 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; in mesh_sync_offset_adjust_tsf()
170 WARN_ON(ifmsh->mesh_sp_id != IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET); in mesh_sync_offset_adjust_tsf()
173 spin_lock_bh(&ifmsh->sync_offset_lock); in mesh_sync_offset_adjust_tsf()
175 if (ifmsh->sync_offset_clockdrift_max > TOFFSET_MINIMUM_ADJUSTMENT) { in mesh_sync_offset_adjust_tsf()
179 * the tsf adjustment to the mesh tasklet in mesh_sync_offset_adjust_tsf()
182 "TSF : kicking off TSF adjustment with clockdrift_max=%lld\n", in mesh_sync_offset_adjust_tsf()
183 ifmsh->sync_offset_clockdrift_max); in mesh_sync_offset_adjust_tsf()
184 set_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags); in mesh_sync_offset_adjust_tsf()
188 (long long)ifmsh->sync_offset_clockdrift_max); in mesh_sync_offset_adjust_tsf()
189 ifmsh->sync_offset_clockdrift_max = 0; in mesh_sync_offset_adjust_tsf()
191 spin_unlock_bh(&ifmsh->sync_offset_lock); in mesh_sync_offset_adjust_tsf()