From: Karunika Choo <karunika.choo@arm.com>
To: Steven Price <steven.price@arm.com>, dri-devel@lists.freedesktop.org
Cc: nd@arm.com, Boris Brezillon <boris.brezillon@collabora.com>,
Liviu Dudau <liviu.dudau@arm.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
linux-kernel@vger.kernel.org,
Dennis Tsiang <dennis.tsiang@arm.com>
Subject: Re: [PATCH v1] drm/panthor: Serialize GPU cache flush operations
Date: Thu, 31 Jul 2025 13:48:38 +0100 [thread overview]
Message-ID: <216ebb8e-c973-4306-a748-a030eae01e2d@arm.com> (raw)
In-Reply-To: <63c7d33d-c475-448e-a928-570c6efe2387@arm.com>
On 31/07/2025 11:57, Steven Price wrote:
> On 30/07/2025 18:43, Karunika Choo wrote:
>> In certain scenarios, it is possible for multiple cache flushes to be
>> requested before the previous one completes. This patch introduces the
>> cache_flush_lock mutex to serialize these operations and ensure that
>> any requested cache flushes are completed instead of dropped.
>>
>> Signed-off-by: Karunika Choo <karunika.choo@arm.com>
>> Co-developed-by: Dennis Tsiang <dennis.tsiang@arm.com>
>
> A Co-Developed-By needs to have a signed-off-by too[1]
Oops. I can push a v2 to add those.
>
> [1]
> https://www.kernel.org/doc/html/latest/process/submitting-patches.html#when-to-use-acked-by-cc-and-co-developed-by
>
> But I also don't understand how this is happening. The only caller to
> panthor_gpu_flush_caches() is in panthor_sched_suspend() and that is
> holding the sched->lock mutex.
The fix is in relation to the enablement of GPU Flush caches by default
for all GPUs [1]. While calls from the MMU are serialized, other calls
i.e. from panthor_sched_suspend() are not. As such, this patch
explicitly serializes these operations.
[1]
https://lore.kernel.org/all/20250724124210.3675094-6-karunika.choo@arm.com/
Kind regards,
Karunika Choo
> Steve
>
>> ---
>> drivers/gpu/drm/panthor/panthor_gpu.c | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/panthor/panthor_gpu.c b/drivers/gpu/drm/panthor/panthor_gpu.c
>> index cb7a335e07d7..030409371037 100644
>> --- a/drivers/gpu/drm/panthor/panthor_gpu.c
>> +++ b/drivers/gpu/drm/panthor/panthor_gpu.c
>> @@ -35,6 +35,9 @@ struct panthor_gpu {
>>
>> /** @reqs_acked: GPU request wait queue. */
>> wait_queue_head_t reqs_acked;
>> +
>> + /** @cache_flush_lock: Lock to serialize cache flushes */
>> + struct mutex cache_flush_lock;
>> };
>>
>> /**
>> @@ -204,6 +207,7 @@ int panthor_gpu_init(struct panthor_device *ptdev)
>>
>> spin_lock_init(&gpu->reqs_lock);
>> init_waitqueue_head(&gpu->reqs_acked);
>> + mutex_init(&gpu->cache_flush_lock);
>> ptdev->gpu = gpu;
>> panthor_gpu_init_info(ptdev);
>>
>> @@ -353,6 +357,9 @@ int panthor_gpu_flush_caches(struct panthor_device *ptdev,
>> bool timedout = false;
>> unsigned long flags;
>>
>> + /* Serialize cache flush operations. */
>> + guard(mutex)(&ptdev->gpu->cache_flush_lock);
>> +
>> spin_lock_irqsave(&ptdev->gpu->reqs_lock, flags);
>> if (!drm_WARN_ON(&ptdev->base,
>> ptdev->gpu->pending_reqs & GPU_IRQ_CLEAN_CACHES_COMPLETED)) {
>
next prev parent reply other threads:[~2025-07-31 12:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-30 17:43 Karunika Choo
2025-07-31 10:17 ` Liviu Dudau
2025-07-31 10:57 ` Steven Price
2025-07-31 12:48 ` Karunika Choo [this message]
2025-07-31 13:34 ` Steven Price
2025-07-31 14:35 ` Mary Guillemard
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=216ebb8e-c973-4306-a748-a030eae01e2d@arm.com \
--to=karunika.choo@arm.com \
--cc=airlied@gmail.com \
--cc=boris.brezillon@collabora.com \
--cc=dennis.tsiang@arm.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=liviu.dudau@arm.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=nd@arm.com \
--cc=simona@ffwll.ch \
--cc=steven.price@arm.com \
--cc=tzimmermann@suse.de \
/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®