2019-04-15 11:53:31

by Laurentiu Tudor

[permalink] [raw]
Subject: [PATCH v2] powerpc/booke64: set RI in default MSR

From: Laurentiu Tudor <[email protected]>

Set RI in the default kernel's MSR so that the architected way of
detecting unrecoverable machine check interrupts has a chance to work.
This is inline with the MSR setup of the rest of booke powerpc
architectures configured here.

Signed-off-by: Laurentiu Tudor <[email protected]>
Cc: [email protected]
---
Changes in v2:
- fixed typo - s/SI/RI

arch/powerpc/include/asm/reg_booke.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/include/asm/reg_booke.h b/arch/powerpc/include/asm/reg_booke.h
index eb2a33d5df26..e382bd6ede84 100644
--- a/arch/powerpc/include/asm/reg_booke.h
+++ b/arch/powerpc/include/asm/reg_booke.h
@@ -41,7 +41,7 @@
#if defined(CONFIG_PPC_BOOK3E_64)
#define MSR_64BIT MSR_CM

-#define MSR_ (MSR_ME | MSR_CE)
+#define MSR_ (MSR_ME | MSR_RI | MSR_CE)
#define MSR_KERNEL (MSR_ | MSR_64BIT)
#define MSR_USER32 (MSR_ | MSR_PR | MSR_EE)
#define MSR_USER64 (MSR_USER32 | MSR_64BIT)
--
2.17.1


2019-05-03 07:03:29

by Michael Ellerman

[permalink] [raw]
Subject: Re: [PATCH v2] powerpc/booke64: set RI in default MSR

On Mon, 2019-04-15 at 11:52:11 UTC, [email protected] wrote:
> From: Laurentiu Tudor <[email protected]>
>
> Set RI in the default kernel's MSR so that the architected way of
> detecting unrecoverable machine check interrupts has a chance to work.
> This is inline with the MSR setup of the rest of booke powerpc
> architectures configured here.
>
> Signed-off-by: Laurentiu Tudor <[email protected]>
> Cc: [email protected]

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/5266e58d6cd90ac85c187d673093ad9c

cheers