[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [XenPPC] [xenppc-unstable] [XEN][POWERPC] New interface ATTN() to conact the HW probe
# HG changeset patch # User Jimi Xenidis <jimix@xxxxxxxxxxxxxx> # Node ID 05c8ce1d697cd7d16adbfb706680adfb95d4490f # Parent 7af3636da4b955e556af19af91b03633b565cce2 [XEN][POWERPC] New interface ATTN() to conact the HW probe Sometimes it is useful to have your code contact the HW probe directly rather than call BUG(). Signed-off-by: Jimi Xenidis <jimix@xxxxxxxxxxxxxx> --- xen/arch/powerpc/setup.c | 12 ++++++++++-- xen/include/asm-powerpc/debugger.h | 3 +++ 2 files changed, 13 insertions(+), 2 deletions(-) diff -r 7af3636da4b9 -r 05c8ce1d697c xen/arch/powerpc/setup.c --- a/xen/arch/powerpc/setup.c Tue Oct 10 09:09:38 2006 -0400 +++ b/xen/arch/powerpc/setup.c Tue Oct 10 09:11:32 2006 -0400 @@ -114,12 +114,20 @@ static void __init do_initcalls(void) } } -static void hw_probe_attn(unsigned char key, struct cpu_user_regs *regs) + +void noinline __attn(void) { /* To continue the probe will step over the ATTN instruction. The * NOP is there to make sure there is something sane to "step * over" to. */ - asm volatile(".long 0x00000200; nop"); + console_start_sync(); + asm volatile("attn"); + console_end_sync(); +} + +static void hw_probe_attn(unsigned char key, struct cpu_user_regs *regs) +{ + __attn(); } static void percpu_init_areas(void) diff -r 7af3636da4b9 -r 05c8ce1d697c xen/include/asm-powerpc/debugger.h --- a/xen/include/asm-powerpc/debugger.h Tue Oct 10 09:09:38 2006 -0400 +++ b/xen/include/asm-powerpc/debugger.h Tue Oct 10 09:11:32 2006 -0400 @@ -68,6 +68,9 @@ extern void __warn(char *file, int line) #define WARN() __warn(__FILE__, __LINE__) #define WARN_ON(_p) do { if (_p) WARN(); } while ( 0 ) +extern void __attn(void); +#define ATTN() __attn(); + #define FORCE_CRASH() __force_crash() #ifdef CRASH_DEBUG _______________________________________________ Xen-ppc-devel mailing list Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-ppc-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |