diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-arm/fpstate.h | 8 | ||||
| -rw-r--r-- | include/asm-arm/thread_info.h | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/include/asm-arm/fpstate.h b/include/asm-arm/fpstate.h index 132c3c5628b2..6af4e6bd1290 100644 --- a/include/asm-arm/fpstate.h +++ b/include/asm-arm/fpstate.h | |||
| @@ -72,6 +72,14 @@ union fp_state { | |||
| 72 | 72 | ||
| 73 | #define FP_SIZE (sizeof(union fp_state) / sizeof(int)) | 73 | #define FP_SIZE (sizeof(union fp_state) / sizeof(int)) |
| 74 | 74 | ||
| 75 | struct crunch_state { | ||
| 76 | unsigned int mvdx[16][2]; | ||
| 77 | unsigned int mvax[4][3]; | ||
| 78 | unsigned int dspsc[2]; | ||
| 79 | }; | ||
| 80 | |||
| 81 | #define CRUNCH_SIZE sizeof(struct crunch_state) | ||
| 82 | |||
| 75 | #endif | 83 | #endif |
| 76 | 84 | ||
| 77 | #endif | 85 | #endif |
diff --git a/include/asm-arm/thread_info.h b/include/asm-arm/thread_info.h index cfbccb63c67b..c46b5c84275f 100644 --- a/include/asm-arm/thread_info.h +++ b/include/asm-arm/thread_info.h | |||
| @@ -59,6 +59,7 @@ struct thread_info { | |||
| 59 | struct cpu_context_save cpu_context; /* cpu context */ | 59 | struct cpu_context_save cpu_context; /* cpu context */ |
| 60 | __u8 used_cp[16]; /* thread used copro */ | 60 | __u8 used_cp[16]; /* thread used copro */ |
| 61 | unsigned long tp_value; | 61 | unsigned long tp_value; |
| 62 | struct crunch_state crunchstate; | ||
| 62 | union fp_state fpstate __attribute__((aligned(8))); | 63 | union fp_state fpstate __attribute__((aligned(8))); |
| 63 | union vfp_state vfpstate; | 64 | union vfp_state vfpstate; |
| 64 | struct restart_block restart_block; | 65 | struct restart_block restart_block; |
| @@ -101,6 +102,11 @@ extern void free_thread_info(struct thread_info *); | |||
| 101 | #define thread_saved_fp(tsk) \ | 102 | #define thread_saved_fp(tsk) \ |
| 102 | ((unsigned long)(task_thread_info(tsk)->cpu_context.fp)) | 103 | ((unsigned long)(task_thread_info(tsk)->cpu_context.fp)) |
| 103 | 104 | ||
| 105 | extern void crunch_task_disable(struct thread_info *); | ||
| 106 | extern void crunch_task_copy(struct thread_info *, void *); | ||
| 107 | extern void crunch_task_restore(struct thread_info *, void *); | ||
| 108 | extern void crunch_task_release(struct thread_info *); | ||
| 109 | |||
| 104 | extern void iwmmxt_task_disable(struct thread_info *); | 110 | extern void iwmmxt_task_disable(struct thread_info *); |
| 105 | extern void iwmmxt_task_copy(struct thread_info *, void *); | 111 | extern void iwmmxt_task_copy(struct thread_info *, void *); |
| 106 | extern void iwmmxt_task_restore(struct thread_info *, void *); | 112 | extern void iwmmxt_task_restore(struct thread_info *, void *); |
