|
@@ -28,6 +28,9 @@
|
|
|
|
|
|
enum riscv_regset {
|
|
enum riscv_regset {
|
|
REGSET_X,
|
|
REGSET_X,
|
|
|
|
+#ifdef CONFIG_FPU
|
|
|
|
+ REGSET_F,
|
|
|
|
+#endif
|
|
};
|
|
};
|
|
|
|
|
|
static int riscv_gpr_get(struct task_struct *target,
|
|
static int riscv_gpr_get(struct task_struct *target,
|
|
@@ -54,6 +57,45 @@ static int riscv_gpr_set(struct task_struct *target,
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#ifdef CONFIG_FPU
|
|
|
|
+static int riscv_fpr_get(struct task_struct *target,
|
|
|
|
+ const struct user_regset *regset,
|
|
|
|
+ unsigned int pos, unsigned int count,
|
|
|
|
+ void *kbuf, void __user *ubuf)
|
|
|
|
+{
|
|
|
|
+ int ret;
|
|
|
|
+ struct __riscv_d_ext_state *fstate = &target->thread.fstate;
|
|
|
|
+
|
|
|
|
+ ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, fstate, 0,
|
|
|
|
+ offsetof(struct __riscv_d_ext_state, fcsr));
|
|
|
|
+ if (!ret) {
|
|
|
|
+ ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, fstate, 0,
|
|
|
|
+ offsetof(struct __riscv_d_ext_state, fcsr) +
|
|
|
|
+ sizeof(fstate->fcsr));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int riscv_fpr_set(struct task_struct *target,
|
|
|
|
+ const struct user_regset *regset,
|
|
|
|
+ unsigned int pos, unsigned int count,
|
|
|
|
+ const void *kbuf, const void __user *ubuf)
|
|
|
|
+{
|
|
|
|
+ int ret;
|
|
|
|
+ struct __riscv_d_ext_state *fstate = &target->thread.fstate;
|
|
|
|
+
|
|
|
|
+ ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, fstate, 0,
|
|
|
|
+ offsetof(struct __riscv_d_ext_state, fcsr));
|
|
|
|
+ if (!ret) {
|
|
|
|
+ ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, fstate, 0,
|
|
|
|
+ offsetof(struct __riscv_d_ext_state, fcsr) +
|
|
|
|
+ sizeof(fstate->fcsr));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
|
|
static const struct user_regset riscv_user_regset[] = {
|
|
static const struct user_regset riscv_user_regset[] = {
|
|
[REGSET_X] = {
|
|
[REGSET_X] = {
|
|
@@ -64,6 +106,16 @@ static const struct user_regset riscv_user_regset[] = {
|
|
.get = &riscv_gpr_get,
|
|
.get = &riscv_gpr_get,
|
|
.set = &riscv_gpr_set,
|
|
.set = &riscv_gpr_set,
|
|
},
|
|
},
|
|
|
|
+#ifdef CONFIG_FPU
|
|
|
|
+ [REGSET_F] = {
|
|
|
|
+ .core_note_type = NT_PRFPREG,
|
|
|
|
+ .n = ELF_NFPREG,
|
|
|
|
+ .size = sizeof(elf_fpreg_t),
|
|
|
|
+ .align = sizeof(elf_fpreg_t),
|
|
|
|
+ .get = &riscv_fpr_get,
|
|
|
|
+ .set = &riscv_fpr_set,
|
|
|
|
+ },
|
|
|
|
+#endif
|
|
};
|
|
};
|
|
|
|
|
|
static const struct user_regset_view riscv_user_native_view = {
|
|
static const struct user_regset_view riscv_user_native_view = {
|