From: Robin Murphy <robin.murphy@arm.com>
To: Jonathan Marek <jonathan@marek.ca>, freedreno@lists.freedesktop.org
Cc: David Airlie <airlied@linux.ie>,
"open list:DRM DRIVER FOR MSM ADRENO GPU"
<linux-arm-msm@vger.kernel.org>,
Jordan Crouse <jordan@cosmicpenguin.net>,
dpiliaiev@igalia.com,
"open list:DRM DRIVER FOR MSM ADRENO GPU"
<dri-devel@lists.freedesktop.org>,
Abhinav Kumar <quic_abhinavk@quicinc.com>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Sean Paul <sean@poorly.run>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] drm/msm: use orig_nents to iterate over scatterlist with per-process tables
Date: Tue, 5 Apr 2022 11:18:23 +0100 [thread overview]
Message-ID: <00bcebba-4955-cbbd-e7f4-e344f9b932a0@arm.com> (raw)
In-Reply-To: <20220328125505.31605-1-jonathan@marek.ca>
On 2022-03-28 13:55, Jonathan Marek wrote:
> This matches the implementation of iommu_map_sgtable() used for the
> non-per-process page tables path.
>
> This works around the dma_map_sgtable() call (used to invalidate cache)
> overwriting sgt->nents with 1 (which is probably a separate issue).
FWIW that's expected behaviour. The sgtable APIs use nents to keep track
of the number of DMA segments, while orig_nents represents the physical
segments. IIUC you're not actually using the DMA mapping, just relying
on its side-effects, so it's still the physical segments that you care
about for your private IOMMU mapping here.
> Fixes: b145c6e65eb0 ("drm/msm: Add support to create a local pagetable")
> Signed-off-by: Jonathan Marek <jonathan@marek.ca>
> ---
> drivers/gpu/drm/msm/msm_iommu.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/msm/msm_iommu.c b/drivers/gpu/drm/msm/msm_iommu.c
> index bcaddbba564df..22935ef26a3a1 100644
> --- a/drivers/gpu/drm/msm/msm_iommu.c
> +++ b/drivers/gpu/drm/msm/msm_iommu.c
> @@ -58,7 +58,7 @@ static int msm_iommu_pagetable_map(struct msm_mmu *mmu, u64 iova,
> u64 addr = iova;
> unsigned int i;
>
> - for_each_sg(sgt->sgl, sg, sgt->nents, i) {
> + for_each_sg(sgt->sgl, sg, sgt->orig_nents, i) {
Even better would be to use for_each_sgtable_sg(), which exists
primarily for the sake of avoiding this exact confusion.
Robin.
> size_t size = sg->length;
> phys_addr_t phys = sg_phys(sg);
>
prev parent reply other threads:[~2022-04-05 22:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-28 12:55 [PATCH] drm/msm: use orig_nents to iterate over scatterlist with per-process tables Jonathan Marek
2022-04-05 10:18 ` Robin Murphy [this message]
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=00bcebba-4955-cbbd-e7f4-e344f9b932a0@arm.com \
--to=robin.murphy@arm.com \
--cc=airlied@linux.ie \
--cc=bjorn.andersson@linaro.org \
--cc=dpiliaiev@igalia.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jonathan@marek.ca \
--cc=jordan@cosmicpenguin.net \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=quic_abhinavk@quicinc.com \
--cc=sean@poorly.run \
/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