@@ -96,6 +96,9 @@ struct thread_struct {
/* floating point info */
union sh_fpu_union fpu;
+
+ /* Dsp status information */
+ long dsp_status;
};
/* Count of active tasks with UBC settings */
@@ -120,11 +120,19 @@ extern void user_enable_single_step(struct task_struct *);
extern void user_disable_single_step(struct task_struct *);
#ifdef CONFIG_SH_DSP
-#define task_pt_regs(task) \
- ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE \
- - sizeof(struct pt_dspregs)) - 1)
+extern int is_dsp_enabled(struct task_struct *);
+
#define task_pt_dspregs(task) \
- ((struct pt_dspregs *) (task_stack_page(task) + THREAD_SIZE) - 1)
+ ((struct pt_dspregs *) (task_stack_page(task) + THREAD_SIZE \
+ - sizeof(unsigned long)) - 1)
+
+#define task_pt_regs(task) \
+ (is_dsp_enabled(task) ? \
+ ((struct pt_regs *) (task_stack_page(task) + \
+ THREAD_SIZE - sizeof(struct pt_dspregs) - \
+ sizeof(unsigned long)) - 1): \
+ ((struct pt_regs *) (task_stack_page(task) + \
+ THREAD_SIZE - sizeof(unsigned long)) - 1))
#else
#define task_pt_regs(task) \
((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE) - 1)
@@ -195,6 +195,12 @@ static int fpregs_active(struct task_struct *target,
#endif
#ifdef CONFIG_SH_DSP
+
+int is_dsp_enabled(struct task_struct *task)
+{
+ return !!(task->thread.dsp_status & SR_DSP);
+}
+
static int dspregs_get(struct task_struct *target,
const struct user_regset *regset,
unsigned int pos, unsigned int count,
@@ -664,6 +664,8 @@ asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
if (is_dsp_inst(regs)) {
/* Enable DSP mode, and restart instruction. */
regs->sr |= SR_DSP;
+ /* Save DSP mode */
+ tsk->thread.dsp_status |= SR_DSP;
return;
}
#endif
Compute correcly the offset of the registers on the stack when the CONFIG_SH_DSP is enabled. It add a thread depend information in the thread_struct. It was tested in the migor sh4a using a gdbserver application for a non dsp application. Signed-off-by: Michael Trimarchi <michael@evidence.eu.com> --- -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html