[PATCH 11/17] arm: user_regset: iWMMXt regs

From: Roland McGrath
Date: Fri Apr 24 2009 - 20:14:41 EST


This converts the ptrace iWMMXt support into user_regset form.
There should be no change in the ptrace behavior on CONFIG_IWMMXT.

I am not set up to test any hardware with CONFIG_IWMMXT or to try
any software that uses iWMMXt so as to verify it. I've tested that
it compiles. This regset's code is extremely simple.

Signed-off-by: Roland McGrath <roland@xxxxxxxxxx>
---
arch/arm/kernel/ptrace.c | 50 ++++++++++++++++++++++++++++++++++-----------
1 files changed, 38 insertions(+), 12 deletions(-)

diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c
index 5fb5ac1..821ce64 100644
--- a/arch/arm/kernel/ptrace.c
+++ b/arch/arm/kernel/ptrace.c
@@ -628,29 +628,41 @@ static int user_fp_set(struct task_struct *target,
/*
* Get the child iWMMXt state.
*/
-static int ptrace_getwmmxregs(struct task_struct *tsk, void __user *ufp)
+static int iwmmxt_get(struct task_struct *target,
+ const struct user_regset *regset,
+ unsigned int pos, unsigned int count,
+ void *kbuf, void __user *ubuf)
{
- struct thread_info *thread = task_thread_info(tsk);
+ struct thread_info *thread = task_thread_info(target);

if (!test_ti_thread_flag(thread, TIF_USING_IWMMXT))
return -ENODATA;
iwmmxt_task_disable(thread); /* force it to ram */
- return copy_to_user(ufp, &thread->fpstate.iwmmxt, IWMMXT_SIZE)
- ? -EFAULT : 0;
+ return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
+ &thread->fpstate.iwmmxt, 0, IWMMXT_SIZE);
+}
+
+static int iwmmxt_active(struct task_struct *target,
+ const struct user_regset *regset)
+{
+ return test_tsk_thread_flag(target, TIF_USING_IWMMXT) ? regset->n : 0;
}

/*
* Set the child iWMMXt state.
*/
-static int ptrace_setwmmxregs(struct task_struct *tsk, void __user *ufp)
+static int iwmmxt_set(struct task_struct *target,
+ const struct user_regset *regset,
+ unsigned int pos, unsigned int count,
+ const void *kbuf, const void __user *ubuf)
{
- struct thread_info *thread = task_thread_info(tsk);
+ struct thread_info *thread = task_thread_info(target);

if (!test_ti_thread_flag(thread, TIF_USING_IWMMXT))
return -EACCES;
iwmmxt_task_release(thread); /* force a reload */
- return copy_from_user(&thread->fpstate.iwmmxt, ufp, IWMMXT_SIZE)
- ? -EFAULT : 0;
+ return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
+ &thread->fpstate.iwmmxt, 0, IWMMXT_SIZE);
}

#endif
@@ -789,6 +801,9 @@ enum {
#ifdef CONFIG_VFP
REGSET_VFP,
#endif
+#ifdef CONFIG_IWMMXT
+ REGSET_IWMMXT,
+#endif
};

static const struct user_regset arm_regsets[] = {
@@ -811,6 +826,13 @@ static const struct user_regset arm_regsets[] = {
.get = vfp_get, .set = vfp_set
},
#endif
+#ifdef CONFIG_IWMMXT
+ [REGSET_IWMMXT] = {
+ .n = sizeof(struct iwmmxt_struct) / sizeof(int),
+ .size = sizeof(int), .align = sizeof(int),
+ .active = iwmmxt_active, .get = iwmmxt_get, .set = iwmmxt_set
+ },
+#endif
};

static const struct user_regset_view user_arm_view = {
@@ -884,12 +906,16 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)

#ifdef CONFIG_IWMMXT
case PTRACE_GETWMMXREGS:
- ret = ptrace_getwmmxregs(child, (void __user *)data);
- break;
+ return copy_regset_to_user(child, &user_arm_view,
+ REGSET_IWMMXT,
+ 0, IWMMXT_SIZE,
+ (void __user *) data);

case PTRACE_SETWMMXREGS:
- ret = ptrace_setwmmxregs(child, (void __user *)data);
- break;
+ return copy_regset_from_user(child, &user_arm_view,
+ REGSET_IWMMXT,
+ 0, IWMMXT_SIZE,
+ (const void __user *) data);
#endif

case PTRACE_GET_THREAD_AREA:
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/