All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/6] Add fdinfo support to Panfrost
@ 2023-08-24  1:34 ` Adrián Larumbe
  0 siblings, 0 replies; 56+ messages in thread
From: Adrián Larumbe @ 2023-08-24  1:34 UTC (permalink / raw)
  To: maarten.lankhorst, mripard, tzimmermann, airlied, daniel,
	robdclark, quic_abhinavk, dmitry.baryshkov, sean, marijn.suijten,
	robh, steven.price
  Cc: adrian.larumbe, dri-devel, linux-kernel, linux-arm-msm, freedreno,
	healych, kernel

This patch series adds fdinfo support to the Panfrost DRM driver. It will
display a series of key:value pairs under /proc/pid/fdinfo/fd for render
processes that open the Panfrost DRM file.

The pairs contain basic drm gpu engine and memory region information that
can either be cat by a privileged user or accessed with IGT's gputop
utility.

Changelog:

v2:
 - Changed the way gpu cycles and engine time are calculated, using GPU
 registers and taking into account potential resets.
 - Split render engine values into fragment and vertex/tiler ones.
 - Added more fine-grained calculation of RSS size for BO's.
 - Implemente selection of drm-memory region size units
 - Removed locking of shrinker's mutex in GEM obj status function

Adrián Larumbe (6):
  drm/panfrost: Add cycle count GPU register definitions
  drm/panfrost: Add fdinfo support GPU load metrics
  drm/panfrost: Add fdinfo support for memory stats
  drm/drm_file: Add DRM obj's RSS reporting function for fdinfo
  drm/panfrost: Implement generic DRM object RSS reporting function
  drm/drm-file: Allow size unit selection in drm_show_memory_stats

 drivers/gpu/drm/drm_file.c                  | 27 +++++++----
 drivers/gpu/drm/msm/msm_drv.c               |  2 +-
 drivers/gpu/drm/panfrost/panfrost_devfreq.c |  8 +++
 drivers/gpu/drm/panfrost/panfrost_devfreq.h |  3 ++
 drivers/gpu/drm/panfrost/panfrost_device.h  | 13 +++++
 drivers/gpu/drm/panfrost/panfrost_drv.c     | 54 +++++++++++++++++++--
 drivers/gpu/drm/panfrost/panfrost_gem.c     | 34 +++++++++++++
 drivers/gpu/drm/panfrost/panfrost_gem.h     |  6 +++
 drivers/gpu/drm/panfrost/panfrost_job.c     | 30 ++++++++++++
 drivers/gpu/drm/panfrost/panfrost_job.h     |  4 ++
 drivers/gpu/drm/panfrost/panfrost_mmu.c     | 16 ++++--
 drivers/gpu/drm/panfrost/panfrost_regs.h    |  5 ++
 include/drm/drm_file.h                      |  5 +-
 include/drm/drm_gem.h                       |  9 ++++
 14 files changed, 195 insertions(+), 21 deletions(-)

-- 
2.42.0


^ permalink raw reply	[flat|nested] 56+ messages in thread

end of thread, other threads:[~2023-09-05 22:23 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-24  1:34 [PATCH v2 0/6] Add fdinfo support to Panfrost Adrián Larumbe
2023-08-24  1:34 ` Adrián Larumbe
2023-08-24  1:34 ` [PATCH v2 1/6] drm/panfrost: Add cycle count GPU register definitions Adrián Larumbe
2023-08-24  1:34   ` Adrián Larumbe
2023-08-30 10:35   ` Boris Brezillon
2023-08-30 10:35     ` Boris Brezillon
2023-08-31 15:54   ` Steven Price
2023-08-31 15:54     ` Steven Price
2023-08-24  1:34 ` [PATCH v2 2/6] drm/panfrost: Add fdinfo support GPU load metrics Adrián Larumbe
2023-08-24  1:34   ` Adrián Larumbe
2023-08-24  4:12   ` kernel test robot
2023-08-24  4:12     ` kernel test robot
2023-08-30 10:17   ` Boris Brezillon
2023-08-30 10:17     ` Boris Brezillon
2023-08-31 23:23     ` Adrián Larumbe
2023-08-31 23:23       ` Adrián Larumbe
2023-08-31 15:54   ` Steven Price
2023-08-31 15:54     ` Steven Price
2023-08-31 21:34     ` Adrián Larumbe
2023-08-31 21:34       ` Adrián Larumbe
2023-09-04  8:22       ` Steven Price
2023-09-04  8:22         ` Steven Price
2023-09-02  3:20   ` kernel test robot
2023-09-02  3:20     ` kernel test robot
2023-08-24  1:34 ` [PATCH v2 3/6] drm/panfrost: Add fdinfo support for memory stats Adrián Larumbe
2023-08-24  1:34   ` Adrián Larumbe
2023-08-30 10:31   ` Boris Brezillon
2023-08-30 10:31     ` Boris Brezillon
2023-08-31 23:07     ` Adrián Larumbe
2023-08-31 23:07       ` Adrián Larumbe
2023-08-24  1:34 ` [PATCH v2 4/6] drm/drm_file: Add DRM obj's RSS reporting function for fdinfo Adrián Larumbe
2023-08-24  1:34   ` Adrián Larumbe
2023-08-30 10:34   ` Boris Brezillon
2023-08-30 10:34     ` Boris Brezillon
2023-08-24  1:34 ` [PATCH v2 5/6] drm/panfrost: Implement generic DRM object RSS reporting function Adrián Larumbe
2023-08-24  1:34   ` Adrián Larumbe
2023-08-24 11:13   ` kernel test robot
2023-08-24 11:13     ` kernel test robot
2023-08-30 10:52   ` Boris Brezillon
2023-08-30 10:52     ` Boris Brezillon
2023-09-01  0:03     ` Adrián Larumbe
2023-09-01  0:03       ` Adrián Larumbe
2023-09-01  6:44       ` Boris Brezillon
2023-09-01  6:44         ` Boris Brezillon
2023-08-24  1:34 ` [PATCH v2 6/6] drm/drm-file: Allow size unit selection in drm_show_memory_stats Adrián Larumbe
2023-08-24  1:34   ` Adrián Larumbe
2023-08-24  6:49   ` kernel test robot
2023-08-24  6:49     ` kernel test robot
2023-08-28 15:00   ` Rob Clark
2023-08-28 15:00     ` Rob Clark
2023-08-30 15:51     ` Adrián Larumbe
2023-08-30 15:51       ` Adrián Larumbe
2023-09-05 22:23       ` Rob Clark
2023-09-05 22:23         ` Rob Clark
2023-09-01 22:18   ` kernel test robot
2023-09-01 22:18     ` kernel test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.