Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 - 25 of 138) sorted by relevance

123456

/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/tl/
H A Dmali_kbase_tl_serialize.h93 * kbasep_serialize_timestamp - serialize timestamp to the message buffer
95 * Get current timestamp using kbasep_get_timestamp()
105 u64 timestamp; in kbasep_serialize_timestamp() local
107 timestamp = ktime_get_raw_ns(); in kbasep_serialize_timestamp()
109 return kbasep_serialize_bytes(buffer, pos, &timestamp, sizeof(timestamp)); in kbasep_serialize_timestamp()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tl/
H A Dmali_kbase_tl_serialize.h103 * kbasep_serialize_timestamp - serialize timestamp to the message buffer
105 * Get current timestamp using kbasep_get_timestamp()
115 u64 timestamp; in kbasep_serialize_timestamp() local
117 timestamp = ktime_get_raw_ns(); in kbasep_serialize_timestamp()
121 &timestamp, sizeof(timestamp)); in kbasep_serialize_timestamp()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_profiling_internal.c22 u64 timestamp; member
152 profile_entries[cur_index].timestamp = _mali_timestamp_get(); in add_event()
211 mali_osk_errcode_t _mali_internal_profiling_get_event(u32 index, u64 *timestamp, u32 *event_id, u32 data[5]) in _mali_internal_profiling_get_event() argument
233 *timestamp = profile_entries[index].timestamp; in _mali_internal_profiling_get_event()
H A Dmali_profiling_internal.h26 mali_osk_errcode_t _mali_internal_profiling_get_event(u32 index, u64 *timestamp, u32 *event_id, u32 data[5]);
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_profiling_internal.c21 u64 timestamp; member
153 profile_entries[cur_index].timestamp = _mali_timestamp_get(); in add_event()
207 _mali_osk_errcode_t _mali_internal_profiling_get_event(u32 index, u64 *timestamp, u32 *event_id, u32 data[5]) in _mali_internal_profiling_get_event() argument
229 *timestamp = profile_entries[index].timestamp; in _mali_internal_profiling_get_event()
H A Dmali_profiling_internal.h26 _mali_osk_errcode_t _mali_internal_profiling_get_event(u32 index, u64 *timestamp, u32 *event_id, u32 data[5]);
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/
H A Ddmarx.h34 u64 timestamp; member
41 * cur_frame: current frame id and timestamp in ns
42 * pre_frame: previous frame id and timestamp in ns
56 void rkisp_dmarx_get_frame(struct rkisp_device *dev, u32 *id, u64 *sof_timestamp, u64 *timestamp, bool sync);
H A Disp_external.h36 u64 timestamp; member
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/
H A Ddmarx.h38 u64 timestamp; member
45 * cur_frame: current frame id and timestamp in ns
46 * pre_frame: previous frame id and timestamp in ns
63 u64 *sof_timestamp, u64 *timestamp,
H A Disp_external.h39 u64 timestamp; member
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/ump/linux/
H A Dump_kernel_random_mapping.c82 map->failed.timestamp = jiffies; in ump_random_mapping_create()
137 if (time_is_before_jiffies(map->failed.timestamp + in ump_random_mapping_get()
146 map->failed.timestamp = jiffies; in ump_random_mapping_get()
H A Dump_kernel_random_mapping.h35 unsigned long timestamp; member
/device/board/hihope/dayu210/camera/vdi_impl/v4l2/pipeline_core/src/node/
H A Drk_codec_node.cpp391 int64_t timestamp = 0; in Yuv420ToH264() local
414 timestamp = ts.tv_nsec + ts.tv_sec * TIME_CONVERSION_NS_S; in Yuv420ToH264()
415 buffer->SetEsTimestamp(timestamp); in Yuv420ToH264()
427 timestamp = ts.tv_nsec + ts.tv_sec * TIME_CONVERSION_NS_S; in Yuv420ToH264()
428 buffer->SetEsTimestamp(timestamp); in Yuv420ToH264()
431 CAMERA_LOGI("ForkNode::ForkBuffers H264 size = %{public}d ret = %{public}d timestamp = %{public}lld\n", in Yuv420ToH264()
432 buf_size, ret, timestamp); in Yuv420ToH264()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/backend/gpu/
H A Dmali_kbase_pm_metrics.c287 void kbase_pm_metrics_update(struct kbase_device *kbdev, ktime_t *timestamp) in kbase_pm_metrics_update() argument
296 if (!timestamp) { in kbase_pm_metrics_update()
298 timestamp = &now; in kbase_pm_metrics_update()
302 kbase_pm_get_dvfs_utilisation_calc(kbdev, *timestamp); in kbase_pm_metrics_update()
/device/soc/rockchip/common/sdk_linux/include/linux/
H A Ddma-fence.h41 * @timestamp: Timestamp when the fence was signaled.
50 * DMA_FENCE_FLAG_TIMESTAMP_BIT - timestamp recorded for fence signaling
73 * The lifetime of the timestamp is similarly tied to both the
74 * rcu freelist and the cb_list. The timestamp is only set upon
76 * only use either the cb_list of timestamp. Upon destruction,
86 /* @cb_list replaced by @timestamp on dma_fence_signal() */
87 ktime_t timestamp; member
88 /* @timestamp replaced by @rcu on dma_fence_release() */
380 int dma_fence_signal_timestamp(struct dma_fence *fence, ktime_t timestamp);
381 int dma_fence_signal_timestamp_locked(struct dma_fence *fence, ktime_t timestamp);
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/dma-buf/
H A Ddma-fence.c316 * @timestamp: fence signal timestamp in kernel's CLOCK_MONOTONIC time domain
322 * only be effective the first time. Set the timestamp provided as the fence
323 * signal timestamp.
331 int dma_fence_signal_timestamp_locked(struct dma_fence *fence, ktime_t timestamp) in dma_fence_signal_timestamp_locked() argument
342 /* Stash the cb_list before replacing it with the timestamp */ in dma_fence_signal_timestamp_locked()
345 fence->timestamp = timestamp; in dma_fence_signal_timestamp_locked()
361 * @timestamp: fence signal timestamp i
373 dma_fence_signal_timestamp(struct dma_fence *fence, ktime_t timestamp) dma_fence_signal_timestamp() argument
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/
H A Dmali_kbase_vinstr.c828 * kbasep_vinstr_get_timestamp - return timestamp
830 * Function returns timestamp value based on raw monotonic timer. Value will
833 * Return: timestamp value
871 * @timestamp: pointer where collection timestamp will be recorded
875 static int kbasep_vinstr_collect_and_accumulate(struct kbase_vinstr_context *vinstr_ctx, u64 *timestamp) in kbasep_vinstr_collect_and_accumulate() argument
895 * Disable preemption to make dump timestamp more accurate. */ in kbasep_vinstr_collect_and_accumulate()
897 *timestamp = kbasep_vinstr_get_timestamp(); in kbasep_vinstr_collect_and_accumulate()
932 * @timestamp: timestamp whe
937 kbasep_vinstr_fill_dump_buffer(struct kbase_vinstr_client *cli, u64 timestamp, enum base_hwcnt_reader_event event_id) kbasep_vinstr_fill_dump_buffer() argument
1042 kbasep_vinstr_update_client(struct kbase_vinstr_client *cli, u64 timestamp, enum base_hwcnt_reader_event event_id) kbasep_vinstr_update_client() argument
1137 u64 timestamp = kbasep_vinstr_get_timestamp(); kbasep_vinstr_service_task() local
1822 u64 timestamp; kbase_vinstr_hwc_dump() local
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_vinstr.c885 * kbasep_vinstr_get_timestamp - return timestamp
887 * Function returns timestamp value based on raw monotonic timer. Value will
890 * Return: timestamp value
929 * @timestamp: pointer where collection timestamp will be recorded
934 struct kbase_vinstr_context *vinstr_ctx, u64 *timestamp) in kbasep_vinstr_collect_and_accumulate()
954 * Disable preemption to make dump timestamp more accurate. */ in kbasep_vinstr_collect_and_accumulate()
956 *timestamp = kbasep_vinstr_get_timestamp(); in kbasep_vinstr_collect_and_accumulate()
990 * @timestamp: timestamp whe
933 kbasep_vinstr_collect_and_accumulate( struct kbase_vinstr_context *vinstr_ctx, u64 *timestamp) kbasep_vinstr_collect_and_accumulate() argument
995 kbasep_vinstr_fill_dump_buffer( struct kbase_vinstr_client *cli, u64 timestamp, enum base_hwcnt_reader_event event_id) kbasep_vinstr_fill_dump_buffer() argument
1108 kbasep_vinstr_update_client( struct kbase_vinstr_client *cli, u64 timestamp, enum base_hwcnt_reader_event event_id) kbasep_vinstr_update_client() argument
1209 u64 timestamp = kbasep_vinstr_get_timestamp(); kbasep_vinstr_service_task() local
1943 u64 timestamp; kbase_vinstr_hwc_dump() local
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Ddhd_pno.c862 /* add the time consumed in Driver to the timestamp of firmware */ in _dhd_pno_convert_format()
863 iter->timestamp += t_delta; in _dhd_pno_convert_format()
865 "age=%d\n", iter->timestamp); in _dhd_pno_convert_format()
2538 uint32 timestamp = 0, ts = 0, i, j, timediff; in _dhd_pno_get_gscan_batch_from_fw() local
2640 timestamp = plnetinfo->timestamp; in _dhd_pno_get_gscan_batch_from_fw()
2653 if (TIME_DIFF_MS(timestamp, plnetinfo->timestamp) > timediff) { in _dhd_pno_get_gscan_batch_from_fw()
2658 timestamp = plnetinfo->timestamp; in _dhd_pno_get_gscan_batch_from_fw()
3069 uint32 timestamp = 0; _dhd_pno_get_for_batch() local
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/
H A Dssl_cache.h70 mbedtls_time_t timestamp; /*!< entry timestamp */ member
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/ispp/
H A Dstats.h22 unsigned long long timestamp; member
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/ump/linux/
H A Dump_kernel_random_mapping.h36 unsigned long timestamp; member
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/ispp/
H A Dstats.h23 unsigned long long timestamp; member
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf_tl_reader.c56 * @timestamp: Timestamp of the event.
63 u64 timestamp; member
110 * @cpu_ts: Output CPU timestamp.
111 * @gpu_ts: Output GPU timestamp.
132 * kbase_ts_converter_init() - Initialize system timestamp converter.
167 * kbase_ts_converter_convert() - Convert GPU timestamp to CPU timestamp.
170 * @gpu_ts: System timestamp value to converter.
172 * Return: The CPU timestamp.
197 /* Reuse the timestamp an in tl_reader_overflow_notify()
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/debug/
H A Dmali_kbase_debug_ktrace.c93 (int)trace_msg->timestamp.tv_sec, in kbasep_ktrace_format_msg()
94 (int)(trace_msg->timestamp.tv_nsec / 1000), in kbasep_ktrace_format_msg()
162 ktime_get_real_ts64(&trace_msg->timestamp); in kbasep_ktrace_msg_init()

Completed in 24 milliseconds

123456