All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jordan Crouse <jcrouse@codeaurora.org>
To: iommu@lists.linux-foundation.org
Cc: robin.murphy@arm.com, will@kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-arm-msm@vger.kernel.org, Sean Paul <sean@poorly.run>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Sharat Masetty <smasetty@codeaurora.org>,
	dri-devel@lists.freedesktop.org, Sam Ravnborg <sam@ravnborg.org>,
	Rob Herring <robh+dt@kernel.org>, David Airlie <airlied@linux.ie>,
	Joerg Roedel <joro@8bytes.org>,
	Ben Dooks <ben.dooks@codethink.co.uk>,
	Allison Randal <allison@lohutok.net>,
	AngeloGioacchino Del Regno <kholk11@gmail.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Douglas Anderson <dianders@chromium.org>,
	Rob Clark <robdclark@gmail.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jeffrey Hugo <jeffrey.l.hugo@gmail.com>,
	devicetree@vger.kernel.org, Wen Yang <wen.yang99@zte.com.cn>,
	Alexios Zavras <alexios.zavras@intel.com>,
	Jeykumar Sankaran <jsanka@codeaurora.org>,
	Bruce Wang <bzwang@chromium.org>,
	linux-kernel@vger.kernel.org, Andy Gross <agross@kernel.org>,
	Brian Masney <masneyb@onstation.org>,
	Jonathan Marek <jonathan@marek.ca>,
	Drew Davenport <ddavenport@chromium.org>,
	Georgi Djakov <georgi.djakov@linaro.org>,
	Mark Rutland <mark.rutland@arm.com>,
	freedreno@lists.freedesktop.org,
	Mamta Shukla <mamtashukla555@gmail.com>,
	Daniel Vetter <daniel@ffwll.ch>
Subject: [PATCH v2 0/8] iommu/arm-smmu: Split pagetable support for Adreno GPUs
Date: Fri, 22 Nov 2019 23:31:50 +0000	[thread overview]
Message-ID: <0101016e95751a9a-9eb77449-4f72-4aac-a9df-c1a28ac67132-000000@us-west-2.amazonses.com> (raw)


Another refresh to support split pagetables for Adreno GPUs as part of an
incremental process to enable per-context pagetables.

In order to support per-context pagetables the GPU needs to enable split tables
so that we can store global buffers in the TTBR1 space leaving the GPU free to
program the TTBR0 register with the address of a context specific pagetable.

This patchset adds split pagetable support for devices identified with the
compatible string qcom,adreno-smmu-v2. If the compatible string is enabled and
DOMAIN_ATTR_SPLIT_TABLES is non zero at attach time, the implementation will
set up the TTBR0 and TTBR1 spaces with identical configurations and program
the domain pagetable into the TTBR1 register. The TTBR0 register will be
unused.

The driver can determine if split pagetables were programmed by querying
DOMAIN_ATTR_SPLIT_TABLES after attaching. The domain geometry will also be
updated to reflect the virtual address space for the TTBR1 range.

These patches are on based on top of linux-next-20191120 with [1], [2], and [3]
from Robin on the iommu list.

The first four patches add the device tree bindings and implementation
specific support for arm-smmu and the rest of the patches add the drm/msm
implementation followed by the device tree update for sdm845.

[1] https://lists.linuxfoundation.org/pipermail/iommu/2019-October/039718.html
[2] https://lists.linuxfoundation.org/pipermail/iommu/2019-October/039719.html
[3] https://lists.linuxfoundation.org/pipermail/iommu/2019-October/039720.html


Jordan Crouse (8):
  dt-bindings: arm-smmu: Add Adreno GPU variant
  iommu: Add DOMAIN_ATTR_SPLIT_TABLES
  iommu/arm-smmu: Pass io_pgtable_cfg to impl specific init_context
  iommu/arm-smmu: Add split pagetables for Adreno IOMMU implementations
  drm/msm: Attach the IOMMU device during initialization
  drm/msm: Refactor address space initialization
  drm/msm/a6xx: Support split pagetables
  arm64: dts: qcom: sdm845:  Update Adreno GPU SMMU compatible string

 .../devicetree/bindings/iommu/arm,smmu.yaml        |  6 ++
 arch/arm64/boot/dts/qcom/sdm845.dtsi               |  2 +-
 drivers/gpu/drm/msm/adreno/a2xx_gpu.c              | 16 ++++
 drivers/gpu/drm/msm/adreno/a3xx_gpu.c              |  1 +
 drivers/gpu/drm/msm/adreno/a4xx_gpu.c              |  1 +
 drivers/gpu/drm/msm/adreno/a5xx_gpu.c              |  1 +
 drivers/gpu/drm/msm/adreno/a6xx_gpu.c              | 45 ++++++++++
 drivers/gpu/drm/msm/adreno/adreno_gpu.c            | 23 ++++--
 drivers/gpu/drm/msm/adreno/adreno_gpu.h            |  8 ++
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c            | 18 ++--
 drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.c           | 18 ++--
 drivers/gpu/drm/msm/disp/mdp5/mdp5_cfg.c           |  4 -
 drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c           | 18 ++--
 drivers/gpu/drm/msm/msm_drv.h                      |  8 +-
 drivers/gpu/drm/msm/msm_gem_vma.c                  | 37 ++-------
 drivers/gpu/drm/msm/msm_gpu.c                      | 49 +----------
 drivers/gpu/drm/msm/msm_gpu.h                      |  4 +-
 drivers/gpu/drm/msm/msm_gpummu.c                   |  6 --
 drivers/gpu/drm/msm/msm_iommu.c                    | 18 ++--
 drivers/gpu/drm/msm/msm_mmu.h                      |  1 -
 drivers/iommu/arm-smmu-impl.c                      |  6 +-
 drivers/iommu/arm-smmu-qcom.c                      | 96 ++++++++++++++++++++++
 drivers/iommu/arm-smmu.c                           | 52 +++++++++---
 drivers/iommu/arm-smmu.h                           | 14 +++-
 include/linux/iommu.h                              |  1 +
 25 files changed, 295 insertions(+), 158 deletions(-)

-- 
2.7.4


WARNING: multiple messages have this Message-ID (diff)
From: Jordan Crouse <jcrouse@codeaurora.org>
To: iommu@lists.linux-foundation.org
Cc: robin.murphy@arm.com, will@kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-arm-msm@vger.kernel.org, Sean Paul <sean@poorly.run>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Sharat Masetty <smasetty@codeaurora.org>,
	dri-devel@lists.freedesktop.org, Sam Ravnborg <sam@ravnborg.org>,
	Rob Herring <robh+dt@kernel.org>, David Airlie <airlied@linux.ie>,
	Joerg Roedel <joro@8bytes.org>,
	Ben Dooks <ben.dooks@codethink.co.uk>,
	Allison Randal <allison@lohutok.net>,
	AngeloGioacchino Del Regno <kholk11@gmail.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Douglas Anderson <dianders@chromium.org>,
	Rob Clark <robdclark@gmail.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jeffrey Hugo <jeffrey.l.hugo@gmail.com>,
	devicetree@vger.kernel.org, Wen Yang <wen.>
Subject: [PATCH v2 0/8] iommu/arm-smmu: Split pagetable support for Adreno GPUs
Date: Fri, 22 Nov 2019 23:31:50 +0000	[thread overview]
Message-ID: <0101016e95751a9a-9eb77449-4f72-4aac-a9df-c1a28ac67132-000000@us-west-2.amazonses.com> (raw)


Another refresh to support split pagetables for Adreno GPUs as part of an
incremental process to enable per-context pagetables.

In order to support per-context pagetables the GPU needs to enable split tables
so that we can store global buffers in the TTBR1 space leaving the GPU free to
program the TTBR0 register with the address of a context specific pagetable.

This patchset adds split pagetable support for devices identified with the
compatible string qcom,adreno-smmu-v2. If the compatible string is enabled and
DOMAIN_ATTR_SPLIT_TABLES is non zero at attach time, the implementation will
set up the TTBR0 and TTBR1 spaces with identical configurations and program
the domain pagetable into the TTBR1 register. The TTBR0 register will be
unused.

The driver can determine if split pagetables were programmed by querying
DOMAIN_ATTR_SPLIT_TABLES after attaching. The domain geometry will also be
updated to reflect the virtual address space for the TTBR1 range.

These patches are on based on top of linux-next-20191120 with [1], [2], and [3]
from Robin on the iommu list.

The first four patches add the device tree bindings and implementation
specific support for arm-smmu and the rest of the patches add the drm/msm
implementation followed by the device tree update for sdm845.

[1] https://lists.linuxfoundation.org/pipermail/iommu/2019-October/039718.html
[2] https://lists.linuxfoundation.org/pipermail/iommu/2019-October/039719.html
[3] https://lists.linuxfoundation.org/pipermail/iommu/2019-October/039720.html


Jordan Crouse (8):
  dt-bindings: arm-smmu: Add Adreno GPU variant
  iommu: Add DOMAIN_ATTR_SPLIT_TABLES
  iommu/arm-smmu: Pass io_pgtable_cfg to impl specific init_context
  iommu/arm-smmu: Add split pagetables for Adreno IOMMU implementations
  drm/msm: Attach the IOMMU device during initialization
  drm/msm: Refactor address space initialization
  drm/msm/a6xx: Support split pagetables
  arm64: dts: qcom: sdm845:  Update Adreno GPU SMMU compatible string

 .../devicetree/bindings/iommu/arm,smmu.yaml        |  6 ++
 arch/arm64/boot/dts/qcom/sdm845.dtsi               |  2 +-
 drivers/gpu/drm/msm/adreno/a2xx_gpu.c              | 16 ++++
 drivers/gpu/drm/msm/adreno/a3xx_gpu.c              |  1 +
 drivers/gpu/drm/msm/adreno/a4xx_gpu.c              |  1 +
 drivers/gpu/drm/msm/adreno/a5xx_gpu.c              |  1 +
 drivers/gpu/drm/msm/adreno/a6xx_gpu.c              | 45 ++++++++++
 drivers/gpu/drm/msm/adreno/adreno_gpu.c            | 23 ++++--
 drivers/gpu/drm/msm/adreno/adreno_gpu.h            |  8 ++
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c            | 18 ++--
 drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.c           | 18 ++--
 drivers/gpu/drm/msm/disp/mdp5/mdp5_cfg.c           |  4 -
 drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c           | 18 ++--
 drivers/gpu/drm/msm/msm_drv.h                      |  8 +-
 drivers/gpu/drm/msm/msm_gem_vma.c                  | 37 ++-------
 drivers/gpu/drm/msm/msm_gpu.c                      | 49 +----------
 drivers/gpu/drm/msm/msm_gpu.h                      |  4 +-
 drivers/gpu/drm/msm/msm_gpummu.c                   |  6 --
 drivers/gpu/drm/msm/msm_iommu.c                    | 18 ++--
 drivers/gpu/drm/msm/msm_mmu.h                      |  1 -
 drivers/iommu/arm-smmu-impl.c                      |  6 +-
 drivers/iommu/arm-smmu-qcom.c                      | 96 ++++++++++++++++++++++
 drivers/iommu/arm-smmu.c                           | 52 +++++++++---
 drivers/iommu/arm-smmu.h                           | 14 +++-
 include/linux/iommu.h                              |  1 +
 25 files changed, 295 insertions(+), 158 deletions(-)

-- 
2.7.4

             reply	other threads:[~2019-11-22 23:31 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-22 23:31 Jordan Crouse [this message]
2019-11-22 23:31 ` [PATCH v2 0/8] iommu/arm-smmu: Split pagetable support for Adreno GPUs Jordan Crouse
  -- strict thread matches above, loose matches on Subject: below --
2019-11-22 23:31 Jordan Crouse
2019-11-22 23:31 ` Jordan Crouse
2019-11-22 23:31 Jordan Crouse
2019-11-22 23:31 ` Jordan Crouse
2019-11-22 23:31 Jordan Crouse
2019-11-22 23:31 ` Jordan Crouse

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=0101016e95751a9a-9eb77449-4f72-4aac-a9df-c1a28ac67132-000000@us-west-2.amazonses.com \
    --to=jcrouse@codeaurora.org \
    --cc=agross@kernel.org \
    --cc=airlied@linux.ie \
    --cc=alexios.zavras@intel.com \
    --cc=allison@lohutok.net \
    --cc=ben.dooks@codethink.co.uk \
    --cc=bjorn.andersson@linaro.org \
    --cc=bzwang@chromium.org \
    --cc=daniel@ffwll.ch \
    --cc=ddavenport@chromium.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dianders@chromium.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=freedreno@lists.freedesktop.org \
    --cc=georgi.djakov@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=iommu@lists.linux-foundation.org \
    --cc=jeffrey.l.hugo@gmail.com \
    --cc=jonathan@marek.ca \
    --cc=joro@8bytes.org \
    --cc=jsanka@codeaurora.org \
    --cc=kholk11@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mamtashukla555@gmail.com \
    --cc=mark.rutland@arm.com \
    --cc=masneyb@onstation.org \
    --cc=robdclark@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=sam@ravnborg.org \
    --cc=sean@poorly.run \
    --cc=smasetty@codeaurora.org \
    --cc=tglx@linutronix.de \
    --cc=wen.yang99@zte.com.cn \
    --cc=will@kernel.org \
    /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 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.