diff options
author | Graf Yang <graf.yang@analog.com> | 2009-07-22 07:56:24 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-09-16 21:31:57 -0400 |
commit | 01b9f4b0ed3b1111b2080a3c9bcb66df1fdf48b7 (patch) | |
tree | 0963b346d63cc7ee44e3e769cc8435d224e17a87 /arch/blackfin/include | |
parent | 858c5e9abc5c614b2eceb6a361118f31821ac968 (diff) |
Blackfin: improve double fault debug handling
Since the hardware only provides reporting for the last exception handled,
and the values are valid only when executing the exception handler, we
need to save the context for reporting at a later point. While we do this
for one exception, it doesn't work properly when handling a second one as
the original exception is clobbered by the double fault. So when double
fault debugging is enabled, create a dedicated shadow of these values and
save/restore out of there. Now the crash report properly displays the
first exception as well as the second one.
Signed-off-by: Graf Yang <graf.yang@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/include')
-rw-r--r-- | arch/blackfin/include/asm/pda.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/pda.h b/arch/blackfin/include/asm/pda.h index 69b96b40c188..a6f95695731d 100644 --- a/arch/blackfin/include/asm/pda.h +++ b/arch/blackfin/include/asm/pda.h | |||
@@ -61,6 +61,12 @@ struct blackfin_pda { /* Per-processor Data Area */ | |||
61 | unsigned long retx; | 61 | unsigned long retx; |
62 | unsigned long seqstat; | 62 | unsigned long seqstat; |
63 | unsigned int __nmi_count; /* number of times NMI asserted on this CPU */ | 63 | unsigned int __nmi_count; /* number of times NMI asserted on this CPU */ |
64 | #ifdef CONFIG_DEBUG_DOUBLEFAULT | ||
65 | unsigned long dcplb_doublefault_addr; | ||
66 | unsigned long icplb_doublefault_addr; | ||
67 | unsigned long retx_doublefault; | ||
68 | unsigned long seqstat_doublefault; | ||
69 | #endif | ||
64 | }; | 70 | }; |
65 | 71 | ||
66 | extern struct blackfin_pda cpu_pda[]; | 72 | extern struct blackfin_pda cpu_pda[]; |