public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface
@ 2006-12-09  0:17 Fenghua Yu
  2006-12-10 23:02 ` Keith Owens
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Fenghua Yu @ 2006-12-09  0:17 UTC (permalink / raw)
  To: linux-ia64

This patch implements pal_mc_error_inject() interface in kernel. Both physical
mode and virtual mode are supported.

Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>

--- a/include/asm-ia64/pal.h	2006-12-05 18:10:35.000000000 -0800
+++ b/include/asm-ia64/pal.h	2006-12-05 18:11:12.000000000 -0800
@@ -80,6 +80,8 @@
 #define PAL_SET_PSTATE		263	/* set the P-state */
 #define PAL_BRAND_INFO		274	/* Processor branding information */
 
+#define PAL_MC_ERROR_INJECT	276	/* Injects processor error or returns injection capabilities */
+
 #ifndef __ASSEMBLY__
 
 #include <linux/types.h>
@@ -1200,6 +1202,37 @@ ia64_pal_mc_error_info (u64 info_index, 
 	return iprv.status;
 }
 
+/* Injects the requested processor error or returns info on
+ * supported injection capabilities for current processor implementation
+ */
+static inline s64
+ia64_pal_mc_error_inject_phys (u64 err_type_info, u64 err_struct_info,
+			u64 err_data_buffer, u64 *capabilities, u64 *resources)
+{
+	struct ia64_pal_retval iprv;
+	PAL_CALL_PHYS_STK(iprv, PAL_MC_ERROR_INJECT, err_type_info,
+			  err_struct_info, err_data_buffer);
+	if (capabilities)
+		*capabilities= iprv.v0;
+	if (resources)
+		*resources= iprv.v1;
+	return iprv.status;
+}
+
+static inline s64
+ia64_pal_mc_error_inject_virt (u64 err_type_info, u64 err_struct_info,
+			u64 err_data_buffer, u64 *capabilities, u64 *resources)
+{
+	struct ia64_pal_retval iprv;
+	PAL_CALL_STK(iprv, PAL_MC_ERROR_INJECT, err_type_info,
+			  err_struct_info, err_data_buffer);
+	if (capabilities)
+		*capabilities= iprv.v0;
+	if (resources)
+		*resources= iprv.v1;
+	return iprv.status;
+}
+
 /* Inform PALE_CHECK whether a machine check is expected so that PALE_CHECK willnot
  * attempt to correct any expected machine checks.
  */

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

* Re: [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface
  2006-12-09  0:17 [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface Fenghua Yu
@ 2006-12-10 23:02 ` Keith Owens
  2006-12-11 17:54 ` Fenghua Yu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Keith Owens @ 2006-12-10 23:02 UTC (permalink / raw)
  To: linux-ia64

Fenghua Yu (on Fri, 8 Dec 2006 16:17:31 -0800) wrote:
>This patch implements pal_mc_error_inject() interface in kernel. Both physical
>mode and virtual mode are supported.
>
>Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
>
>--- a/include/asm-ia64/pal.h	2006-12-05 18:10:35.000000000 -0800
>+++ b/include/asm-ia64/pal.h	2006-12-05 18:11:12.000000000 -0800
>@@ -80,6 +80,8 @@
> #define PAL_SET_PSTATE		263	/* set the P-state */
> #define PAL_BRAND_INFO		274	/* Processor branding information */
> 
>+#define PAL_MC_ERROR_INJECT	276	/* Injects processor error or returns injection capabilities */

Does this need a particular version of PAL?


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

* Re: [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface
  2006-12-09  0:17 [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface Fenghua Yu
  2006-12-10 23:02 ` Keith Owens
@ 2006-12-11 17:54 ` Fenghua Yu
  2006-12-11 19:44 ` Russ Anderson
  2006-12-11 19:44 ` Fenghua Yu
  3 siblings, 0 replies; 5+ messages in thread
From: Fenghua Yu @ 2006-12-11 17:54 UTC (permalink / raw)
  To: linux-ia64

On Mon, Dec 11, 2006 at 10:02:52AM +1100, Keith Owens wrote:
> > 
> >+#define PAL_MC_ERROR_INJECT	276	/* Injects processor error or returns injection capabilities */
> 
> Does this need a particular version of PAL?
Yes, the latest Montecito PAL supports this feature. Please note because of errata in PAL, some errors
can not be injected correctly. Please see patch [2/5] for tested working errors.

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

* Re: [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface
  2006-12-09  0:17 [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface Fenghua Yu
  2006-12-10 23:02 ` Keith Owens
  2006-12-11 17:54 ` Fenghua Yu
@ 2006-12-11 19:44 ` Russ Anderson
  2006-12-11 19:44 ` Fenghua Yu
  3 siblings, 0 replies; 5+ messages in thread
From: Russ Anderson @ 2006-12-11 19:44 UTC (permalink / raw)
  To: linux-ia64

Fenghua Yu wrote:
> On Mon, Dec 11, 2006 at 10:02:52AM +1100, Keith Owens wrote:
> > > 
> > >+#define PAL_MC_ERROR_INJECT	276	/* Injects processor error or returns injection capabilities */
> > 
> > Does this need a particular version of PAL?
>
> Yes, the latest Montecito PAL supports this feature.

I assume you mean PAL 8.30.  

>  Please note because of errata in PAL, some errors
> can not be injected correctly. Please see patch [2/5] for tested working errors.

The easy way to tell is the -q (query) option.

On Madison:

piton:~/rja.2619-5 # ./err_injection_tool -q
All capabilities implemented in pal_mc_error_inject:
No capabilities supported.

On Montecito:

cobra:~/rja.2619-5 # ./err_injection_tool -q
All capabilities implemented in pal_mc_error_inject:
For err_sev=0, err_struct=1, struct_hier=2: capabilities 0x100001c12
For err_sev=0, err_struct=1, struct_hier=3: capabilities 0x100001c12
For err_sev=1, err_struct=1, struct_hier=2: capabilities 0x100001c12
For err_sev=1, err_struct=2, struct_hier=2: capabilities 0x100000013
For err_sev=1, err_struct=3, struct_hier=1: capabilities 0x100010007
For err_sev=2, err_struct=1, struct_hier=2: capabilities 0x100001c0a


-- 
Russ Anderson, OS RAS/Partitioning Project Lead  
SGI - Silicon Graphics Inc          rja@sgi.com

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

* Re: [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface
  2006-12-09  0:17 [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface Fenghua Yu
                   ` (2 preceding siblings ...)
  2006-12-11 19:44 ` Russ Anderson
@ 2006-12-11 19:44 ` Fenghua Yu
  3 siblings, 0 replies; 5+ messages in thread
From: Fenghua Yu @ 2006-12-11 19:44 UTC (permalink / raw)
  To: linux-ia64

On Mon, Dec 11, 2006 at 01:44:44PM -0600, Russ Anderson wrote:
> Fenghua Yu wrote:
> > On Mon, Dec 11, 2006 at 10:02:52AM +1100, Keith Owens wrote:
> > > > 
> > > >+#define PAL_MC_ERROR_INJECT	276	/* Injects processor error or returns injection capabilities */
> > > 
> > > Does this need a particular version of PAL?
> >
> > Yes, the latest Montecito PAL supports this feature.
> 
> I assume you mean PAL 8.30.  
Yes.

> 
> >  Please note because of errata in PAL, some errors
> > can not be injected correctly. Please see patch [2/5] for tested working errors.
> 
> The easy way to tell is the -q (query) option.
> 
> On Madison:
> 
> piton:~/rja.2619-5 # ./err_injection_tool -q
> All capabilities implemented in pal_mc_error_inject:
> No capabilities supported.
> 
> On Montecito:
> 
> cobra:~/rja.2619-5 # ./err_injection_tool -q
> All capabilities implemented in pal_mc_error_inject:
> For err_sev=0, err_struct=1, struct_hier=2: capabilities 0x100001c12
> For err_sev=0, err_struct=1, struct_hier=3: capabilities 0x100001c12
> For err_sev=1, err_struct=1, struct_hier=2: capabilities 0x100001c12
> For err_sev=1, err_struct=2, struct_hier=2: capabilities 0x100000013
> For err_sev=1, err_struct=3, struct_hier=1: capabilities 0x100010007
> For err_sev=2, err_struct=1, struct_hier=2: capabilities 0x100001c0a
> 
> 
This is good way to actually check the capabilities. But still please note one reported capability might be buggy in PAL.

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

end of thread, other threads:[~2006-12-11 19:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-09  0:17 [PATCH 5/5] Itanium MC Error Injection Tool: pal_mc_error_inject() interface Fenghua Yu
2006-12-10 23:02 ` Keith Owens
2006-12-11 17:54 ` Fenghua Yu
2006-12-11 19:44 ` Russ Anderson
2006-12-11 19:44 ` Fenghua Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox