mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Rob Clark <robin.clark@oss.qualcomm.com>
To: dri-devel@lists.freedesktop.org
Cc: freedreno@lists.freedesktop.org, linux-arm-msm@vger.kernel.org,
	Connor Abbott <cwabbott0@gmail.com>,
	Antonino Maniscalco <antomani103@gmail.com>,
	Danilo Krummrich <dakr@redhat.com>,
	Rob Clark <robin.clark@oss.qualcomm.com>,
	Dmitry Baryshkov <lumag@kernel.org>,
	Abhinav Kumar <abhinav.kumar@linux.dev>,
	Jessica Zhang <jessica.zhang@oss.qualcomm.com>,
	Sean Paul <sean@poorly.run>,
	Marijn Suijten <marijn.suijten@somainline.org>,
	David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
	Konrad Dybcio <konradybcio@kernel.org>,
	linux-kernel@vger.kernel.org (open list)
Subject: [PATCH v8 42/42] drm/msm: Add VM_BIND throttling
Date: Sun, 29 Jun 2025 07:03:45 -0700	[thread overview]
Message-ID: <20250629140537.30850-43-robin.clark@oss.qualcomm.com> (raw)
In-Reply-To: <20250629140537.30850-1-robin.clark@oss.qualcomm.com>

A large number of (unsorted or separate) small (<2MB) mappings can cause
a lot of, probably unnecessary, prealloc pages.  Ie. a single 4k page
size mapping will pre-allocate 3 pages (for levels 2-4) for the
pagetable.  Which can chew up a large amount of unneeded memory.  So add
a mechanism to put an upper bound on the # of pre-alloc pages.

Signed-off-by: Rob Clark <robin.clark@oss.qualcomm.com>
Tested-by: Antonino Maniscalco <antomani103@gmail.com>
Reviewed-by: Antonino Maniscalco <antomani103@gmail.com>
---
 drivers/gpu/drm/msm/msm_gem_vma.c | 23 +++++++++++++++++++++--
 drivers/gpu/drm/msm/msm_gpu.h     |  3 +++
 2 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/msm/msm_gem_vma.c b/drivers/gpu/drm/msm/msm_gem_vma.c
index 907ebf5073e6..bb3a6e8320c9 100644
--- a/drivers/gpu/drm/msm/msm_gem_vma.c
+++ b/drivers/gpu/drm/msm/msm_gem_vma.c
@@ -705,6 +705,8 @@ msm_vma_job_free(struct drm_sched_job *_job)
 
 	mmu->funcs->prealloc_cleanup(mmu, &job->prealloc);
 
+	atomic_sub(job->prealloc.count, &job->queue->in_flight_prealloc);
+
 	drm_sched_job_cleanup(_job);
 
 	job_foreach_bo (obj, job)
@@ -1089,10 +1091,11 @@ ops_are_same_pte(struct msm_vm_bind_op *first, struct msm_vm_bind_op *next)
  * them as a single mapping.  Otherwise the prealloc_count() will not realize
  * they can share pagetable pages and vastly overcount.
  */
-static void
+static int
 vm_bind_prealloc_count(struct msm_vm_bind_job *job)
 {
 	struct msm_vm_bind_op *first = NULL, *last = NULL;
+	int ret;
 
 	for (int i = 0; i < job->nr_ops; i++) {
 		struct msm_vm_bind_op *op = &job->ops[i];
@@ -1121,6 +1124,20 @@ vm_bind_prealloc_count(struct msm_vm_bind_job *job)
 
 	/* Flush the remaining range: */
 	prealloc_count(job, first, last);
+
+	/*
+	 * Now that we know the needed amount to pre-alloc, throttle on pending
+	 * VM_BIND jobs if we already have too much pre-alloc memory in flight
+	 */
+	ret = wait_event_interruptible(
+			to_msm_vm(job->vm)->sched.job_scheduled,
+			atomic_read(&job->queue->in_flight_prealloc) <= 1024);
+	if (ret)
+		return ret;
+
+	atomic_add(job->prealloc.count, &job->queue->in_flight_prealloc);
+
+	return 0;
 }
 
 /*
@@ -1411,7 +1428,9 @@ msm_ioctl_vm_bind(struct drm_device *dev, void *data, struct drm_file *file)
 	if (ret)
 		goto out_unlock;
 
-	vm_bind_prealloc_count(job);
+	ret = vm_bind_prealloc_count(job);
+	if (ret)
+		goto out_unlock;
 
 	struct drm_exec exec;
 	unsigned flags = DRM_EXEC_IGNORE_DUPLICATES | DRM_EXEC_INTERRUPTIBLE_WAIT;
diff --git a/drivers/gpu/drm/msm/msm_gpu.h b/drivers/gpu/drm/msm/msm_gpu.h
index b2a96544f92a..8bb8bd080cb0 100644
--- a/drivers/gpu/drm/msm/msm_gpu.h
+++ b/drivers/gpu/drm/msm/msm_gpu.h
@@ -549,6 +549,8 @@ static inline int msm_gpu_convert_priority(struct msm_gpu *gpu, int prio,
  *             seqno, protected by submitqueue lock
  * @idr_lock:  for serializing access to fence_idr
  * @lock:      submitqueue lock for serializing submits on a queue
+ * @in_flight_prealloc: for VM_BIND queue, # of preallocated pgtable pages for
+ *             queued VM_BIND jobs
  * @ref:       reference count
  * @entity:    the submit job-queue
  */
@@ -563,6 +565,7 @@ struct msm_gpu_submitqueue {
 	struct idr fence_idr;
 	struct spinlock idr_lock;
 	struct mutex lock;
+	atomic_t in_flight_prealloc;
 	struct kref ref;
 	struct drm_sched_entity *entity;
 
-- 
2.50.0


  parent reply	other threads:[~2025-06-29 14:08 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-29 14:03 [PATCH v8 00/42] drm/msm: sparse / "VM_BIND" support Rob Clark
2025-06-29 14:03 ` [PATCH v8 01/42] drm/gpuvm: Fix doc comments Rob Clark
2025-06-29 14:03 ` [PATCH v8 02/42] drm/gpuvm: Add locking helpers Rob Clark
2025-06-29 14:49   ` Danilo Krummrich
2025-06-29 14:03 ` [PATCH v8 03/42] drm/gem: Add ww_acquire_ctx support to drm_gem_lru_scan() Rob Clark
2025-06-29 14:03 ` [PATCH v8 04/42] drm/msm: Rename msm_file_private -> msm_context Rob Clark
2025-06-29 14:03 ` [PATCH v8 05/42] drm/msm: Improve msm_context comments Rob Clark
2025-06-29 14:03 ` [PATCH v8 06/42] drm/msm: Rename msm_gem_address_space -> msm_gem_vm Rob Clark
2025-06-29 14:03 ` [PATCH v8 07/42] drm/msm: Remove vram carveout support Rob Clark
2025-06-29 14:03 ` [PATCH v8 08/42] drm/msm: Collapse vma allocation and initialization Rob Clark
2025-06-29 14:03 ` [PATCH v8 09/42] drm/msm: Collapse vma close and delete Rob Clark
2025-06-29 14:03 ` [PATCH v8 10/42] drm/msm: Don't close VMAs on purge Rob Clark
2025-06-29 14:03 ` [PATCH v8 11/42] drm/msm: Stop passing vm to msm_framebuffer Rob Clark
2025-06-29 14:03 ` [PATCH v8 12/42] drm/msm: Refcount framebuffer pins Rob Clark
2025-06-29 14:03 ` [PATCH v8 13/42] drm/msm: drm_gpuvm conversion Rob Clark
2025-06-29 14:03 ` [PATCH v8 14/42] drm/msm: Convert vm locking Rob Clark
2025-06-29 14:03 ` [PATCH v8 15/42] drm/msm: Use drm_gpuvm types more Rob Clark
2025-06-29 14:03 ` [PATCH v8 16/42] drm/msm: Split out helper to get iommu prot flags Rob Clark
2025-06-29 14:03 ` [PATCH v8 17/42] drm/msm: Add mmu support for non-zero offset Rob Clark
2025-06-29 14:03 ` [PATCH v8 18/42] drm/msm: Add PRR support Rob Clark
2025-06-29 14:03 ` [PATCH v8 19/42] drm/msm: Rename msm_gem_vma_purge() -> _unmap() Rob Clark
2025-06-29 14:03 ` [PATCH v8 20/42] drm/msm: Drop queued submits on lastclose() Rob Clark
2025-06-29 14:03 ` [PATCH v8 21/42] drm/msm: Lazily create context VM Rob Clark
2025-06-29 14:03 ` [PATCH v8 22/42] drm/msm: Add opt-in for VM_BIND Rob Clark
2025-06-29 14:03 ` [PATCH v8 23/42] drm/msm: Mark VM as unusable on GPU hangs Rob Clark
2025-06-29 14:03 ` [PATCH v8 24/42] drm/msm: Add _NO_SHARE flag Rob Clark
2025-06-29 14:03 ` [PATCH v8 25/42] drm/msm: Crashdump prep for sparse mappings Rob Clark
2025-06-29 14:03 ` [PATCH v8 26/42] drm/msm: rd dumping " Rob Clark
2025-06-29 14:03 ` [PATCH v8 27/42] drm/msm: Crashdump support for sparse Rob Clark
2025-06-29 14:03 ` [PATCH v8 28/42] drm/msm: rd dumping " Rob Clark
2025-06-29 14:03 ` [PATCH v8 29/42] drm/msm: Extract out syncobj helpers Rob Clark
2025-06-29 14:03 ` [PATCH v8 30/42] drm/msm: Use DMA_RESV_USAGE_BOOKKEEP/KERNEL Rob Clark
2025-06-29 14:03 ` [PATCH v8 31/42] drm/msm: Add VM_BIND submitqueue Rob Clark
2025-06-29 14:03 ` [PATCH v8 32/42] drm/msm: Support IO_PGTABLE_QUIRK_NO_WARN_ON Rob Clark
2025-06-29 14:03 ` [PATCH v8 33/42] drm/msm: Support pgtable preallocation Rob Clark
2025-06-29 14:03 ` [PATCH v8 34/42] drm/msm: Split out map/unmap ops Rob Clark
2025-06-29 14:03 ` [PATCH v8 35/42] drm/msm: Add VM_BIND ioctl Rob Clark
2025-06-29 14:03 ` [PATCH v8 36/42] drm/msm: Add VM logging for VM_BIND updates Rob Clark
2025-06-29 14:03 ` [PATCH v8 37/42] drm/msm: Add VMA unmap reason Rob Clark
2025-06-29 14:03 ` [PATCH v8 38/42] drm/msm: Add mmu prealloc tracepoint Rob Clark
2025-06-29 14:03 ` [PATCH v8 39/42] drm/msm: use trylock for debugfs Rob Clark
2025-06-29 14:03 ` [PATCH v8 40/42] drm/msm: Bump UAPI version Rob Clark
2025-06-29 14:03 ` [PATCH v8 41/42] drm/msm: Defer VMA unmap for fb unpins Rob Clark
2025-06-29 14:03 ` Rob Clark [this message]
2025-06-29 14:54   ` [PATCH v8 42/42] drm/msm: Add VM_BIND throttling Danilo Krummrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250629140537.30850-43-robin.clark@oss.qualcomm.com \
    --to=robin.clark@oss.qualcomm.com \
    --cc=abhinav.kumar@linux.dev \
    --cc=airlied@gmail.com \
    --cc=antomani103@gmail.com \
    --cc=cwabbott0@gmail.com \
    --cc=dakr@redhat.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=freedreno@lists.freedesktop.org \
    --cc=jessica.zhang@oss.qualcomm.com \
    --cc=konradybcio@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lumag@kernel.org \
    --cc=marijn.suijten@somainline.org \
    --cc=sean@poorly.run \
    --cc=simona@ffwll.ch \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®