All of lore.kernel.org
 help / color / mirror / Atom feed
* [2/5] x86/mce: Add macors for corrected error count bit field
@ 2018-09-24 20:16 Luck, Tony
  0 siblings, 0 replies; 2+ messages in thread
From: Luck, Tony @ 2018-09-24 20:16 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Qiuxu Zhuo, Tony Luck, Aristeu Rozanski, Mauro Carvalho Chehab,
	linux-edac

From: Qiuxu Zhuo <qiuxu.zhuo@intel.com>

The bit field 52:38 of MCi_STATUS is for corrected error count.
Add {*_SHIFT|*_MASK|*_CEC(c)} macros for the bit field.

Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
---
 arch/x86/include/asm/mce.h | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h
index d53e5dd7471a..a81a22e3592c 100644
--- a/arch/x86/include/asm/mce.h
+++ b/arch/x86/include/asm/mce.h
@@ -30,15 +30,18 @@
 #define MCG_EXT_CTL_LMCE_EN BIT_ULL(0) /* Enable LMCE */
 
 /* MCi_STATUS register defines */
-#define MCI_STATUS_VAL   BIT_ULL(63)  /* valid error */
-#define MCI_STATUS_OVER  BIT_ULL(62)  /* previous errors lost */
-#define MCI_STATUS_UC    BIT_ULL(61)  /* uncorrected error */
-#define MCI_STATUS_EN    BIT_ULL(60)  /* error enabled */
-#define MCI_STATUS_MISCV BIT_ULL(59)  /* misc error reg. valid */
-#define MCI_STATUS_ADDRV BIT_ULL(58)  /* addr reg. valid */
-#define MCI_STATUS_PCC   BIT_ULL(57)  /* processor context corrupt */
-#define MCI_STATUS_S	 BIT_ULL(56)  /* Signaled machine check */
-#define MCI_STATUS_AR	 BIT_ULL(55)  /* Action required */
+#define MCI_STATUS_VAL		BIT_ULL(63)  /* valid error */
+#define MCI_STATUS_OVER		BIT_ULL(62)  /* previous errors lost */
+#define MCI_STATUS_UC		BIT_ULL(61)  /* uncorrected error */
+#define MCI_STATUS_EN		BIT_ULL(60)  /* error enabled */
+#define MCI_STATUS_MISCV	BIT_ULL(59)  /* misc error reg. valid */
+#define MCI_STATUS_ADDRV	BIT_ULL(58)  /* addr reg. valid */
+#define MCI_STATUS_PCC		BIT_ULL(57)  /* processor context corrupt */
+#define MCI_STATUS_S		BIT_ULL(56)  /* Signaled machine check */
+#define MCI_STATUS_AR		BIT_ULL(55)  /* Action required */
+#define MCI_STATUS_CEC_SHIFT	38           /* Corrected Error Count */
+#define MCI_STATUS_CEC_MASK	0x1fffc000000000ULL
+#define MCI_STATUS_CEC(c)	(((c) & MCI_STATUS_CEC_MASK) >> MCI_STATUS_CEC_SHIFT)
 
 /* AMD-specific bits */
 #define MCI_STATUS_TCC		BIT_ULL(55)  /* Task context corrupt */

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

* [2/5] x86/mce: Add macors for corrected error count bit field
@ 2018-09-24 20:24 Borislav Petkov
  0 siblings, 0 replies; 2+ messages in thread
From: Borislav Petkov @ 2018-09-24 20:24 UTC (permalink / raw)
  To: Tony Luck; +Cc: Qiuxu Zhuo, Aristeu Rozanski, Mauro Carvalho Chehab, linux-edac

On Mon, Sep 24, 2018 at 01:16:10PM -0700, Tony Luck wrote:
> From: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
> 
> The bit field 52:38 of MCi_STATUS is for corrected error count.
> Add {*_SHIFT|*_MASK|*_CEC(c)} macros for the bit field.
> 
> Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
> Signed-off-by: Tony Luck <tony.luck@intel.com>
> ---
>  arch/x86/include/asm/mce.h | 21 ++++++++++++---------
>  1 file changed, 12 insertions(+), 9 deletions(-)
> 
> diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h
> index d53e5dd7471a..a81a22e3592c 100644
> --- a/arch/x86/include/asm/mce.h
> +++ b/arch/x86/include/asm/mce.h
> @@ -30,15 +30,18 @@
>  #define MCG_EXT_CTL_LMCE_EN BIT_ULL(0) /* Enable LMCE */
>  
>  /* MCi_STATUS register defines */
> -#define MCI_STATUS_VAL   BIT_ULL(63)  /* valid error */
> -#define MCI_STATUS_OVER  BIT_ULL(62)  /* previous errors lost */
> -#define MCI_STATUS_UC    BIT_ULL(61)  /* uncorrected error */
> -#define MCI_STATUS_EN    BIT_ULL(60)  /* error enabled */
> -#define MCI_STATUS_MISCV BIT_ULL(59)  /* misc error reg. valid */
> -#define MCI_STATUS_ADDRV BIT_ULL(58)  /* addr reg. valid */
> -#define MCI_STATUS_PCC   BIT_ULL(57)  /* processor context corrupt */
> -#define MCI_STATUS_S	 BIT_ULL(56)  /* Signaled machine check */
> -#define MCI_STATUS_AR	 BIT_ULL(55)  /* Action required */
> +#define MCI_STATUS_VAL		BIT_ULL(63)  /* valid error */
> +#define MCI_STATUS_OVER		BIT_ULL(62)  /* previous errors lost */
> +#define MCI_STATUS_UC		BIT_ULL(61)  /* uncorrected error */
> +#define MCI_STATUS_EN		BIT_ULL(60)  /* error enabled */
> +#define MCI_STATUS_MISCV	BIT_ULL(59)  /* misc error reg. valid */
> +#define MCI_STATUS_ADDRV	BIT_ULL(58)  /* addr reg. valid */
> +#define MCI_STATUS_PCC		BIT_ULL(57)  /* processor context corrupt */
> +#define MCI_STATUS_S		BIT_ULL(56)  /* Signaled machine check */
> +#define MCI_STATUS_AR		BIT_ULL(55)  /* Action required */
> +#define MCI_STATUS_CEC_SHIFT	38           /* Corrected Error Count */
> +#define MCI_STATUS_CEC_MASK	0x1fffc000000000ULL
> +#define MCI_STATUS_CEC(c)	(((c) & MCI_STATUS_CEC_MASK) >> MCI_STATUS_CEC_SHIFT)

This is the wrong separation of changes: the *first* patch should
contain the switch to use BIT_ULL() and the vertical realignment
of all bits, i.e., cleanup, and the second should only add the new
functionality, i.e., macros in this case.

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

end of thread, other threads:[~2018-09-24 20:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-24 20:16 [2/5] x86/mce: Add macors for corrected error count bit field Luck, Tony
2018-09-24 20:24 Borislav Petkov

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.