* [PATCH] arm64: mpam: Document when to set arm64.nompam
@ 2026-09-03 8:48 Fuad Tabba
2026-09-03 9:04 ` Bradley Morgan
2026-09-03 9:55 ` Ben Horgan
0 siblings, 2 replies; 4+ messages in thread
From: Fuad Tabba @ 2026-09-03 8:48 UTC (permalink / raw)
To: Catalin Marinas, Will Deacon
Cc: Mark Rutland, Jonathan Corbet, Shuah Khan, Randy Dunlap,
Ben Horgan, James Morse, Xi Ruoyao, Marc Zyngier, Bradley Morgan,
Fuad Tabba, linux-arm-kernel, linux-doc, linux-kernel
arm64.nompam skips the MPAM2_EL2 and MPAMHCR_EL2 writes in
finalise_el2_state and leaves the ARM64_MPAM cpucap unset. Where EL3
firmware has enabled MPAM, the EL2 trap controls are left unwritten, at
reset values that are UNKNOWN, and KVM still hides MPAM from the guest
but no longer enables the traps that stop a guest from using it. The
kernel cannot restore the writes: they trap to EL3 on the firmware the
option exists for, and MPAM3_EL3.TRAPLOWER cannot be read below EL3.
Say so in mpam.rst, and add the rule and a pointer to the
kernel-parameters entry.
No functional change intended.
Suggested-by: Ben Horgan <ben.horgan@arm.com>
Link: https://lore.kernel.org/all/CA+EHjTxeWxZiuSmnKLGLxTBXP4oJT7-LuffbPAyCSZZ5TW=5Ew@mail.gmail.com/
Signed-off-by: Fuad Tabba <fuad.tabba@linux.dev>
---
Documentation/admin-guide/kernel-parameters.txt | 3 ++-
Documentation/arch/arm64/mpam.rst | 17 +++++++++++++++++
2 files changed, 19 insertions(+), 1 deletion(-)
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index 68647ff4bdd24..e6d543de3cde5 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -575,7 +575,8 @@ Kernel parameters
Set instructions support
arm64.nompam [ARM64] Unconditionally disable Memory Partitioning And
- Monitoring support
+ Monitoring support. Only for a machine that does not
+ boot without it. See Documentation/arch/arm64/mpam.rst
arm64.nomte [ARM64] Unconditionally disable Memory Tagging Extension
support
diff --git a/Documentation/arch/arm64/mpam.rst b/Documentation/arch/arm64/mpam.rst
index 67fe515ed501c..67c8a95391171 100644
--- a/Documentation/arch/arm64/mpam.rst
+++ b/Documentation/arch/arm64/mpam.rst
@@ -87,6 +87,23 @@ The supported features are:
MBWU monitors can be exposed to the user after support for more monitoring
scopes is added to resctrl.
+arm64.nompam
+============
+Firmware must enable MPAM at the highest implemented exception level and
+leave the MPAM system registers accessible to the kernel, or trap the
+accesses and emulate MPAM as disabled. Where it does neither, the CPUs
+still advertise MPAM in the ID registers, the first kernel access to an
+MPAM register traps to EL3, and the boot fails. ``arm64.nompam`` exists
+for that firmware: it makes the kernel treat the CPUs as not implementing
+MPAM, so no MPAM system register is accessed. Set it only on a machine
+that does not boot without it.
+
+It is not a way to turn MPAM off. On a system whose firmware has enabled
+MPAM at EL3, the option leaves the trap controls in MPAM2_EL2 and
+MPAMHCR_EL2 unwritten, and their reset values are UNKNOWN. KVM still
+hides MPAM from guests but no longer enables the traps that stop a guest
+from using it, so a guest may be able to choose its own PARTID and PMG.
+
Reporting Bugs
==============
If you are not seeing the counters or controls you expect please share the
--
2.39.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: mpam: Document when to set arm64.nompam
2026-09-03 8:48 [PATCH] arm64: mpam: Document when to set arm64.nompam Fuad Tabba
@ 2026-09-03 9:04 ` Bradley Morgan
2026-09-03 9:55 ` Ben Horgan
1 sibling, 0 replies; 4+ messages in thread
From: Bradley Morgan @ 2026-09-03 9:04 UTC (permalink / raw)
To: Fuad Tabba, Catalin Marinas, Will Deacon
Cc: Mark Rutland, Jonathan Corbet, Shuah Khan, Randy Dunlap,
Ben Horgan, James Morse, Xi Ruoyao, Marc Zyngier, Fuad Tabba,
linux-arm-kernel, linux-doc, linux-kernel
On 3 September 2026 09:48:09 BST, Fuad Tabba <fuad.tabba@linux.dev> wrote:
>arm64.nompam skips the MPAM2_EL2 and MPAMHCR_EL2 writes in
>finalise_el2_state and leaves the ARM64_MPAM cpucap unset. Where EL3
>firmware has enabled MPAM, the EL2 trap controls are left unwritten, at
>reset values that are UNKNOWN, and KVM still hides MPAM from the guest
>but no longer enables the traps that stop a guest from using it. The
>kernel cannot restore the writes: they trap to EL3 on the firmware the
>option exists for, and MPAM3_EL3.TRAPLOWER cannot be read below EL3.
>
>Say so in mpam.rst, and add the rule and a pointer to the
>kernel-parameters entry.
>
>No functional change intended.
>
>Suggested-by: Ben Horgan <ben.horgan@arm.com>
>Link: https://lore.kernel.org/all/CA+EHjTxeWxZiuSmnKLGLxTBXP4oJT7-LuffbPAyCSZZ5TW=5Ew@mail.gmail.com/
LGTM, cheers
Reviewed-by: Bradley Morgan <brads@mainlining.org>
>Signed-off-by: Fuad Tabba <fuad.tabba@linux.dev>
>---
> Documentation/admin-guide/kernel-parameters.txt | 3 ++-
> Documentation/arch/arm64/mpam.rst | 17 +++++++++++++++++
> 2 files changed, 19 insertions(+), 1 deletion(-)
>
>diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
>index 68647ff4bdd24..e6d543de3cde5 100644
>--- a/Documentation/admin-guide/kernel-parameters.txt
>+++ b/Documentation/admin-guide/kernel-parameters.txt
>@@ -575,7 +575,8 @@ Kernel parameters
> Set instructions support
>
> arm64.nompam [ARM64] Unconditionally disable Memory Partitioning And
>- Monitoring support
>+ Monitoring support. Only for a machine that does not
>+ boot without it. See Documentation/arch/arm64/mpam.rst
>
> arm64.nomte [ARM64] Unconditionally disable Memory Tagging Extension
> support
>diff --git a/Documentation/arch/arm64/mpam.rst b/Documentation/arch/arm64/mpam.rst
>index 67fe515ed501c..67c8a95391171 100644
>--- a/Documentation/arch/arm64/mpam.rst
>+++ b/Documentation/arch/arm64/mpam.rst
>@@ -87,6 +87,23 @@ The supported features are:
> MBWU monitors can be exposed to the user after support for more monitoring
> scopes is added to resctrl.
>
>+arm64.nompam
>+============
>+Firmware must enable MPAM at the highest implemented exception level and
>+leave the MPAM system registers accessible to the kernel, or trap the
>+accesses and emulate MPAM as disabled. Where it does neither, the CPUs
>+still advertise MPAM in the ID registers, the first kernel access to an
>+MPAM register traps to EL3, and the boot fails. ``arm64.nompam`` exists
>+for that firmware: it makes the kernel treat the CPUs as not implementing
>+MPAM, so no MPAM system register is accessed. Set it only on a machine
>+that does not boot without it.
>+
>+It is not a way to turn MPAM off. On a system whose firmware has enabled
>+MPAM at EL3, the option leaves the trap controls in MPAM2_EL2 and
>+MPAMHCR_EL2 unwritten, and their reset values are UNKNOWN. KVM still
>+hides MPAM from guests but no longer enables the traps that stop a guest
>+from using it, so a guest may be able to choose its own PARTID and PMG.
>+
> Reporting Bugs
> ==============
> If you are not seeing the counters or controls you expect please share
> the
>
--- Thanks!
https://lore.kernel.org/all/EE579805-42F2-4C58-B752-F28779EEB717@grrlz.net/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: mpam: Document when to set arm64.nompam
2026-09-03 8:48 [PATCH] arm64: mpam: Document when to set arm64.nompam Fuad Tabba
2026-09-03 9:04 ` Bradley Morgan
@ 2026-09-03 9:55 ` Ben Horgan
2026-09-03 11:14 ` Fuad Tabba
1 sibling, 1 reply; 4+ messages in thread
From: Ben Horgan @ 2026-09-03 9:55 UTC (permalink / raw)
To: Fuad Tabba, Catalin Marinas, Will Deacon
Cc: Mark Rutland, Jonathan Corbet, Shuah Khan, Randy Dunlap,
James Morse, Xi Ruoyao, Marc Zyngier, Bradley Morgan, Fuad Tabba,
linux-arm-kernel, linux-doc, linux-kernel
Hi Fuad,
On 03/09/2026 09:48, Fuad Tabba wrote:
> arm64.nompam skips the MPAM2_EL2 and MPAMHCR_EL2 writes in
> finalise_el2_state and leaves the ARM64_MPAM cpucap unset. Where EL3
> firmware has enabled MPAM, the EL2 trap controls are left unwritten, at
> reset values that are UNKNOWN, and KVM still hides MPAM from the guest
> but no longer enables the traps that stop a guest from using it. The
> kernel cannot restore the writes: they trap to EL3 on the firmware the
> option exists for, and MPAM3_EL3.TRAPLOWER cannot be read below EL3.
>
> Say so in mpam.rst, and add the rule and a pointer to the
> kernel-parameters entry.
>
> No functional change intended.
>
> Suggested-by: Ben Horgan <ben.horgan@arm.com>
> Link: https://lore.kernel.org/all/CA+EHjTxeWxZiuSmnKLGLxTBXP4oJT7-LuffbPAyCSZZ5TW=5Ew@mail.gmail.com/
> Signed-off-by: Fuad Tabba <fuad.tabba@linux.dev>
> ---
> Documentation/admin-guide/kernel-parameters.txt | 3 ++-
> Documentation/arch/arm64/mpam.rst | 17 +++++++++++++++++
> 2 files changed, 19 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
> index 68647ff4bdd24..e6d543de3cde5 100644
> --- a/Documentation/admin-guide/kernel-parameters.txt
> +++ b/Documentation/admin-guide/kernel-parameters.txt
> @@ -575,7 +575,8 @@ Kernel parameters
> Set instructions support
>
> arm64.nompam [ARM64] Unconditionally disable Memory Partitioning And
> - Monitoring support
> + Monitoring support. Only for a machine that does not
> + boot without it. See Documentation/arch/arm64/mpam.rst
>
> arm64.nomte [ARM64] Unconditionally disable Memory Tagging Extension
> support
> diff --git a/Documentation/arch/arm64/mpam.rst b/Documentation/arch/arm64/mpam.rst
> index 67fe515ed501c..67c8a95391171 100644
> --- a/Documentation/arch/arm64/mpam.rst
> +++ b/Documentation/arch/arm64/mpam.rst
> @@ -87,6 +87,23 @@ The supported features are:
> MBWU monitors can be exposed to the user after support for more monitoring
> scopes is added to resctrl.
>
> +arm64.nompam
> +============
This assumes that the reader already knows or can guess that arm64.nompam is a command line
parameter. Perhaps the section name can be 'Command line parameters' with a single 'arm64.nompam'
subsection underneath or all in the section name.
> +Firmware must enable MPAM at the highest implemented exception level and
> +leave the MPAM system registers accessible to the kernel, or trap the
> +accesses and emulate MPAM as disabled. Where it does neither, the CPUs
> +still advertise MPAM in the ID registers, the first kernel access to an
> +MPAM register traps to EL3, and the boot fails. ``arm64.nompam`` exists
> +for that firmware: it makes the kernel treat the CPUs as not implementing
> +MPAM, so no MPAM system register is accessed. Set it only on a machine
> +that does not boot without it.
> +
> +It is not a way to turn MPAM off. On a system whose firmware has enabled
> +MPAM at EL3, the option leaves the trap controls in MPAM2_EL2 and> +MPAMHCR_EL2 unwritten, and their reset values are UNKNOWN.
Enabling MPAM at EL3 is separate from disabling traps. Setting MPAM3_EL3.MPAMEN to 1 means that the
values in MPAMn_ELx are used to determine the PARTID and PMG for CPU requests. At this point EL3 can
configure the PARTID and PMG for the different exception levels and MPAM can be used in the system
under firmware control. Setting MPAM3_EL3.TRAPLOWER to 0 is what enables EL2 to access the MPAM
registers without trapping and configure the traps for MPAM register accesses at EL1.
> KVM still
> +hides MPAM from guests but no longer enables the traps that stop a guest
> +from using it, so a guest may be able to choose its own PARTID and PMG.
>
Shouldn't this also mention that the MPAM_*_EL1 are not save restored and so if the traps aren't
enabled provide a side channel between guests.
Thanks,
Ben
> Reporting Bugs
> ==============
> If you are not seeing the counters or controls you expect please share the
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: mpam: Document when to set arm64.nompam
2026-09-03 9:55 ` Ben Horgan
@ 2026-09-03 11:14 ` Fuad Tabba
0 siblings, 0 replies; 4+ messages in thread
From: Fuad Tabba @ 2026-09-03 11:14 UTC (permalink / raw)
To: Ben Horgan
Cc: Catalin Marinas, Will Deacon, Mark Rutland, Jonathan Corbet,
Shuah Khan, Randy Dunlap, James Morse, Xi Ruoyao, Marc Zyngier,
Bradley Morgan, linux-arm-kernel, linux-doc, linux-kernel
Hi Ben,
On Thu, 3 Sept 2026 at 10:55, Ben Horgan <ben.horgan@arm.com> wrote:
...
> > +arm64.nompam
> > +============
>
> This assumes that the reader already knows or can guess that arm64.nompam is a command line
> parameter. Perhaps the section name can be 'Command line parameters' with a single 'arm64.nompam'
> subsection underneath or all in the section name.
Will do: a "Command line parameters" section with arm64.nompam as its
subsection.
>
> > +Firmware must enable MPAM at the highest implemented exception level and
> > +leave the MPAM system registers accessible to the kernel, or trap the
> > +accesses and emulate MPAM as disabled. Where it does neither, the CPUs
> > +still advertise MPAM in the ID registers, the first kernel access to an
> > +MPAM register traps to EL3, and the boot fails. ``arm64.nompam`` exists
> > +for that firmware: it makes the kernel treat the CPUs as not implementing
> > +MPAM, so no MPAM system register is accessed. Set it only on a machine
> > +that does not boot without it.
> > +
> > +It is not a way to turn MPAM off. On a system whose firmware has enabled
> > +MPAM at EL3, the option leaves the trap controls in MPAM2_EL2 and> +MPAMHCR_EL2 unwritten, and their reset values are UNKNOWN.
>
> Enabling MPAM at EL3 is separate from disabling traps. Setting MPAM3_EL3.MPAMEN to 1 means that the
> values in MPAMn_ELx are used to determine the PARTID and PMG for CPU requests. At this point EL3 can
> configure the PARTID and PMG for the different exception levels and MPAM can be used in the system
> under firmware control. Setting MPAM3_EL3.TRAPLOWER to 0 is what enables EL2 to access the MPAM
> registers without trapping and configure the traps for MPAM register accesses at EL1.
Thanks, I'll separate the two: TRAPLOWER being clear is what leaves
the EL2 trap controls unwritten, and MPAMEN is what makes a guest's
choice of PARTID and PMG take effect.
> > KVM still
> > +hides MPAM from guests but no longer enables the traps that stop a guest
> > +from using it, so a guest may be able to choose its own PARTID and PMG.
> >
> Shouldn't this also mention that the MPAM_*_EL1 are not save restored and so if the traps aren't
> enabled provide a side channel between guests.
Yes, I'll add that KVM does not save or restore MPAM0_EL1 and
MPAM1_EL1, so what one guest writes is still there for the next guest
on that CPU.
I'll send a v2 with these once others have had a chance to comment as well.
Cheers,
/fuad
> Thanks,
>
> Ben
>
> > Reporting Bugs
> > ==============
> > If you are not seeing the counters or controls you expect please share the
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-09-03 11:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-03 8:48 [PATCH] arm64: mpam: Document when to set arm64.nompam Fuad Tabba
2026-09-03 9:04 ` Bradley Morgan
2026-09-03 9:55 ` Ben Horgan
2026-09-03 11:14 ` Fuad Tabba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox