2023-01-21 09:41:00

by Asahi Lina

[permalink] [raw]
Subject: [PATCH] iommu/io-pgtable: Add Apple UAT variant format

Apple Silicon SoCs (M1, M2, etc.) have a GPU with an ARM64 firmware
coprocessor. The firmware and the GPU share page tables in the standard
ARM64 format (the firmware literally sets the base as its TTBR0/1
registers). TTBR0 covers the low half of the address space and is
intended to be per-GPU-VM (GPU user mappings and kernel-managed
buffers), while TTBR1 covers the upper half and is global (firmware
code, data, management structures shared with the AP, and a few
GPU-accessible data structures).

In typical Apple fashion, the permissions are interpreted differently
from traditional ARM PTEs. By default, firmware mappings use Apple SPRR
permission remapping. The firmware only uses that for its own
code/data/MMIO mappings, and those pages are not accessible by the GPU
hardware. We never need to touch/manage these mappings, so this patch
does not support them.

When a specific bit is set in the PTEs, permissions switch to a
different scheme which supports various combinations of firmware/GPU
access. This is the mode intended to be used by AP GPU drivers, and what
we implement here.

The prot bits are interpreted as follows:

- IOMMU_READ and IOMMU_WRITE have the usual meaning.

- IOMMU_PRIV creates firmware-only mappings (no GPU access)
- IOMMU_NOEXEC creates GPU-only structures (no FW access)
- Otherwise structures are accessible by both GPU and FW

- IOMMU_MMIO creates Device mappings for firmware
- IOMMU_CACHE creates Normal-NC mappings for firmware (cache-coherent
from the point of view of the AP, but slower)
- Otherwise creates Normal mappings for firmware (this requires manual
cache management on the firmware side, as it is not coherent with the
SoC fabric)

GPU-only mappings (textures/etc) are expected to use IOMMU_CACHE and are
seemingly coherent with the CPU (or otherwise the firmware/GPU already
issue the required cache management operations when correctly
configured).

There is a GPU-RO/FW-RW mode, but it is not currently implemented (it
doesn't seem to be very useful for the driver). There seems to be no
real noexec control (i.e. for shaders) on the GPU side. All of these
mappings are implicitly noexec for the firmware.

Drivers are expected to fully manage per-user (TTBR0) page tables, but
ownership of shared kernel (TTBR1) page tables is shared between the
firmware and the AP OS. We handle this by simply using a smaller IAS to
drop down one level of page tables, so the driver can install a PTE in
the top-level (firmware-initialized) page table directly and just add an
offset to the VAs passed into the io_pgtable code. This avoids having to
have any special handling for this here. The firmware-relevant data
structures are small, so we do not expect to ever require more VA space
than one top-level PTE covers (IAS=36 for the next level, 64 GiB).

Only 16K page mode is supported. The coprocessor MMU supports huge pages
as usual for ARM64, but the GPU MMU does not, so we do not enable them.

Signed-off-by: Asahi Lina <[email protected]>
---
drivers/iommu/io-pgtable-arm.c | 101 +++++++++++++++++++++++++++++++--
drivers/iommu/io-pgtable.c | 1 +
include/linux/io-pgtable.h | 6 ++
3 files changed, 104 insertions(+), 4 deletions(-)

diff --git a/drivers/iommu/io-pgtable-arm.c b/drivers/iommu/io-pgtable-arm.c
index 72dcdd468cf3..85f35035ae95 100644
--- a/drivers/iommu/io-pgtable-arm.c
+++ b/drivers/iommu/io-pgtable-arm.c
@@ -130,6 +130,15 @@
#define ARM_MALI_LPAE_MEMATTR_IMP_DEF 0x88ULL
#define ARM_MALI_LPAE_MEMATTR_WRITE_ALLOC 0x8DULL

+#define APPLE_UAT_MEMATTR_PRIV (((arm_lpae_iopte)0x0) << 2)
+#define APPLE_UAT_MEMATTR_DEV (((arm_lpae_iopte)0x1) << 2)
+#define APPLE_UAT_MEMATTR_SHARED (((arm_lpae_iopte)0x2) << 2)
+#define APPLE_UAT_GPU_ACCESS (((arm_lpae_iopte)1) << 55)
+#define APPLE_UAT_UXN (((arm_lpae_iopte)1) << 54)
+#define APPLE_UAT_PXN (((arm_lpae_iopte)1) << 53)
+#define APPLE_UAT_AP1 (((arm_lpae_iopte)1) << 7)
+#define APPLE_UAT_AP0 (((arm_lpae_iopte)1) << 6)
+
/* IOPTE accessors */
#define iopte_deref(pte,d) __va(iopte_to_paddr(pte, d))

@@ -402,7 +411,42 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
{
arm_lpae_iopte pte;

- if (data->iop.fmt == ARM_64_LPAE_S1 ||
+ if (data->iop.fmt == APPLE_UAT) {
+ /*
+ * This bit enables GPU access and the particular permission
+ * rules that follow. Without it, access is firmware-only and
+ * permissions follow the firmware's Apple SPRR configuration.
+ */
+ pte = APPLE_UAT_GPU_ACCESS;
+ if (prot & IOMMU_PRIV) {
+ /* Firmware structures */
+ pte |= APPLE_UAT_AP0;
+ if (prot & IOMMU_WRITE) {
+ /* Firmware RW */
+ pte |= APPLE_UAT_UXN;
+ } else if (!(prot & IOMMU_READ)) {
+ /* No access */
+ pte |= APPLE_UAT_PXN;
+ }
+ } else if (prot & IOMMU_NOEXEC) {
+ /* GPU structures (no FW access) */
+ pte |= APPLE_UAT_AP1 | ARM_LPAE_PTE_nG;
+ if (!(prot & IOMMU_READ)) {
+ pte |= APPLE_UAT_PXN;
+ if (!(prot & IOMMU_WRITE))
+ pte |= APPLE_UAT_UXN;
+ } else if (prot & IOMMU_WRITE) {
+ pte |= APPLE_UAT_UXN;
+ }
+ } else {
+ pte |= ARM_LPAE_PTE_nG;
+ /* GPU structures (also FW accessible) */
+ if (prot & IOMMU_WRITE)
+ pte |= APPLE_UAT_UXN;
+ if (prot & IOMMU_READ)
+ pte |= APPLE_UAT_PXN;
+ }
+ } else if (data->iop.fmt == ARM_64_LPAE_S1 ||
data->iop.fmt == ARM_32_LPAE_S1) {
pte = ARM_LPAE_PTE_nG;
if (!(prot & IOMMU_WRITE) && (prot & IOMMU_READ))
@@ -421,7 +465,14 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
* Note that this logic is structured to accommodate Mali LPAE
* having stage-1-like attributes but stage-2-like permissions.
*/
- if (data->iop.fmt == ARM_64_LPAE_S2 ||
+ if (data->iop.fmt == APPLE_UAT) {
+ if (prot & IOMMU_MMIO)
+ pte |= APPLE_UAT_MEMATTR_DEV;
+ else if (prot & IOMMU_CACHE)
+ pte |= APPLE_UAT_MEMATTR_SHARED;
+ else
+ pte |= APPLE_UAT_MEMATTR_PRIV;
+ } else if (data->iop.fmt == ARM_64_LPAE_S2 ||
data->iop.fmt == ARM_32_LPAE_S2) {
if (prot & IOMMU_MMIO)
pte |= ARM_LPAE_PTE_MEMATTR_DEV;
@@ -444,12 +495,14 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
* "outside the GPU" (i.e. either the Inner or System domain in CPU
* terms, depending on coherency).
*/
- if (prot & IOMMU_CACHE && data->iop.fmt != ARM_MALI_LPAE)
+ if (data->iop.fmt == APPLE_UAT)
+ pte |= ARM_LPAE_PTE_SH_NS;
+ else if (prot & IOMMU_CACHE && data->iop.fmt != ARM_MALI_LPAE)
pte |= ARM_LPAE_PTE_SH_IS;
else
pte |= ARM_LPAE_PTE_SH_OS;

- if (prot & IOMMU_NOEXEC)
+ if (prot & IOMMU_NOEXEC && data->iop.fmt != APPLE_UAT)
pte |= ARM_LPAE_PTE_XN;

if (data->iop.cfg.quirks & IO_PGTABLE_QUIRK_ARM_NS)
@@ -1079,6 +1132,41 @@ arm_mali_lpae_alloc_pgtable(struct io_pgtable_cfg *cfg, void *cookie)
return NULL;
}

+static struct io_pgtable *
+apple_uat_alloc_pgtable(struct io_pgtable_cfg *cfg, void *cookie)
+{
+ struct arm_lpae_io_pgtable *data;
+
+ /* No quirks for UAT (hopefully) */
+ if (cfg->quirks)
+ return NULL;
+
+ if (cfg->ias > 48 || cfg->oas > 42)
+ return NULL;
+
+ cfg->pgsize_bitmap &= SZ_16K;
+
+ data = arm_lpae_alloc_pgtable(cfg);
+ if (!data)
+ return NULL;
+
+ data->pgd = __arm_lpae_alloc_pages(ARM_LPAE_PGD_SIZE(data), GFP_KERNEL,
+ cfg);
+ if (!data->pgd)
+ goto out_free_data;
+
+ /* Ensure the empty pgd is visible before the TTBAT can be written */
+ wmb();
+
+ cfg->apple_uat_cfg.ttbr = virt_to_phys(data->pgd);
+
+ return &data->iop;
+
+out_free_data:
+ kfree(data);
+ return NULL;
+}
+
struct io_pgtable_init_fns io_pgtable_arm_64_lpae_s1_init_fns = {
.alloc = arm_64_lpae_alloc_pgtable_s1,
.free = arm_lpae_free_pgtable,
@@ -1104,6 +1192,11 @@ struct io_pgtable_init_fns io_pgtable_arm_mali_lpae_init_fns = {
.free = arm_lpae_free_pgtable,
};

+struct io_pgtable_init_fns io_pgtable_apple_uat_init_fns = {
+ .alloc = apple_uat_alloc_pgtable,
+ .free = arm_lpae_free_pgtable,
+};
+
#ifdef CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST

static struct io_pgtable_cfg *cfg_cookie __initdata;
diff --git a/drivers/iommu/io-pgtable.c b/drivers/iommu/io-pgtable.c
index b843fcd365d2..faec53e22388 100644
--- a/drivers/iommu/io-pgtable.c
+++ b/drivers/iommu/io-pgtable.c
@@ -20,6 +20,7 @@ io_pgtable_init_table[IO_PGTABLE_NUM_FMTS] = {
[ARM_64_LPAE_S1] = &io_pgtable_arm_64_lpae_s1_init_fns,
[ARM_64_LPAE_S2] = &io_pgtable_arm_64_lpae_s2_init_fns,
[ARM_MALI_LPAE] = &io_pgtable_arm_mali_lpae_init_fns,
+ [APPLE_UAT] = &io_pgtable_apple_uat_init_fns,
#endif
#ifdef CONFIG_IOMMU_IO_PGTABLE_DART
[APPLE_DART] = &io_pgtable_apple_dart_init_fns,
diff --git a/include/linux/io-pgtable.h b/include/linux/io-pgtable.h
index e4697ff48d3a..50d4dce53ded 100644
--- a/include/linux/io-pgtable.h
+++ b/include/linux/io-pgtable.h
@@ -19,6 +19,7 @@ enum io_pgtable_fmt {
AMD_IOMMU_V2,
APPLE_DART,
APPLE_DART2,
+ APPLE_UAT,
IO_PGTABLE_NUM_FMTS,
};

@@ -148,6 +149,10 @@ struct io_pgtable_cfg {
u64 ttbr[4];
u32 n_ttbrs;
} apple_dart_cfg;
+
+ struct {
+ u64 ttbr;
+ } apple_uat_cfg;
};
};

@@ -262,5 +267,6 @@ extern struct io_pgtable_init_fns io_pgtable_arm_mali_lpae_init_fns;
extern struct io_pgtable_init_fns io_pgtable_amd_iommu_v1_init_fns;
extern struct io_pgtable_init_fns io_pgtable_amd_iommu_v2_init_fns;
extern struct io_pgtable_init_fns io_pgtable_apple_dart_init_fns;
+extern struct io_pgtable_init_fns io_pgtable_apple_uat_init_fns;

#endif /* __IO_PGTABLE_H */
--
2.35.1


2023-01-23 15:39:29

by Robin Murphy

[permalink] [raw]
Subject: Re: [PATCH] iommu/io-pgtable: Add Apple UAT variant format

On 2023-01-21 08:47, Asahi Lina wrote:
> Apple Silicon SoCs (M1, M2, etc.) have a GPU with an ARM64 firmware
> coprocessor. The firmware and the GPU share page tables in the standard
> ARM64 format (the firmware literally sets the base as its TTBR0/1
> registers). TTBR0 covers the low half of the address space and is
> intended to be per-GPU-VM (GPU user mappings and kernel-managed
> buffers), while TTBR1 covers the upper half and is global (firmware
> code, data, management structures shared with the AP, and a few
> GPU-accessible data structures).
>
> In typical Apple fashion, the permissions are interpreted differently
> from traditional ARM PTEs. By default, firmware mappings use Apple SPRR
> permission remapping. The firmware only uses that for its own
> code/data/MMIO mappings, and those pages are not accessible by the GPU
> hardware. We never need to touch/manage these mappings, so this patch
> does not support them.
>
> When a specific bit is set in the PTEs, permissions switch to a
> different scheme which supports various combinations of firmware/GPU
> access. This is the mode intended to be used by AP GPU drivers, and what
> we implement here.
>
> The prot bits are interpreted as follows:
>
> - IOMMU_READ and IOMMU_WRITE have the usual meaning.
>
> - IOMMU_PRIV creates firmware-only mappings (no GPU access)
> - IOMMU_NOEXEC creates GPU-only structures (no FW access)
> - Otherwise structures are accessible by both GPU and FW
>
> - IOMMU_MMIO creates Device mappings for firmware
> - IOMMU_CACHE creates Normal-NC mappings for firmware (cache-coherent
> from the point of view of the AP, but slower)
> - Otherwise creates Normal mappings for firmware (this requires manual
> cache management on the firmware side, as it is not coherent with the
> SoC fabric)

Please don't abuse the prot flags by overloading them with
caller-specific meanings, especially if that ends up completely
reversing the expected meaning. They represent fairly generic semantics
which IOMMU drivers, and thus io-pgtable implementations, are expected
to match if the underlying format supports it, or ignore if not. If a
pagetable format has other functionality which a caller wants to make
use of, then we can look at extending that (possibly even as far as
reserving some prot values for format-specific definitons, if need be),
but the point is still to represent the functionality of the
MMU/pagetable itself, not encode higher-level use-cases.

> GPU-only mappings (textures/etc) are expected to use IOMMU_CACHE and are
> seemingly coherent with the CPU (or otherwise the firmware/GPU already
> issue the required cache management operations when correctly
> configured).
>
> There is a GPU-RO/FW-RW mode, but it is not currently implemented (it
> doesn't seem to be very useful for the driver). There seems to be no
> real noexec control (i.e. for shaders) on the GPU side. All of these
> mappings are implicitly noexec for the firmware.
>
> Drivers are expected to fully manage per-user (TTBR0) page tables, but
> ownership of shared kernel (TTBR1) page tables is shared between the
> firmware and the AP OS. We handle this by simply using a smaller IAS to
> drop down one level of page tables, so the driver can install a PTE in
> the top-level (firmware-initialized) page table directly and just add an
> offset to the VAs passed into the io_pgtable code. This avoids having to
> have any special handling for this here. The firmware-relevant data
> structures are small, so we do not expect to ever require more VA space
> than one top-level PTE covers (IAS=36 for the next level, 64 GiB).

I don't quite follow what you're saying there.... however, since
io-pgtable-arm already supports the TTB0/TTB1 distinction, on the face
of it it would seem simpler to make use of the existing
IO_PGTABLE_QUIRK_ARM_TTBR1 than play weird non-obvious tricks to pretend
TTB1 somehow lives inside the TTB0 VA range (or is it the other way round?)

> Only 16K page mode is supported. The coprocessor MMU supports huge pages
> as usual for ARM64, but the GPU MMU does not, so we do not enable them.
>
> Signed-off-by: Asahi Lina <[email protected]>
> ---
> drivers/iommu/io-pgtable-arm.c | 101 +++++++++++++++++++++++++++++++--
> drivers/iommu/io-pgtable.c | 1 +
> include/linux/io-pgtable.h | 6 ++
> 3 files changed, 104 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/iommu/io-pgtable-arm.c b/drivers/iommu/io-pgtable-arm.c
> index 72dcdd468cf3..85f35035ae95 100644
> --- a/drivers/iommu/io-pgtable-arm.c
> +++ b/drivers/iommu/io-pgtable-arm.c
> @@ -130,6 +130,15 @@
> #define ARM_MALI_LPAE_MEMATTR_IMP_DEF 0x88ULL
> #define ARM_MALI_LPAE_MEMATTR_WRITE_ALLOC 0x8DULL
>
> +#define APPLE_UAT_MEMATTR_PRIV (((arm_lpae_iopte)0x0) << 2)
> +#define APPLE_UAT_MEMATTR_DEV (((arm_lpae_iopte)0x1) << 2)
> +#define APPLE_UAT_MEMATTR_SHARED (((arm_lpae_iopte)0x2) << 2)
> +#define APPLE_UAT_GPU_ACCESS (((arm_lpae_iopte)1) << 55)
> +#define APPLE_UAT_UXN (((arm_lpae_iopte)1) << 54)
> +#define APPLE_UAT_PXN (((arm_lpae_iopte)1) << 53)
> +#define APPLE_UAT_AP1 (((arm_lpae_iopte)1) << 7)
> +#define APPLE_UAT_AP0 (((arm_lpae_iopte)1) << 6)
> +
> /* IOPTE accessors */
> #define iopte_deref(pte,d) __va(iopte_to_paddr(pte, d))
>
> @@ -402,7 +411,42 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
> {
> arm_lpae_iopte pte;
>
> - if (data->iop.fmt == ARM_64_LPAE_S1 ||
> + if (data->iop.fmt == APPLE_UAT) {
> + /*
> + * This bit enables GPU access and the particular permission
> + * rules that follow. Without it, access is firmware-only and
> + * permissions follow the firmware's Apple SPRR configuration.
> + */
> + pte = APPLE_UAT_GPU_ACCESS;
> + if (prot & IOMMU_PRIV) {
> + /* Firmware structures */
> + pte |= APPLE_UAT_AP0;
> + if (prot & IOMMU_WRITE) {
> + /* Firmware RW */
> + pte |= APPLE_UAT_UXN;
> + } else if (!(prot & IOMMU_READ)) {
> + /* No access */
> + pte |= APPLE_UAT_PXN;
> + }
> + } else if (prot & IOMMU_NOEXEC) {
> + /* GPU structures (no FW access) */
> + pte |= APPLE_UAT_AP1 | ARM_LPAE_PTE_nG;
> + if (!(prot & IOMMU_READ)) {
> + pte |= APPLE_UAT_PXN;
> + if (!(prot & IOMMU_WRITE))
> + pte |= APPLE_UAT_UXN;
> + } else if (prot & IOMMU_WRITE) {
> + pte |= APPLE_UAT_UXN;
> + }
> + } else {
> + pte |= ARM_LPAE_PTE_nG;

So coprocessor-only mappings are global, but any shared or GPU-only
mappings are per-ASID? I guess that kind of makes sense, but it's not
the easiest to follow. Would you even have firmware-only mappings in the
"user context" pagetable, or is this an artefact of the TTB1 trickery
(assuming the typical usage model where the upper address space stays
constant, and the lower half is context-switched) which could perhaps be
expressed a better way?

> + /* GPU structures (also FW accessible) */
> + if (prot & IOMMU_WRITE)
> + pte |= APPLE_UAT_UXN;
> + if (prot & IOMMU_READ)
> + pte |= APPLE_UAT_PXN;
> + }

More than that, though, if there is "no real noexec control" as the
commit message claims, howcome the great majority of the complexity here
is dedicated to setting XN bits?

> + } else if (data->iop.fmt == ARM_64_LPAE_S1 ||
> data->iop.fmt == ARM_32_LPAE_S1) {
> pte = ARM_LPAE_PTE_nG;
> if (!(prot & IOMMU_WRITE) && (prot & IOMMU_READ))
> @@ -421,7 +465,14 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
> * Note that this logic is structured to accommodate Mali LPAE
> * having stage-1-like attributes but stage-2-like permissions.
> */
> - if (data->iop.fmt == ARM_64_LPAE_S2 ||
> + if (data->iop.fmt == APPLE_UAT) {
> + if (prot & IOMMU_MMIO)
> + pte |= APPLE_UAT_MEMATTR_DEV;
> + else if (prot & IOMMU_CACHE)
> + pte |= APPLE_UAT_MEMATTR_SHARED;
> + else
> + pte |= APPLE_UAT_MEMATTR_PRIV;
> + } else if (data->iop.fmt == ARM_64_LPAE_S2 ||
> data->iop.fmt == ARM_32_LPAE_S2) {
> if (prot & IOMMU_MMIO)
> pte |= ARM_LPAE_PTE_MEMATTR_DEV;
> @@ -444,12 +495,14 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
> * "outside the GPU" (i.e. either the Inner or System domain in CPU
> * terms, depending on coherency).
> */
> - if (prot & IOMMU_CACHE && data->iop.fmt != ARM_MALI_LPAE)
> + if (data->iop.fmt == APPLE_UAT)
> + pte |= ARM_LPAE_PTE_SH_NS;

This doesn't make much sense... it's cache-coherent yet everything is
always non-shareable? I'm going to guess that bits 9:8 probably do
something else and you're actually just trying to make sure they aren't
set; if so, please express that semantic appropriately.

> + else if (prot & IOMMU_CACHE && data->iop.fmt != ARM_MALI_LPAE)
> pte |= ARM_LPAE_PTE_SH_IS;
> else
> pte |= ARM_LPAE_PTE_SH_OS;
>
> - if (prot & IOMMU_NOEXEC)
> + if (prot & IOMMU_NOEXEC && data->iop.fmt != APPLE_UAT)
> pte |= ARM_LPAE_PTE_XN;
>
> if (data->iop.cfg.quirks & IO_PGTABLE_QUIRK_ARM_NS)
> @@ -1079,6 +1132,41 @@ arm_mali_lpae_alloc_pgtable(struct io_pgtable_cfg *cfg, void *cookie)
> return NULL;
> }
>
> +static struct io_pgtable *
> +apple_uat_alloc_pgtable(struct io_pgtable_cfg *cfg, void *cookie)
> +{
> + struct arm_lpae_io_pgtable *data;
> +
> + /* No quirks for UAT (hopefully) */
> + if (cfg->quirks)
> + return NULL;
> +
> + if (cfg->ias > 48 || cfg->oas > 42)
> + return NULL;
> +
> + cfg->pgsize_bitmap &= SZ_16K;
> +
> + data = arm_lpae_alloc_pgtable(cfg);
> + if (!data)
> + return NULL;
> +
> + data->pgd = __arm_lpae_alloc_pages(ARM_LPAE_PGD_SIZE(data), GFP_KERNEL,
> + cfg);
> + if (!data->pgd)
> + goto out_free_data;
> +
> + /* Ensure the empty pgd is visible before the TTBAT can be written */
> + wmb();
> +
> + cfg->apple_uat_cfg.ttbr = virt_to_phys(data->pgd);
> +
> + return &data->iop;
> +
> +out_free_data:
> + kfree(data);
> + return NULL;
> +}
> +
> struct io_pgtable_init_fns io_pgtable_arm_64_lpae_s1_init_fns = {
> .alloc = arm_64_lpae_alloc_pgtable_s1,
> .free = arm_lpae_free_pgtable,
> @@ -1104,6 +1192,11 @@ struct io_pgtable_init_fns io_pgtable_arm_mali_lpae_init_fns = {
> .free = arm_lpae_free_pgtable,
> };
>
> +struct io_pgtable_init_fns io_pgtable_apple_uat_init_fns = {
> + .alloc = apple_uat_alloc_pgtable,
> + .free = arm_lpae_free_pgtable,
> +};
> +
> #ifdef CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST
>
> static struct io_pgtable_cfg *cfg_cookie __initdata;
> diff --git a/drivers/iommu/io-pgtable.c b/drivers/iommu/io-pgtable.c
> index b843fcd365d2..faec53e22388 100644
> --- a/drivers/iommu/io-pgtable.c
> +++ b/drivers/iommu/io-pgtable.c
> @@ -20,6 +20,7 @@ io_pgtable_init_table[IO_PGTABLE_NUM_FMTS] = {
> [ARM_64_LPAE_S1] = &io_pgtable_arm_64_lpae_s1_init_fns,
> [ARM_64_LPAE_S2] = &io_pgtable_arm_64_lpae_s2_init_fns,
> [ARM_MALI_LPAE] = &io_pgtable_arm_mali_lpae_init_fns,
> + [APPLE_UAT] = &io_pgtable_apple_uat_init_fns,
> #endif
> #ifdef CONFIG_IOMMU_IO_PGTABLE_DART
> [APPLE_DART] = &io_pgtable_apple_dart_init_fns,
> diff --git a/include/linux/io-pgtable.h b/include/linux/io-pgtable.h
> index e4697ff48d3a..50d4dce53ded 100644
> --- a/include/linux/io-pgtable.h
> +++ b/include/linux/io-pgtable.h
> @@ -19,6 +19,7 @@ enum io_pgtable_fmt {
> AMD_IOMMU_V2,
> APPLE_DART,
> APPLE_DART2,
> + APPLE_UAT,
> IO_PGTABLE_NUM_FMTS,
> };
>
> @@ -148,6 +149,10 @@ struct io_pgtable_cfg {
> u64 ttbr[4];
> u32 n_ttbrs;
> } apple_dart_cfg;
> +
> + struct {
> + u64 ttbr;

The comment further up implies it's called TTBAT?

Robin.

> + } apple_uat_cfg;
> };
> };
>
> @@ -262,5 +267,6 @@ extern struct io_pgtable_init_fns io_pgtable_arm_mali_lpae_init_fns;
> extern struct io_pgtable_init_fns io_pgtable_amd_iommu_v1_init_fns;
> extern struct io_pgtable_init_fns io_pgtable_amd_iommu_v2_init_fns;
> extern struct io_pgtable_init_fns io_pgtable_apple_dart_init_fns;
> +extern struct io_pgtable_init_fns io_pgtable_apple_uat_init_fns;
>
> #endif /* __IO_PGTABLE_H */

2023-01-23 18:07:35

by Asahi Lina

[permalink] [raw]
Subject: Re: [PATCH] iommu/io-pgtable: Add Apple UAT variant format

Hi Robin, thank you for the review!

On 24/01/2023 00.39, Robin Murphy wrote:
> On 2023-01-21 08:47, Asahi Lina wrote:
>> The prot bits are interpreted as follows:
>>
>> - IOMMU_READ and IOMMU_WRITE have the usual meaning.
>>
>> - IOMMU_PRIV creates firmware-only mappings (no GPU access)
>> - IOMMU_NOEXEC creates GPU-only structures (no FW access)
>> - Otherwise structures are accessible by both GPU and FW
>>
>> - IOMMU_MMIO creates Device mappings for firmware
>> - IOMMU_CACHE creates Normal-NC mappings for firmware (cache-coherent
>> from the point of view of the AP, but slower)
>> - Otherwise creates Normal mappings for firmware (this requires manual
>> cache management on the firmware side, as it is not coherent with the
>> SoC fabric)
>
> Please don't abuse the prot flags by overloading them with
> caller-specific meanings, especially if that ends up completely
> reversing the expected meaning. They represent fairly generic semantics
> which IOMMU drivers, and thus io-pgtable implementations, are expected
> to match if the underlying format supports it, or ignore if not. If a
> pagetable format has other functionality which a caller wants to make
> use of, then we can look at extending that (possibly even as far as
> reserving some prot values for format-specific definitons, if need be),
> but the point is still to represent the functionality of the
> MMU/pagetable itself, not encode higher-level use-cases.

That's fair, I wasn't sure which option would be preferable!

I think for this hardware, I'd have naturally expressed it as something
like PRIV_READ and PRIV_WRITE instead of PRIV, where this represents the
firmware side permissions to be ORed with the regular (GPU side)
permissions. But since we already have IOMMU_PRIV, it becomes a bit
harder...

Another option would be to just add IOMMU_UNPRIV which implies
unprivileged-only, and map that to GPU access. Then having no flag would
create GPU+FW mappings, or you could restrict it to FW only with PRIV or
GPU only with UNPRIV.

Neither of those options is a "perfect" match for what is really going
on, but I can't really think of a better way, other than just using
format-specific options... do you have a particular preference?

I think the MMIO/CACHE flags do map well enough so we probably don't
need to touch those, right?. CACHE is a bit weird in that it winds up
meaning "uncached by the firmware", but the comment in iommu.h
specifically calls its meaning out as "DMA cache coherency" and that is
what this achieves, coherency between (uncached) firmware accesses and
the AP CPU cache (which is coherent with the memory controller and
therefore coherent with the uncached view from the firmware side). Plus
by all appearances this mode does mean properly cached/coherent from the
GPU side (though that could just be implied either way).

>> Drivers are expected to fully manage per-user (TTBR0) page tables, but
>> ownership of shared kernel (TTBR1) page tables is shared between the
>> firmware and the AP OS. We handle this by simply using a smaller IAS to
>> drop down one level of page tables, so the driver can install a PTE in
>> the top-level (firmware-initialized) page table directly and just add an
>> offset to the VAs passed into the io_pgtable code. This avoids having to
>> have any special handling for this here. The firmware-relevant data
>> structures are small, so we do not expect to ever require more VA space
>> than one top-level PTE covers (IAS=36 for the next level, 64 GiB).
>
> I don't quite follow what you're saying there.... however, since
> io-pgtable-arm already supports the TTB0/TTB1 distinction, on the face
> of it it would seem simpler to make use of the existing
> IO_PGTABLE_QUIRK_ARM_TTBR1 than play weird non-obvious tricks to pretend
> TTB1 somehow lives inside the TTB0 VA range (or is it the other way round?)

What I'm doing for the upper address space half is using the io_pgtable
code to manage a set of sub page tables rooted at a PT that is not
managed by io_pgtable. Unfortunately, that means that the address range
covered doesn't match either natural TTBR0/TTBR1 range...

More specifically, we have a 40-bit VA range split as follows:

(000000)0000000000..7fffffffff: Unprivileged, nonglobal ("TTBR0")
(ffffff)8000000000..ffffffffff: Privileged/firmware, (mostly) global
("TTBR1")

Within the user range there are certain special purpose VA ranges, but
that's not something io_pgtable has to care about (that half works as
normal and is fully managed by the driver). However, the top level
privileged PT is partially initialized for us (the system bootloader
actually gives us a static allocation for it before Linux runs at all,
and the GPU firmware initializes some PTEs on startup). When the driver
starts up, it then adds its own PTEs. We end up with it split into
firmware-managed and kernel-managed regions like this:

(ffffff)8000000000..9fffffffff: Firmware-owned (FW code/data/mmio)
(ffffff)a000000000..ffffffffff: Kernel-owned (driver<->FW shared data &
some extra driver-managed mmio)

And the way I handle the kernel owned region in practice is by creating
an io_pgtable with IAS=36, and installing its pointer into a PTE
(directly in the driver code) at index 2 in the top-level page table,
which is not used by the firmware itself. So then the io_pgtable's VA
span ends up being (ffffff)a000000000..afffffffff, which is not what
IO_PGTABLE_QUIRK_ARM_TTBR1 would do...

This is for a GPU driver though, and not a generic IOMMU driver, so it's
going to call directly into io_pgtable anyway and it's trivial to have
it add an offset to the VAs at that point. That's why I figured it's not
worth adding more special-case code or quirks to io_pgtable to handle
this. The existing Panfrost driver (which uses the Mali format and
similarly calls in directly to this code) is the closest analogue to
what I'm doing in spirit, though it doesn't need to do weird things with
VAs and firmware regions for that particular platform.

>> - if (data->iop.fmt == ARM_64_LPAE_S1 ||
>> + if (data->iop.fmt == APPLE_UAT) {
>> + /*
>> + * This bit enables GPU access and the particular permission
>> + * rules that follow. Without it, access is firmware-only and
>> + * permissions follow the firmware's Apple SPRR configuration.
>> + */
>> + pte = APPLE_UAT_GPU_ACCESS;
>> + if (prot & IOMMU_PRIV) {
>> + /* Firmware structures */
>> + pte |= APPLE_UAT_AP0;
>> + if (prot & IOMMU_WRITE) {
>> + /* Firmware RW */
>> + pte |= APPLE_UAT_UXN;
>> + } else if (!(prot & IOMMU_READ)) {
>> + /* No access */
>> + pte |= APPLE_UAT_PXN;
>> + }
>> + } else if (prot & IOMMU_NOEXEC) {
>> + /* GPU structures (no FW access) */
>> + pte |= APPLE_UAT_AP1 | ARM_LPAE_PTE_nG;
>> + if (!(prot & IOMMU_READ)) {
>> + pte |= APPLE_UAT_PXN;
>> + if (!(prot & IOMMU_WRITE))
>> + pte |= APPLE_UAT_UXN;
>> + } else if (prot & IOMMU_WRITE) {
>> + pte |= APPLE_UAT_UXN;
>> + }
>> + } else {
>> + pte |= ARM_LPAE_PTE_nG;
>
> So coprocessor-only mappings are global, but any shared or GPU-only
> mappings are per-ASID? I guess that kind of makes sense, but it's not
> the easiest to follow. Would you even have firmware-only mappings in the
> "user context" pagetable, or is this an artefact of the TTB1 trickery
> (assuming the typical usage model where the upper address space stays
> constant, and the lower half is context-switched) which could perhaps be
> expressed a better way?

Yeah, this is a bit of a hack... ideally we'd probably have another PROT
bit to specify nG directly. The logic I use here happens to match what
the driver needs, but it does encode "magic policy" to an extent... but
yes, you'd never have firmware-only mappings in a lower user context,
because then there'd be no reason for them to be there (and it would
likely cause a security issue for any actual application). All GPU-only
user context (lower) mappings are necessarily nonglobal, and all shared
GPU/firmware mappings are either in user context (lower, so necessarily
nonglobal), or in a few specific cases in upper kernel context and
restricted to GPU context slot #0 (and then those also need to be
nonglobal from the GPU point of view for security reasons, to make sure
they don't become visible from any other context/ASID - see the next
bit). Only firmware-only structures (which exist only in the upper half)
are truly global.

Basically the way the firmware manages this is the "typical" setup where
its TTBR1_EL1 is fixed and TTBR0_EL0 changes for context switching, but
the way the GPU sees it is that there is a table in memory of 64
TTB0/TTB1 pairs (called the TTBAT, I assume it means Translation Table
Base Address Table), and it makes no distinction between both halves
(and there is also no explicit privilege separation and no actual
kernel/user permission bits). The firmware reads the same table too, but
only to fetch a TTB0 entry and switch its TTBR0_EL0 to it. It always
ignores the TTB1 entry.

The way the driver sets the TTBAT up is:

#0:TTB0 -> empty PT (required as it becomes the firmware's default
TTBR0_EL0 when no specific user context needs to be mapped, and it
panics if it's invalid)
#0:TTB1 -> equal to the firmware TTBR1_EL1, containing the firmware's
own mappings, kernel firmware-only mappings, and a few firmware/GPU
shared things to be accessed from GPU context #0 (which we consider
privileged, and it is those few GPU-shared things that this entry is
here for)
#1:TTB0 -> user context #1
#1:TTB1 -> unset (invalid)
#2:TTB0 -> user context #2
#2:TTB1 -> unset (invalid)
[...]

And user contexts are dynamically allocated and swapped in and out of
TTBAT slots as required (if you have <= 63 GPU active client apps, there
will be no swapping). Then the user VA space view from the point of view
of a GPU shader program becomes the user context in the lower half, and
an invalid upper half (which is similar to the EL0 view in typical ARM64
OS convention where ~everything in the upper half is inaccessible to EL0
anyway).

Though nothing would stop us from using the upper TTB1 half to double
the user VA space for GPU programs, at the cost of firmware never being
able to see those mappings since it doesn't switch its TTBR1_EL0 (but
that's okay for most use cases), and an awkward gap between both halves
that cannot be safely straddled except where it can (since the GPU
sometimes really does use 40-bit VAs internally with no sign extension
requirement!)... but I don't think we need to worry about this until
Apple releases a Mac with 1TB of RAM and the same old 40-bit GPU MMU
design, which is probably unlikely.

>> + /* GPU structures (also FW accessible) */
>> + if (prot & IOMMU_WRITE)
>> + pte |= APPLE_UAT_UXN;
>> + if (prot & IOMMU_READ)
>> + pte |= APPLE_UAT_PXN;
>> + }
>
> More than that, though, if there is "no real noexec control" as the
> commit message claims, howcome the great majority of the complexity here
> is dedicated to setting XN bits?

Apple overloads the AP[1:0]/PXN/UXN bits for their own
implementation-defined permission schemes, both for the SPRR mechanism
[1] (which is what the GPU firmware uses for its own private
code/data/MMIO PTEs) and for the special GPU-specific permissions used
here, so their usual standard ARM meaning does not apply. This is
supported in their AP CPU cores too, which also have SPRR (which of
course we don't enable in Linux because that'd be ridiculous... but in
principle we could just like macOS does, and you can do some neat tricks
like fast secure EL0 JIT code permission remapping with it!).

So far everywhere else in the code touching these things (like our m1n1
bootloader, which uses SPRR in some cases) we've been keeping the
"original" bit names even when describing SPRR permissions, where you
basically take [AP1][AP0][PXN][UXN] as an opaque 0-15 index into a
configurable permissions table. Here those 16 values instead represent
specific combinations of GPU/FW access permissions. I guess if we were
making new bit names up, we could just call them AP0-3... but I fear
that might be more confusing given AP0/1 already exist in the standard
and are in the wrong logical bit position in the set of 4...

[1] https://blog.svenpeter.dev/posts/m1_sprr_gxf/

>> + } else if (data->iop.fmt == ARM_64_LPAE_S1 ||
>> data->iop.fmt == ARM_32_LPAE_S1) {
>> pte = ARM_LPAE_PTE_nG;
>> if (!(prot & IOMMU_WRITE) && (prot & IOMMU_READ))
>> @@ -421,7 +465,14 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
>> * Note that this logic is structured to accommodate Mali LPAE
>> * having stage-1-like attributes but stage-2-like permissions.
>> */
>> - if (data->iop.fmt == ARM_64_LPAE_S2 ||
>> + if (data->iop.fmt == APPLE_UAT) {
>> + if (prot & IOMMU_MMIO)
>> + pte |= APPLE_UAT_MEMATTR_DEV;
>> + else if (prot & IOMMU_CACHE)
>> + pte |= APPLE_UAT_MEMATTR_SHARED;
>> + else
>> + pte |= APPLE_UAT_MEMATTR_PRIV;
>> + } else if (data->iop.fmt == ARM_64_LPAE_S2 ||
>> data->iop.fmt == ARM_32_LPAE_S2) {
>> if (prot & IOMMU_MMIO)
>> pte |= ARM_LPAE_PTE_MEMATTR_DEV;
>> @@ -444,12 +495,14 @@ static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
>> * "outside the GPU" (i.e. either the Inner or System domain in CPU
>> * terms, depending on coherency).
>> */
>> - if (prot & IOMMU_CACHE && data->iop.fmt != ARM_MALI_LPAE)
>> + if (data->iop.fmt == APPLE_UAT)
>> + pte |= ARM_LPAE_PTE_SH_NS;
>
> This doesn't make much sense... it's cache-coherent yet everything is
> always non-shareable? I'm going to guess that bits 9:8 probably do
> something else and you're actually just trying to make sure they aren't
> set; if so, please express that semantic appropriately.

SH should have the normal meaning for the firmware CPU MMU, but
unfortunately setting it to OS doesn't actually get us cache coherency
as far as I can tell, so my understanding is the interconnect between
the coprocessor and the SoC fabric just does not support coherency.
Therefore, we set it to NS since it's pointless (this is the same thing
macOS does). "Cache coherency" from the firmware point of view is
achieved with non-cacheable mappings instead (which is a shame, because
they measurably slow things down, so we don't want to use them
everywhere... but using cached mappings requires cache maintenance from
the firmware). I've been having endless corner cases with cached
mappings where the firmware ends up with a dirty stale cache line that
clobbers some other data structure reusing that memory later... this is
something I'm still working on by tweaking allocation patterns to avoid
bad situations without having to force flush everything constantly.

For the GPU side, I get the feeling it just ignores the shareability
bits, though we haven't had a chance to properly explore the
performance/coherency behavior of the GPU side yet (I only just got
compute shaders working last week, which we'd need to do any serious
experiments). It definitely ignores the memattr stuff or at least
doesn't treat it the same way as the firmware, since all GPU buffers are
mapped using the attribute that selects non-cacheable from the firmware
POV but the GPU itself obviously has working caches for these buffers.
It's possible this could change in the future as we understand things
better...

Please keep in mind that all of this is reverse engineered by black-box
observing what macOS does (we run it inside a thin hypervisor and snoop
on its page tables/etc) and blind experimentation, so it's very
difficult for me to give confident answers... we're doing our best with
zero documentation, so sometimes the answer is just "we do the same
thing macOS does" because diverging just explodes the potential problem
space, and doesn't make sense to do until we fully understand each
specific mechanism. For example, for the access permissions, I do
diverge there because I understand them (I tried all possible
combinations and mapped out what faulted and what didn't from both
firmware and GPU), so my driver locks things down quite a bit more than
Apple's does! But caching (and previously TLB) issues have been a
never-ending source of pain and frustration... so I'm inclined to
default to emulating what macOS does here, even if we don't fully
understand the nuance yet. I actually had this as OS for a while, but
switched to NS while debugging some (ultimately unrelated) issues and
I'm inclined to leave it like that absent evidence that OS works better
in practice.

I don't have all the answers yet... however, I do want to push forward
with upstreaming, because this is already a real, fully OpenGL ES 2.0
conformant driver (and close to ES 3.0 conformance) that can run real
desktops and games and which many users are using downstream. I hope
that's okay!

>> @@ -148,6 +149,10 @@ struct io_pgtable_cfg {
>> u64 ttbr[4];
>> u32 n_ttbrs;
>> } apple_dart_cfg;
>> +
>> + struct {
>> + u64 ttbr;
>
> The comment further up implies it's called TTBAT?

Kind of both. Maybe it should just be "ttb", since it's the base address
which (together with a valid bit and the ASID added by the driver) goes
into the TTBAT slot and then eventually/potentially into the firmware
TTBR0. Except for the special case sub-PT hack for the kernel/upper PT,
but even then "ttb" probably makes sense as the base of the (next level)
page table. Does that work?

~~ Lina