public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/9] Add support for Translation Buffer Units
@ 2023-12-20  6:02 Georgi Djakov
  2023-12-20  6:02 ` [PATCH v3 1/9] dt-bindings: iommu: Add Translation Buffer Unit bindings Georgi Djakov
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Georgi Djakov @ 2023-12-20  6:02 UTC (permalink / raw)
  To: robh+dt, krzysztof.kozlowski+dt, conor+dt, will, robin.murphy,
	joro
  Cc: devicetree, andersson, konrad.dybcio, linux-arm-kernel, iommu,
	linux-kernel, linux-arm-msm, quic_cgoldswo, quic_sukadev,
	quic_pdaly, quic_sudaraja, djakov

The TCUs (Translation Control Units) and TBUs (Translation Buffer
Units) are key components of the MMU-500. Multiple TBUs are connected
to a single TCU over an interconnect. Each TBU contains a TLB that
caches page tables. The MMU-500 implements a TBU for each connected
master, and the TBU is designed, so that it is local to the master.

The Qualcomm SDM845 and SC7280 platforms have an implementation of the
SMMU-500, that has multiple TBUs. A DT schema is added to describe the
resources for each TBU (register space, power-domains, interconnects
and clocks).

The TBU driver will manage the resources and allow the system to
operate the TBUs during a context fault to obtain details by doing
s1 inv, software + hardware page table walks etc. This is implemented
with ATOS/eCATs as the ATS feature is not supported. Being able to
query the TBUs is useful for debugging various hardware/software
issues on these platforms.

v3:
- Having a TBU is not Qualcomm specific, so allow having TBU child
  nodes with no specific constraints on properties. For some of the
  vendor compatibles however, add a schema to describe specific
  properties and allow validation. (Rob)
- Drop the useless reg-names DT property on TBUs. (Rob)
- Make the stream-id-range DT property a common one. (Rob)
- Fix the DT example. (Rob)
- Minor fixes on the TBU driver.
- Add support for SC7280 platforms.

v2: https://lore.kernel.org/r/20231118042730.2799-1-quic_c_gdjako@quicinc.com
- Improve DT binding description, add full example. (Konrad)
- Drop Qcom specific stuff from the generic binding. (Rob)
- Unconditionally try to populate subnodes. (Konrad)
- Improve TBU driver commit text, remove memory barriers. (Bjorn)
- Move TBU stuff into separate file. Make the driver builtin.
- TODO: Evaluate whether to keep TBU support as a separate driver
  or just instantiate things from qcom_smmu_impl_init()

v1: https://lore.kernel.org/r/20231019021923.13939-1-quic_c_gdjako@quicinc.com

Georgi Djakov (9):
  dt-bindings: iommu: Add Translation Buffer Unit bindings
  iommu/arm-smmu-qcom: Add support for TBUs
  iommu/arm-smmu-qcom-tbu: Add Qualcomm TBU driver
  iommu/arm-smmu: Allow using a threaded handler for context interrupts
  iommu/arm-smmu-qcom: Use a custom context fault handler for sdm845
  arm64: dts: qcom: sdm845: Add DT nodes for the TBUs
  dt-bindings: arm-smmu: Add TBU support for sc7280
  iommu/arm-smmu-qcom: Use the custom fault handler on more platforms
  arm64: dts: qcom: sc7280: Add DT nodes for the TBUs

 .../devicetree/bindings/iommu/arm,smmu.yaml   |  33 ++
 .../bindings/iommu/qcom,qsmmuv500-tbu.yaml    |  77 +++
 arch/arm64/boot/dts/qcom/sc7280.dtsi          |  97 ++++
 arch/arm64/boot/dts/qcom/sdm845.dtsi          |  74 +++
 drivers/iommu/Kconfig                         |   8 +
 drivers/iommu/arm/arm-smmu/Makefile           |   1 +
 .../iommu/arm/arm-smmu/arm-smmu-qcom-tbu.c    | 504 ++++++++++++++++++
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c    |  17 +
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.h    |   6 +-
 drivers/iommu/arm/arm-smmu/arm-smmu.c         |  12 +-
 drivers/iommu/arm/arm-smmu/arm-smmu.h         |   3 +
 11 files changed, 829 insertions(+), 3 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/iommu/qcom,qsmmuv500-tbu.yaml
 create mode 100644 drivers/iommu/arm/arm-smmu/arm-smmu-qcom-tbu.c


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

end of thread, other threads:[~2023-12-21 14:25 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-20  6:02 [PATCH v3 0/9] Add support for Translation Buffer Units Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 1/9] dt-bindings: iommu: Add Translation Buffer Unit bindings Georgi Djakov
2023-12-21 14:25   ` Rob Herring
2023-12-20  6:02 ` [PATCH v3 2/9] iommu/arm-smmu-qcom: Add support for TBUs Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 3/9] iommu/arm-smmu-qcom-tbu: Add Qualcomm TBU driver Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 4/9] iommu/arm-smmu: Allow using a threaded handler for context interrupts Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 5/9] iommu/arm-smmu-qcom: Use a custom context fault handler for sdm845 Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 6/9] arm64: dts: qcom: sdm845: Add DT nodes for the TBUs Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 7/9] dt-bindings: arm-smmu: Add TBU support for sc7280 Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 8/9] iommu/arm-smmu-qcom: Use the custom fault handler on more platforms Georgi Djakov
2023-12-20  6:02 ` [PATCH v3 9/9] arm64: dts: qcom: sc7280: Add DT nodes for the TBUs Georgi Djakov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox