Home
last modified time | relevance | path

Searched refs:time_sync (Results 1 – 8 of 8) sorted by relevance

/linux/drivers/net/wireless/intel/iwlwifi/mld/
H A Dtime_sync.c15 struct iwl_mld_time_sync_data *time_sync = kzalloc_obj(*time_sync); in iwl_mld_init_time_sync() local
17 if (!time_sync) in iwl_mld_init_time_sync()
20 time_sync->active_protocols = protocols; in iwl_mld_init_time_sync()
21 ether_addr_copy(time_sync->peer_addr, addr); in iwl_mld_init_time_sync()
22 skb_queue_head_init(&time_sync->frame_list); in iwl_mld_init_time_sync()
23 rcu_assign_pointer(mld->time_sync, time_sync); in iwl_mld_init_time_sync()
31 struct iwl_mld_time_sync_data *time_sync; in iwl_mld_time_sync_fw_config() local
34 time_sync = wiphy_dereference(mld->wiphy, mld->time_sync); in iwl_mld_time_sync_fw_config()
35 if (!time_sync) in iwl_mld_time_sync_fw_config()
38 cmd.protocols = cpu_to_le32(time_sync->active_protocols); in iwl_mld_time_sync_fw_config()
[all …]
/linux/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dtime-sync.c42 while ((skb = skb_dequeue(&mvm->time_sync.frame_list))) { in iwl_mvm_time_sync_find_skb()
142 if (mvm->time_sync.active && in iwl_mvm_time_sync_config()
143 !ether_addr_equal(addr, mvm->time_sync.peer_addr)) { in iwl_mvm_time_sync_config()
164 mvm->time_sync.active = protocols != 0; in iwl_mvm_time_sync_config()
165 ether_addr_copy(mvm->time_sync.peer_addr, addr); in iwl_mvm_time_sync_config()
169 if (!mvm->time_sync.active) in iwl_mvm_time_sync_config()
170 skb_queue_purge(&mvm->time_sync.frame_list); in iwl_mvm_time_sync_config()
H A Dtime-sync.h22 if (ether_addr_equal(mvm->time_sync.peer_addr, addr) && in iwl_mvm_time_sync_frame()
24 skb_queue_tail(&mvm->time_sync.frame_list, skb); in iwl_mvm_time_sync_frame()
H A Dops.c1479 iwl_mvm_init_time_sync(&mvm->time_sync); in iwl_op_mode_mvm_start()
/linux/drivers/accel/habanalabs/common/
H A Dhabanalabs_ioctl.c317 struct hl_info_time_sync time_sync = {0}; in time_sync_info() local
324 time_sync.device_time = hdev->asic_funcs->get_device_time(hdev); in time_sync_info()
325 time_sync.host_time = ktime_get_raw_ns(); in time_sync_info()
326 time_sync.tsc_time = rdtsc(); in time_sync_info()
328 return copy_to_user(out, &time_sync, in time_sync_info()
329 min((size_t) max_size, sizeof(time_sync))) ? -EFAULT : 0; in time_sync_info()
/linux/drivers/media/pci/solo6x10/
H A Dsolo6x10-core.c59 if (++solo_dev->time_sync < 60) in solo_timer_sync()
62 solo_dev->time_sync = 0; in solo_timer_sync()
H A Dsolo6x10.h185 unsigned int time_sync; member
/linux/drivers/thunderbolt/
H A Dtmu.c315 static int tb_port_tmu_time_sync(struct tb_port *port, bool time_sync) in tb_port_tmu_time_sync() argument
317 u32 val = time_sync ? TMU_ADP_CS_6_DTS : 0; in tb_port_tmu_time_sync()