Skip to content

Commit

Permalink
amdkfd: Implement the Get Clock Counters IOCTL
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeny Pinchuk <evgeny.pinchuk@amd.com>
Signed-off-by: Oded Gabbay <oded.gabbay@amd.com>
  • Loading branch information
Evgeny Pinchuk authored and Oded Gabbay committed Jul 16, 2014
1 parent 41a286f commit 4fac47c
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,34 @@ static long kfd_ioctl_set_memory_policy(struct file *filep,
static long kfd_ioctl_get_clock_counters(struct file *filep,
struct kfd_process *p, void __user *arg)
{
return -ENODEV;
struct kfd_ioctl_get_clock_counters_args args;
struct kfd_dev *dev;
struct timespec time;

if (copy_from_user(&args, arg, sizeof(args)))
return -EFAULT;

dev = kfd_device_by_id(args.gpu_id);
if (dev == NULL)
return -EINVAL;

/* Reading GPU clock counter from KGD */
args.gpu_clock_counter = kfd2kgd->get_gpu_clock_counter(dev->kgd);

/* No access to rdtsc. Using raw monotonic time */
getrawmonotonic(&time);
args.cpu_clock_counter = (uint64_t)timespec_to_ns(&time);

get_monotonic_boottime(&time);
args.system_clock_counter = (uint64_t)timespec_to_ns(&time);

/* Since the counter is in nano-seconds we use 1GHz frequency */
args.system_clock_freq = 1000000000;

if (copy_to_user(arg, &args, sizeof(args)))
return -EFAULT;

return 0;
}


Expand Down

0 comments on commit 4fac47c

Please sign in to comment.