mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 01:50:07 +03:00
common.ptimer unit right now exposes two APIs - scale_ptimer() to scale the timer ptimer_scalingfactor10x() to get the scaling factor receiving scaling factor is not really necessary for user of common.ptimer since it can be internally calculated in scale_ptimer() function itself. Hence make ptimer_scalingfactor10x() static and rename public API scale_ptimer() to nvgpu_ptimer_scale() nvgpu_ptimer_scale() will not accept timeout value as parameter and return scaled timeout value in another pointer parameter. Error code is returned if timeout value is invalid. Jira NVGPU-6394 Change-Id: Ib882d99f6096c3af5f96eef298d713fb5e36dd87 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2546970 (cherry picked from commit 2da7c918efe91046818c83481664312e194ead8e) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2551334 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
95 lines
2.6 KiB
C
95 lines
2.6 KiB
C
/*
|
|
* Copyright (c) 2017-2021, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <nvgpu/ptimer.h>
|
|
#include <nvgpu/gk20a.h>
|
|
#ifdef CONFIG_NVGPU_IOCTL_NON_FUSA
|
|
#include <nvgpu/timers.h>
|
|
#include <nvgpu/nvgpu_init.h>
|
|
#include <nvgpu/power_features/cg.h>
|
|
#endif
|
|
|
|
static u32 ptimer_scalingfactor10x(u32 ptimer_src_freq)
|
|
{
|
|
return nvgpu_safe_cast_u64_to_u32((U64(PTIMER_REF_FREQ_HZ) * U64(10))
|
|
/ U64(ptimer_src_freq));
|
|
}
|
|
|
|
int nvgpu_ptimer_scale(struct gk20a *g, u32 timeout, u32 *scaled_timeout)
|
|
{
|
|
u32 scale10x;
|
|
|
|
nvgpu_assert(g->ptimer_src_freq != 0U);
|
|
scale10x = ptimer_scalingfactor10x(g->ptimer_src_freq);
|
|
nvgpu_assert(scale10x != 0U);
|
|
|
|
if (timeout > U32_MAX / 10U) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (((timeout * 10U) % scale10x) >= (scale10x / 2U)) {
|
|
*scaled_timeout = ((timeout * 10U) / scale10x) + 1U;
|
|
} else {
|
|
*scaled_timeout = (timeout * 10U) / scale10x;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_NVGPU_IOCTL_NON_FUSA
|
|
int nvgpu_ptimer_init(struct gk20a *g)
|
|
{
|
|
#if defined(CONFIG_NVGPU_NON_FUSA)
|
|
nvgpu_cg_slcg_timer_load_enable(g);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
int nvgpu_get_timestamps_zipper(struct gk20a *g,
|
|
u32 source_id, u32 count,
|
|
struct nvgpu_cpu_time_correlation_sample *samples)
|
|
{
|
|
int err = 0;
|
|
unsigned int i = 0;
|
|
|
|
if (gk20a_busy(g) != 0) {
|
|
nvgpu_err(g, "GPU not powered on\n");
|
|
err = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
for (i = 0; i < count; i++) {
|
|
err = g->ops.ptimer.read_ptimer(g, &samples[i].gpu_timestamp);
|
|
if (err != 0) {
|
|
return err;
|
|
}
|
|
|
|
samples[i].cpu_timestamp = nvgpu_hr_timestamp();
|
|
}
|
|
|
|
end:
|
|
gk20a_idle(g);
|
|
return err;
|
|
}
|
|
#endif
|