All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/5] iommu: M1 Pro/Max DART support
@ 2022-06-21  7:18 ` Janne Grunau
  0 siblings, 0 replies; 30+ messages in thread
From: Janne Grunau @ 2022-06-21  7:18 UTC (permalink / raw)
  To: iommu
  Cc: Isaac J. Manjarres, devicetree, linux-arm-kernel, Will Deacon,
	Hector Martin, Konrad Dybcio, linux-kernel, Rob Herring, asahi,
	Krzysztof Kozlowski, Robin Murphy, Alyssa Rosenzweig,
	Mark Kettenis

Hej,

this is the next attempt adding support for the DART found in Apple's
M1 Pro/Max/Ultra. This adds a separate io-pgtable implementation for
DART. As already mentioned in v2 the pte format is not fully compatible
with io-pgtable-arm. Especially the 2nd least significant bit is used
and is not available to tag tables/pages.
io-pgtable-dart.c is copied from io-pgtable-arm.c and support for
unused features is removed. Support for 4k IO pages is left for A7 to
A11 SoCs as there's work underway to run Linux on them.

The incompatibilities between both Apple DART pte seems manageable in
their own io-pgtable implementation. A short list of the known
differences:

 - the physical addresses are shifted left by 4 bits and and have 2 more
   bits inside the PTE entries
 - the read/write protection flags are at a different position
 - the subpage protection feature is now mandatory. For Linux we can
   just configure it to always allow access to the entire page.
 - BIT(1) tags "uncached" mappings (used for the display controller)

There is second type of DART (t8110) present on M1 Pro/Max SoCs which
uses the same PTE format as t6000.

Changes in v3:
- move APPLE_DART to its own io-pgtable implementation, copied from
  io-pgtable-arm and simplified

Changes in v2:
- added Rob's Acked-by:
- add APPLE_DART2 io-pgtable format

Janne Grunau (1):
  iommu/io-pgtable: Move Apple DART support to its own file

Sven Peter (4):
  dt-bindings: iommu: dart: add t6000 compatible
  iommu/io-pgtable: Add DART subpage protection support
  iommu/io-pgtable-dart: Add DART PTE support for t6000
  iommu: dart: Support t6000 variant

 .../devicetree/bindings/iommu/apple,dart.yaml |   4 +-
 MAINTAINERS                                   |   1 +
 drivers/iommu/Kconfig                         |   1 -
 drivers/iommu/Makefile                        |   2 +-
 drivers/iommu/apple-dart.c                    |  24 +-
 drivers/iommu/io-pgtable-arm.c                |  63 --
 drivers/iommu/io-pgtable-dart.c               | 623 ++++++++++++++++++
 drivers/iommu/io-pgtable.c                    |   3 +
 include/linux/io-pgtable.h                    |   1 +
 9 files changed, 653 insertions(+), 69 deletions(-)
 create mode 100644 drivers/iommu/io-pgtable-dart.c

-- 
2.35.1

_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

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

end of thread, other threads:[~2022-09-01  0:23 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-21  7:18 [PATCH v3 0/5] iommu: M1 Pro/Max DART support Janne Grunau
2022-06-21  7:18 ` Janne Grunau
2022-06-21  7:18 ` Janne Grunau
2022-06-21  7:18 ` [PATCH v3 1/5] dt-bindings: iommu: dart: add t6000 compatible Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-21  7:18 ` [PATCH v3 2/5] iommu/io-pgtable: Move Apple DART support to its own file Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-27 15:09   ` Robin Murphy
2022-06-27 15:09     ` Robin Murphy
2022-06-27 15:09     ` Robin Murphy
2022-09-01  0:15     ` Janne Grunau
2022-09-01  0:15       ` Janne Grunau
2022-06-21  7:18 ` [PATCH v3 3/5] iommu/io-pgtable: Add DART subpage protection support Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-21  7:18 ` [PATCH v3 4/5] iommu/io-pgtable-dart: Add DART PTE support for t6000 Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-27 15:13   ` Robin Murphy
2022-06-27 15:13     ` Robin Murphy
2022-06-27 15:13     ` Robin Murphy
2022-07-31  7:04     ` Hector Martin
2022-07-31  7:04       ` Hector Martin
2022-09-01  0:22     ` Janne Grunau
2022-09-01  0:22       ` Janne Grunau
2022-06-21  7:18 ` [PATCH v3 5/5] iommu: dart: Support t6000 variant Janne Grunau
2022-06-21  7:18   ` Janne Grunau
2022-06-21  7:18   ` Janne Grunau

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.