aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/include/asm/sigcontext.h
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim@codesourcery.com>2009-09-23 01:22:43 +0400
committerGeert Uytterhoeven <geert@linux-m68k.org>2010-02-27 18:44:10 +0100
commit00ebfe58b002f0ff387f60c7cd23bc2b274fce1a (patch)
tree2e88877140ddcb97cf2b5a01bbf0b3c443bf3ef9 /arch/m68k/include/asm/sigcontext.h
parenta58f75349063f60949614de39390df594ba1418d (diff)
downloadkernel_samsung_smdk4412-00ebfe58b002f0ff387f60c7cd23bc2b274fce1a.zip
kernel_samsung_smdk4412-00ebfe58b002f0ff387f60c7cd23bc2b274fce1a.tar.gz
kernel_samsung_smdk4412-00ebfe58b002f0ff387f60c7cd23bc2b274fce1a.tar.bz2
m68k: Define sigcontext ABI of ColdFire
The following patch defines sigcontext ABI of ColdFire. Due to ISA restrictions ColdFire needs different rt_sigreturn trampoline. And due to ColdFire FP registers being 8-bytes instead of 12-bytes on m68k, sigcontext and fpregset structures should be updated. Regarding the sc_fpstate[16+6*8] field, it would've been enough 16 bytes to store ColdFire's FP state. To accomodate GLIBC's libSegFault it would'be been enough 6*8 bytes (room for the 6 non-call-clobbered FP registers). I set it to 16+6*8 to provide some extra space for any future changes in the ColdFire FPU. Signed-off-by: Maxim Kuvyrkov <maxim@codesourcery.com> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/include/asm/sigcontext.h')
-rw-r--r--arch/m68k/include/asm/sigcontext.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/sigcontext.h b/arch/m68k/include/asm/sigcontext.h
index 523db2a..1320eaa 100644
--- a/arch/m68k/include/asm/sigcontext.h
+++ b/arch/m68k/include/asm/sigcontext.h
@@ -15,9 +15,15 @@ struct sigcontext {
unsigned long sc_pc;
unsigned short sc_formatvec;
#ifndef __uClinux__
+# ifdef __mcoldfire__
+ unsigned long sc_fpregs[2][2]; /* room for two fp registers */
+ unsigned long sc_fpcntl[3];
+ unsigned char sc_fpstate[16+6*8];
+# else
unsigned long sc_fpregs[2*3]; /* room for two fp registers */
unsigned long sc_fpcntl[3];
unsigned char sc_fpstate[216];
+# endif
#endif
};