]> git.baikalelectronics.ru Git - kernel.git/commit
drm/panfrost: Expose performance counters through unstable ioctls
authorBoris Brezillon <boris.brezillon@collabora.com>
Tue, 18 Jun 2019 08:16:48 +0000 (10:16 +0200)
committerRob Herring <robh@kernel.org>
Tue, 18 Jun 2019 15:23:48 +0000 (09:23 -0600)
commit0d0fb1db424735c9bcc2d05a5b06096336306581
treeb1b13908ed89b9ff2755ad83dd900d5fe9888215
parentd5809fe0d2e14663acd7c40df4a58b8d2fa956ac
drm/panfrost: Expose performance counters through unstable ioctls

Expose performance counters through 2 driver specific ioctls: one to
enable/disable the perfcnt block, and one to dump the counter values.

There are discussions to expose global performance monitors (those
counters that can't be retrieved on a per-job basis) in a consistent
way, but this is likely to take time to settle on something that works
for various HW/users.
The ioctls are marked unstable so we can get rid of them when the time
comes. We initally went for a debugfs-based interface, but this was
making the transition to per-FD address space more complicated (we need
to specify the namespace the GPU has to use when dumping the perf
counters), hence the decision to switch back to driver specific ioctls
which are passed the FD they operate on and thus will have a dedicated
address space attached to them.

Other than that, the implementation is pretty simple: it basically dumps
all counters and copy the values to a userspace buffer. The parsing is
left to userspace which has to know the specific layout that's used
by the GPU (layout differs on a per-revision basis).

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190618081648.17297-5-boris.brezillon@collabora.com
drivers/gpu/drm/panfrost/Makefile
drivers/gpu/drm/panfrost/panfrost_device.c
drivers/gpu/drm/panfrost/panfrost_device.h
drivers/gpu/drm/panfrost/panfrost_drv.c
drivers/gpu/drm/panfrost/panfrost_gpu.c
drivers/gpu/drm/panfrost/panfrost_perfcnt.c [new file with mode: 0644]
drivers/gpu/drm/panfrost/panfrost_perfcnt.h [new file with mode: 0644]
drivers/gpu/drm/panfrost/panfrost_regs.h
include/uapi/drm/panfrost_drm.h