xref: /linux/arch/powerpc/kernel/ptrace/ptrace-view.c (revision ff2632d7d08edc11e8bd0629e9fcfebab25c78b4)
16e0b7975SChristophe Leroy // SPDX-License-Identifier: GPL-2.0-or-later
26e0b7975SChristophe Leroy 
36e0b7975SChristophe Leroy #include <linux/regset.h>
46e0b7975SChristophe Leroy #include <linux/elf.h>
56e0b7975SChristophe Leroy #include <linux/nospec.h>
66e0b7975SChristophe Leroy #include <linux/pkeys.h>
76e0b7975SChristophe Leroy 
86e0b7975SChristophe Leroy #include "ptrace-decl.h"
96e0b7975SChristophe Leroy 
106e0b7975SChristophe Leroy struct pt_regs_offset {
116e0b7975SChristophe Leroy 	const char *name;
126e0b7975SChristophe Leroy 	int offset;
136e0b7975SChristophe Leroy };
146e0b7975SChristophe Leroy 
156e0b7975SChristophe Leroy #define STR(s)	#s			/* convert to string */
166e0b7975SChristophe Leroy #define REG_OFFSET_NAME(r) {.name = #r, .offset = offsetof(struct pt_regs, r)}
176e0b7975SChristophe Leroy #define GPR_OFFSET_NAME(num)	\
186e0b7975SChristophe Leroy 	{.name = STR(r##num), .offset = offsetof(struct pt_regs, gpr[num])}, \
196e0b7975SChristophe Leroy 	{.name = STR(gpr##num), .offset = offsetof(struct pt_regs, gpr[num])}
206e0b7975SChristophe Leroy #define REG_OFFSET_END {.name = NULL, .offset = 0}
216e0b7975SChristophe Leroy 
226e0b7975SChristophe Leroy static const struct pt_regs_offset regoffset_table[] = {
236e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(0),
246e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(1),
256e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(2),
266e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(3),
276e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(4),
286e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(5),
296e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(6),
306e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(7),
316e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(8),
326e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(9),
336e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(10),
346e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(11),
356e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(12),
366e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(13),
376e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(14),
386e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(15),
396e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(16),
406e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(17),
416e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(18),
426e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(19),
436e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(20),
446e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(21),
456e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(22),
466e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(23),
476e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(24),
486e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(25),
496e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(26),
506e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(27),
516e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(28),
526e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(29),
536e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(30),
546e0b7975SChristophe Leroy 	GPR_OFFSET_NAME(31),
556e0b7975SChristophe Leroy 	REG_OFFSET_NAME(nip),
566e0b7975SChristophe Leroy 	REG_OFFSET_NAME(msr),
576e0b7975SChristophe Leroy 	REG_OFFSET_NAME(ctr),
586e0b7975SChristophe Leroy 	REG_OFFSET_NAME(link),
596e0b7975SChristophe Leroy 	REG_OFFSET_NAME(xer),
606e0b7975SChristophe Leroy 	REG_OFFSET_NAME(ccr),
616e0b7975SChristophe Leroy #ifdef CONFIG_PPC64
626e0b7975SChristophe Leroy 	REG_OFFSET_NAME(softe),
636e0b7975SChristophe Leroy #else
646e0b7975SChristophe Leroy 	REG_OFFSET_NAME(mq),
656e0b7975SChristophe Leroy #endif
666e0b7975SChristophe Leroy 	REG_OFFSET_NAME(trap),
676e0b7975SChristophe Leroy 	REG_OFFSET_NAME(dar),
686e0b7975SChristophe Leroy 	REG_OFFSET_NAME(dsisr),
696e0b7975SChristophe Leroy 	REG_OFFSET_END,
706e0b7975SChristophe Leroy };
716e0b7975SChristophe Leroy 
726e0b7975SChristophe Leroy /**
736e0b7975SChristophe Leroy  * regs_query_register_offset() - query register offset from its name
746e0b7975SChristophe Leroy  * @name:	the name of a register
756e0b7975SChristophe Leroy  *
766e0b7975SChristophe Leroy  * regs_query_register_offset() returns the offset of a register in struct
776e0b7975SChristophe Leroy  * pt_regs from its name. If the name is invalid, this returns -EINVAL;
786e0b7975SChristophe Leroy  */
regs_query_register_offset(const char * name)796e0b7975SChristophe Leroy int regs_query_register_offset(const char *name)
806e0b7975SChristophe Leroy {
816e0b7975SChristophe Leroy 	const struct pt_regs_offset *roff;
826e0b7975SChristophe Leroy 	for (roff = regoffset_table; roff->name != NULL; roff++)
836e0b7975SChristophe Leroy 		if (!strcmp(roff->name, name))
846e0b7975SChristophe Leroy 			return roff->offset;
856e0b7975SChristophe Leroy 	return -EINVAL;
866e0b7975SChristophe Leroy }
876e0b7975SChristophe Leroy 
886e0b7975SChristophe Leroy /**
896e0b7975SChristophe Leroy  * regs_query_register_name() - query register name from its offset
906e0b7975SChristophe Leroy  * @offset:	the offset of a register in struct pt_regs.
916e0b7975SChristophe Leroy  *
926e0b7975SChristophe Leroy  * regs_query_register_name() returns the name of a register from its
936e0b7975SChristophe Leroy  * offset in struct pt_regs. If the @offset is invalid, this returns NULL;
946e0b7975SChristophe Leroy  */
regs_query_register_name(unsigned int offset)956e0b7975SChristophe Leroy const char *regs_query_register_name(unsigned int offset)
966e0b7975SChristophe Leroy {
976e0b7975SChristophe Leroy 	const struct pt_regs_offset *roff;
986e0b7975SChristophe Leroy 	for (roff = regoffset_table; roff->name != NULL; roff++)
996e0b7975SChristophe Leroy 		if (roff->offset == offset)
1006e0b7975SChristophe Leroy 			return roff->name;
1016e0b7975SChristophe Leroy 	return NULL;
1026e0b7975SChristophe Leroy }
1036e0b7975SChristophe Leroy 
1046e0b7975SChristophe Leroy /*
1056e0b7975SChristophe Leroy  * does not yet catch signals sent when the child dies.
1066e0b7975SChristophe Leroy  * in exit.c or in signal.c.
1076e0b7975SChristophe Leroy  */
1086e0b7975SChristophe Leroy 
get_user_msr(struct task_struct * task)1096e0b7975SChristophe Leroy static unsigned long get_user_msr(struct task_struct *task)
1106e0b7975SChristophe Leroy {
1116e0b7975SChristophe Leroy 	return task->thread.regs->msr | task->thread.fpexc_mode;
1126e0b7975SChristophe Leroy }
1136e0b7975SChristophe Leroy 
set_user_msr(struct task_struct * task,unsigned long msr)11493c043e3SChristophe Leroy static __always_inline int set_user_msr(struct task_struct *task, unsigned long msr)
1156e0b7975SChristophe Leroy {
11659dc5bfcSNicholas Piggin 	unsigned long newmsr = (task->thread.regs->msr & ~MSR_DEBUGCHANGE) |
11759dc5bfcSNicholas Piggin 				(msr & MSR_DEBUGCHANGE);
11859dc5bfcSNicholas Piggin 	regs_set_return_msr(task->thread.regs, newmsr);
1196e0b7975SChristophe Leroy 	return 0;
1206e0b7975SChristophe Leroy }
1216e0b7975SChristophe Leroy 
1226e0b7975SChristophe Leroy #ifdef CONFIG_PPC64
get_user_dscr(struct task_struct * task,unsigned long * data)1236e0b7975SChristophe Leroy static int get_user_dscr(struct task_struct *task, unsigned long *data)
1246e0b7975SChristophe Leroy {
1256e0b7975SChristophe Leroy 	*data = task->thread.dscr;
1266e0b7975SChristophe Leroy 	return 0;
1276e0b7975SChristophe Leroy }
1286e0b7975SChristophe Leroy 
set_user_dscr(struct task_struct * task,unsigned long dscr)1296e0b7975SChristophe Leroy static int set_user_dscr(struct task_struct *task, unsigned long dscr)
1306e0b7975SChristophe Leroy {
1316e0b7975SChristophe Leroy 	task->thread.dscr = dscr;
1326e0b7975SChristophe Leroy 	task->thread.dscr_inherit = 1;
1336e0b7975SChristophe Leroy 	return 0;
1346e0b7975SChristophe Leroy }
1356e0b7975SChristophe Leroy #else
get_user_dscr(struct task_struct * task,unsigned long * data)1366e0b7975SChristophe Leroy static int get_user_dscr(struct task_struct *task, unsigned long *data)
1376e0b7975SChristophe Leroy {
1386e0b7975SChristophe Leroy 	return -EIO;
1396e0b7975SChristophe Leroy }
1406e0b7975SChristophe Leroy 
set_user_dscr(struct task_struct * task,unsigned long dscr)1416e0b7975SChristophe Leroy static int set_user_dscr(struct task_struct *task, unsigned long dscr)
1426e0b7975SChristophe Leroy {
1436e0b7975SChristophe Leroy 	return -EIO;
1446e0b7975SChristophe Leroy }
1456e0b7975SChristophe Leroy #endif
1466e0b7975SChristophe Leroy 
1476e0b7975SChristophe Leroy /*
1486e0b7975SChristophe Leroy  * We prevent mucking around with the reserved area of trap
1496e0b7975SChristophe Leroy  * which are used internally by the kernel.
1506e0b7975SChristophe Leroy  */
set_user_trap(struct task_struct * task,unsigned long trap)15193c043e3SChristophe Leroy static __always_inline int set_user_trap(struct task_struct *task, unsigned long trap)
1526e0b7975SChristophe Leroy {
153db30144bSNicholas Piggin 	set_trap(task->thread.regs, trap);
1546e0b7975SChristophe Leroy 	return 0;
1556e0b7975SChristophe Leroy }
1566e0b7975SChristophe Leroy 
1576e0b7975SChristophe Leroy /*
1586e0b7975SChristophe Leroy  * Get contents of register REGNO in task TASK.
1596e0b7975SChristophe Leroy  */
ptrace_get_reg(struct task_struct * task,int regno,unsigned long * data)1606e0b7975SChristophe Leroy int ptrace_get_reg(struct task_struct *task, int regno, unsigned long *data)
1616e0b7975SChristophe Leroy {
1626e0b7975SChristophe Leroy 	unsigned int regs_max;
1636e0b7975SChristophe Leroy 
1646e0b7975SChristophe Leroy 	if (task->thread.regs == NULL || !data)
1656e0b7975SChristophe Leroy 		return -EIO;
1666e0b7975SChristophe Leroy 
1676e0b7975SChristophe Leroy 	if (regno == PT_MSR) {
1686e0b7975SChristophe Leroy 		*data = get_user_msr(task);
1696e0b7975SChristophe Leroy 		return 0;
1706e0b7975SChristophe Leroy 	}
1716e0b7975SChristophe Leroy 
1726e0b7975SChristophe Leroy 	if (regno == PT_DSCR)
1736e0b7975SChristophe Leroy 		return get_user_dscr(task, data);
1746e0b7975SChristophe Leroy 
1756e0b7975SChristophe Leroy 	/*
1766e0b7975SChristophe Leroy 	 * softe copies paca->irq_soft_mask variable state. Since irq_soft_mask is
1771fd02f66SJulia Lawall 	 * no more used as a flag, lets force usr to always see the softe value as 1
1786e0b7975SChristophe Leroy 	 * which means interrupts are not soft disabled.
1796e0b7975SChristophe Leroy 	 */
1806e0b7975SChristophe Leroy 	if (IS_ENABLED(CONFIG_PPC64) && regno == PT_SOFTE) {
1816e0b7975SChristophe Leroy 		*data = 1;
1826e0b7975SChristophe Leroy 		return  0;
1836e0b7975SChristophe Leroy 	}
1846e0b7975SChristophe Leroy 
1856e0b7975SChristophe Leroy 	regs_max = sizeof(struct user_pt_regs) / sizeof(unsigned long);
1866e0b7975SChristophe Leroy 	if (regno < regs_max) {
1876e0b7975SChristophe Leroy 		regno = array_index_nospec(regno, regs_max);
1886e0b7975SChristophe Leroy 		*data = ((unsigned long *)task->thread.regs)[regno];
1896e0b7975SChristophe Leroy 		return 0;
1906e0b7975SChristophe Leroy 	}
1916e0b7975SChristophe Leroy 
1926e0b7975SChristophe Leroy 	return -EIO;
1936e0b7975SChristophe Leroy }
1946e0b7975SChristophe Leroy 
1956e0b7975SChristophe Leroy /*
1966e0b7975SChristophe Leroy  * Write contents of register REGNO in task TASK.
1976e0b7975SChristophe Leroy  */
ptrace_put_reg(struct task_struct * task,int regno,unsigned long data)1986e0b7975SChristophe Leroy int ptrace_put_reg(struct task_struct *task, int regno, unsigned long data)
1996e0b7975SChristophe Leroy {
2006e0b7975SChristophe Leroy 	if (task->thread.regs == NULL)
2016e0b7975SChristophe Leroy 		return -EIO;
2026e0b7975SChristophe Leroy 
2036e0b7975SChristophe Leroy 	if (regno == PT_MSR)
2046e0b7975SChristophe Leroy 		return set_user_msr(task, data);
2056e0b7975SChristophe Leroy 	if (regno == PT_TRAP)
2066e0b7975SChristophe Leroy 		return set_user_trap(task, data);
2076e0b7975SChristophe Leroy 	if (regno == PT_DSCR)
2086e0b7975SChristophe Leroy 		return set_user_dscr(task, data);
2096e0b7975SChristophe Leroy 
2106e0b7975SChristophe Leroy 	if (regno <= PT_MAX_PUT_REG) {
2116e0b7975SChristophe Leroy 		regno = array_index_nospec(regno, PT_MAX_PUT_REG + 1);
2126e0b7975SChristophe Leroy 		((unsigned long *)task->thread.regs)[regno] = data;
2136e0b7975SChristophe Leroy 		return 0;
2146e0b7975SChristophe Leroy 	}
2156e0b7975SChristophe Leroy 	return -EIO;
2166e0b7975SChristophe Leroy }
2176e0b7975SChristophe Leroy 
gpr_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)2186e0b7975SChristophe Leroy static int gpr_get(struct task_struct *target, const struct user_regset *regset,
21947e12855SAl Viro 		   struct membuf to)
2206e0b7975SChristophe Leroy {
221640586f8SOleg Nesterov 	struct membuf to_msr = membuf_at(&to, offsetof(struct pt_regs, msr));
222324a6946SOleg Nesterov #ifdef CONFIG_PPC64
223324a6946SOleg Nesterov 	struct membuf to_softe = membuf_at(&to, offsetof(struct pt_regs, softe));
224324a6946SOleg Nesterov #endif
2256e0b7975SChristophe Leroy 	if (target->thread.regs == NULL)
2266e0b7975SChristophe Leroy 		return -EIO;
2276e0b7975SChristophe Leroy 
228640586f8SOleg Nesterov 	membuf_write(&to, target->thread.regs, sizeof(struct user_pt_regs));
2296e0b7975SChristophe Leroy 
230640586f8SOleg Nesterov 	membuf_store(&to_msr, get_user_msr(target));
231324a6946SOleg Nesterov #ifdef CONFIG_PPC64
232324a6946SOleg Nesterov 	membuf_store(&to_softe, 0x1ul);
233324a6946SOleg Nesterov #endif
23447e12855SAl Viro 	return membuf_zero(&to, ELF_NGREG * sizeof(unsigned long) -
2356e0b7975SChristophe Leroy 				 sizeof(struct user_pt_regs));
2366e0b7975SChristophe Leroy }
2376e0b7975SChristophe Leroy 
gpr_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)2386e0b7975SChristophe Leroy static int gpr_set(struct task_struct *target, const struct user_regset *regset,
2396e0b7975SChristophe Leroy 		   unsigned int pos, unsigned int count, const void *kbuf,
2406e0b7975SChristophe Leroy 		   const void __user *ubuf)
2416e0b7975SChristophe Leroy {
2426e0b7975SChristophe Leroy 	unsigned long reg;
2436e0b7975SChristophe Leroy 	int ret;
2446e0b7975SChristophe Leroy 
2456e0b7975SChristophe Leroy 	if (target->thread.regs == NULL)
2466e0b7975SChristophe Leroy 		return -EIO;
2476e0b7975SChristophe Leroy 
2486e0b7975SChristophe Leroy 	ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
2496e0b7975SChristophe Leroy 				 target->thread.regs,
2506e0b7975SChristophe Leroy 				 0, PT_MSR * sizeof(reg));
2516e0b7975SChristophe Leroy 
2526e0b7975SChristophe Leroy 	if (!ret && count > 0) {
2536e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &reg,
2546e0b7975SChristophe Leroy 					 PT_MSR * sizeof(reg),
2556e0b7975SChristophe Leroy 					 (PT_MSR + 1) * sizeof(reg));
2566e0b7975SChristophe Leroy 		if (!ret)
2576e0b7975SChristophe Leroy 			ret = set_user_msr(target, reg);
2586e0b7975SChristophe Leroy 	}
2596e0b7975SChristophe Leroy 
2606e0b7975SChristophe Leroy 	BUILD_BUG_ON(offsetof(struct pt_regs, orig_gpr3) !=
2616e0b7975SChristophe Leroy 		     offsetof(struct pt_regs, msr) + sizeof(long));
2626e0b7975SChristophe Leroy 
2636e0b7975SChristophe Leroy 	if (!ret)
2646e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
2656e0b7975SChristophe Leroy 					 &target->thread.regs->orig_gpr3,
2666e0b7975SChristophe Leroy 					 PT_ORIG_R3 * sizeof(reg),
2676e0b7975SChristophe Leroy 					 (PT_MAX_PUT_REG + 1) * sizeof(reg));
2686e0b7975SChristophe Leroy 
2696e0b7975SChristophe Leroy 	if (PT_MAX_PUT_REG + 1 < PT_TRAP && !ret)
27018b9fe54SSergey Shtylyov 		user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
2716e0b7975SChristophe Leroy 					  (PT_MAX_PUT_REG + 1) * sizeof(reg),
2726e0b7975SChristophe Leroy 					  PT_TRAP * sizeof(reg));
2736e0b7975SChristophe Leroy 
2746e0b7975SChristophe Leroy 	if (!ret && count > 0) {
2756e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &reg,
2766e0b7975SChristophe Leroy 					 PT_TRAP * sizeof(reg),
2776e0b7975SChristophe Leroy 					 (PT_TRAP + 1) * sizeof(reg));
2786e0b7975SChristophe Leroy 		if (!ret)
2796e0b7975SChristophe Leroy 			ret = set_user_trap(target, reg);
2806e0b7975SChristophe Leroy 	}
2816e0b7975SChristophe Leroy 
2826e0b7975SChristophe Leroy 	if (!ret)
28318b9fe54SSergey Shtylyov 		user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
2846e0b7975SChristophe Leroy 					  (PT_TRAP + 1) * sizeof(reg), -1);
2856e0b7975SChristophe Leroy 
2866e0b7975SChristophe Leroy 	return ret;
2876e0b7975SChristophe Leroy }
2886e0b7975SChristophe Leroy 
2896e0b7975SChristophe Leroy #ifdef CONFIG_PPC64
ppr_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)2906e0b7975SChristophe Leroy static int ppr_get(struct task_struct *target, const struct user_regset *regset,
29147e12855SAl Viro 		   struct membuf to)
2926e0b7975SChristophe Leroy {
293fd727618SJens Axboe 	if (!target->thread.regs)
294fd727618SJens Axboe 		return -EINVAL;
295fd727618SJens Axboe 
29647e12855SAl Viro 	return membuf_write(&to, &target->thread.regs->ppr, sizeof(u64));
2976e0b7975SChristophe Leroy }
2986e0b7975SChristophe Leroy 
ppr_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)2996e0b7975SChristophe Leroy static int ppr_set(struct task_struct *target, const struct user_regset *regset,
3006e0b7975SChristophe Leroy 		   unsigned int pos, unsigned int count, const void *kbuf,
3016e0b7975SChristophe Leroy 		   const void __user *ubuf)
3026e0b7975SChristophe Leroy {
303fd727618SJens Axboe 	if (!target->thread.regs)
304fd727618SJens Axboe 		return -EINVAL;
305fd727618SJens Axboe 
3066e0b7975SChristophe Leroy 	return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
3076e0b7975SChristophe Leroy 				  &target->thread.regs->ppr, 0, sizeof(u64));
3086e0b7975SChristophe Leroy }
3096e0b7975SChristophe Leroy 
dscr_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)3106e0b7975SChristophe Leroy static int dscr_get(struct task_struct *target, const struct user_regset *regset,
31147e12855SAl Viro 		    struct membuf to)
3126e0b7975SChristophe Leroy {
31347e12855SAl Viro 	return membuf_write(&to, &target->thread.dscr, sizeof(u64));
3146e0b7975SChristophe Leroy }
dscr_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)3156e0b7975SChristophe Leroy static int dscr_set(struct task_struct *target, const struct user_regset *regset,
3166e0b7975SChristophe Leroy 		    unsigned int pos, unsigned int count, const void *kbuf,
3176e0b7975SChristophe Leroy 		    const void __user *ubuf)
3186e0b7975SChristophe Leroy {
3196e0b7975SChristophe Leroy 	return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
3206e0b7975SChristophe Leroy 				  &target->thread.dscr, 0, sizeof(u64));
3216e0b7975SChristophe Leroy }
3226e0b7975SChristophe Leroy #endif
3236e0b7975SChristophe Leroy #ifdef CONFIG_PPC_BOOK3S_64
tar_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)3246e0b7975SChristophe Leroy static int tar_get(struct task_struct *target, const struct user_regset *regset,
32547e12855SAl Viro 		   struct membuf to)
3266e0b7975SChristophe Leroy {
32747e12855SAl Viro 	return membuf_write(&to, &target->thread.tar, sizeof(u64));
3286e0b7975SChristophe Leroy }
tar_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)3296e0b7975SChristophe Leroy static int tar_set(struct task_struct *target, const struct user_regset *regset,
3306e0b7975SChristophe Leroy 		   unsigned int pos, unsigned int count, const void *kbuf,
3316e0b7975SChristophe Leroy 		   const void __user *ubuf)
3326e0b7975SChristophe Leroy {
3336e0b7975SChristophe Leroy 	return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
3346e0b7975SChristophe Leroy 				  &target->thread.tar, 0, sizeof(u64));
3356e0b7975SChristophe Leroy }
3366e0b7975SChristophe Leroy 
ebb_active(struct task_struct * target,const struct user_regset * regset)3376e0b7975SChristophe Leroy static int ebb_active(struct task_struct *target, const struct user_regset *regset)
3386e0b7975SChristophe Leroy {
3396e0b7975SChristophe Leroy 	if (!cpu_has_feature(CPU_FTR_ARCH_207S))
3406e0b7975SChristophe Leroy 		return -ENODEV;
3416e0b7975SChristophe Leroy 
3426e0b7975SChristophe Leroy 	if (target->thread.used_ebb)
3436e0b7975SChristophe Leroy 		return regset->n;
3446e0b7975SChristophe Leroy 
3456e0b7975SChristophe Leroy 	return 0;
3466e0b7975SChristophe Leroy }
3476e0b7975SChristophe Leroy 
ebb_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)3486e0b7975SChristophe Leroy static int ebb_get(struct task_struct *target, const struct user_regset *regset,
34947e12855SAl Viro 		   struct membuf to)
3506e0b7975SChristophe Leroy {
3516e0b7975SChristophe Leroy 	/* Build tests */
3526e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(ebbrr) + sizeof(unsigned long) != TSO(ebbhr));
3536e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(ebbhr) + sizeof(unsigned long) != TSO(bescr));
3546e0b7975SChristophe Leroy 
3556e0b7975SChristophe Leroy 	if (!cpu_has_feature(CPU_FTR_ARCH_207S))
3566e0b7975SChristophe Leroy 		return -ENODEV;
3576e0b7975SChristophe Leroy 
3586e0b7975SChristophe Leroy 	if (!target->thread.used_ebb)
3596e0b7975SChristophe Leroy 		return -ENODATA;
3606e0b7975SChristophe Leroy 
36147e12855SAl Viro 	return membuf_write(&to, &target->thread.ebbrr, 3 * sizeof(unsigned long));
3626e0b7975SChristophe Leroy }
3636e0b7975SChristophe Leroy 
ebb_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)3646e0b7975SChristophe Leroy static int ebb_set(struct task_struct *target, const struct user_regset *regset,
3656e0b7975SChristophe Leroy 		   unsigned int pos, unsigned int count, const void *kbuf,
3666e0b7975SChristophe Leroy 		   const void __user *ubuf)
3676e0b7975SChristophe Leroy {
3686e0b7975SChristophe Leroy 	int ret = 0;
3696e0b7975SChristophe Leroy 
3706e0b7975SChristophe Leroy 	/* Build tests */
3716e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(ebbrr) + sizeof(unsigned long) != TSO(ebbhr));
3726e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(ebbhr) + sizeof(unsigned long) != TSO(bescr));
3736e0b7975SChristophe Leroy 
3746e0b7975SChristophe Leroy 	if (!cpu_has_feature(CPU_FTR_ARCH_207S))
3756e0b7975SChristophe Leroy 		return -ENODEV;
3766e0b7975SChristophe Leroy 
3776e0b7975SChristophe Leroy 	if (target->thread.used_ebb)
3786e0b7975SChristophe Leroy 		return -ENODATA;
3796e0b7975SChristophe Leroy 
3806e0b7975SChristophe Leroy 	ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &target->thread.ebbrr,
3816e0b7975SChristophe Leroy 				 0, sizeof(unsigned long));
3826e0b7975SChristophe Leroy 
3836e0b7975SChristophe Leroy 	if (!ret)
3846e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
3856e0b7975SChristophe Leroy 					 &target->thread.ebbhr, sizeof(unsigned long),
3866e0b7975SChristophe Leroy 					 2 * sizeof(unsigned long));
3876e0b7975SChristophe Leroy 
3886e0b7975SChristophe Leroy 	if (!ret)
3896e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
3906e0b7975SChristophe Leroy 					 &target->thread.bescr, 2 * sizeof(unsigned long),
3916e0b7975SChristophe Leroy 					 3 * sizeof(unsigned long));
3926e0b7975SChristophe Leroy 
3936e0b7975SChristophe Leroy 	return ret;
3946e0b7975SChristophe Leroy }
pmu_active(struct task_struct * target,const struct user_regset * regset)3956e0b7975SChristophe Leroy static int pmu_active(struct task_struct *target, const struct user_regset *regset)
3966e0b7975SChristophe Leroy {
3976e0b7975SChristophe Leroy 	if (!cpu_has_feature(CPU_FTR_ARCH_207S))
3986e0b7975SChristophe Leroy 		return -ENODEV;
3996e0b7975SChristophe Leroy 
4006e0b7975SChristophe Leroy 	return regset->n;
4016e0b7975SChristophe Leroy }
4026e0b7975SChristophe Leroy 
pmu_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)4036e0b7975SChristophe Leroy static int pmu_get(struct task_struct *target, const struct user_regset *regset,
40447e12855SAl Viro 		   struct membuf to)
4056e0b7975SChristophe Leroy {
4066e0b7975SChristophe Leroy 	/* Build tests */
4076e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(siar) + sizeof(unsigned long) != TSO(sdar));
4086e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(sdar) + sizeof(unsigned long) != TSO(sier));
4096e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(sier) + sizeof(unsigned long) != TSO(mmcr2));
4106e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(mmcr2) + sizeof(unsigned long) != TSO(mmcr0));
4116e0b7975SChristophe Leroy 
4126e0b7975SChristophe Leroy 	if (!cpu_has_feature(CPU_FTR_ARCH_207S))
4136e0b7975SChristophe Leroy 		return -ENODEV;
4146e0b7975SChristophe Leroy 
41547e12855SAl Viro 	return membuf_write(&to, &target->thread.siar, 5 * sizeof(unsigned long));
4166e0b7975SChristophe Leroy }
4176e0b7975SChristophe Leroy 
pmu_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)4186e0b7975SChristophe Leroy static int pmu_set(struct task_struct *target, const struct user_regset *regset,
4196e0b7975SChristophe Leroy 		   unsigned int pos, unsigned int count, const void *kbuf,
4206e0b7975SChristophe Leroy 		   const void __user *ubuf)
4216e0b7975SChristophe Leroy {
4226e0b7975SChristophe Leroy 	int ret = 0;
4236e0b7975SChristophe Leroy 
4246e0b7975SChristophe Leroy 	/* Build tests */
4256e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(siar) + sizeof(unsigned long) != TSO(sdar));
4266e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(sdar) + sizeof(unsigned long) != TSO(sier));
4276e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(sier) + sizeof(unsigned long) != TSO(mmcr2));
4286e0b7975SChristophe Leroy 	BUILD_BUG_ON(TSO(mmcr2) + sizeof(unsigned long) != TSO(mmcr0));
4296e0b7975SChristophe Leroy 
4306e0b7975SChristophe Leroy 	if (!cpu_has_feature(CPU_FTR_ARCH_207S))
4316e0b7975SChristophe Leroy 		return -ENODEV;
4326e0b7975SChristophe Leroy 
4336e0b7975SChristophe Leroy 	ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &target->thread.siar,
4346e0b7975SChristophe Leroy 				 0, sizeof(unsigned long));
4356e0b7975SChristophe Leroy 
4366e0b7975SChristophe Leroy 	if (!ret)
4376e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
4386e0b7975SChristophe Leroy 					 &target->thread.sdar, sizeof(unsigned long),
4396e0b7975SChristophe Leroy 					 2 * sizeof(unsigned long));
4406e0b7975SChristophe Leroy 
4416e0b7975SChristophe Leroy 	if (!ret)
4426e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
4436e0b7975SChristophe Leroy 					 &target->thread.sier, 2 * sizeof(unsigned long),
4446e0b7975SChristophe Leroy 					 3 * sizeof(unsigned long));
4456e0b7975SChristophe Leroy 
4466e0b7975SChristophe Leroy 	if (!ret)
4476e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
4486e0b7975SChristophe Leroy 					 &target->thread.mmcr2, 3 * sizeof(unsigned long),
4496e0b7975SChristophe Leroy 					 4 * sizeof(unsigned long));
4506e0b7975SChristophe Leroy 
4516e0b7975SChristophe Leroy 	if (!ret)
4526e0b7975SChristophe Leroy 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
4536e0b7975SChristophe Leroy 					 &target->thread.mmcr0, 4 * sizeof(unsigned long),
4546e0b7975SChristophe Leroy 					 5 * sizeof(unsigned long));
4556e0b7975SChristophe Leroy 	return ret;
4566e0b7975SChristophe Leroy }
457884ad5c5SBenjamin Gray 
dexcr_active(struct task_struct * target,const struct user_regset * regset)458884ad5c5SBenjamin Gray static int dexcr_active(struct task_struct *target, const struct user_regset *regset)
459884ad5c5SBenjamin Gray {
460884ad5c5SBenjamin Gray 	if (!cpu_has_feature(CPU_FTR_ARCH_31))
461884ad5c5SBenjamin Gray 		return -ENODEV;
462884ad5c5SBenjamin Gray 
463884ad5c5SBenjamin Gray 	return regset->n;
464884ad5c5SBenjamin Gray }
465884ad5c5SBenjamin Gray 
dexcr_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)466884ad5c5SBenjamin Gray static int dexcr_get(struct task_struct *target, const struct user_regset *regset,
467884ad5c5SBenjamin Gray 		     struct membuf to)
468884ad5c5SBenjamin Gray {
469884ad5c5SBenjamin Gray 	if (!cpu_has_feature(CPU_FTR_ARCH_31))
470884ad5c5SBenjamin Gray 		return -ENODEV;
471884ad5c5SBenjamin Gray 
472*75171f06SBenjamin Gray 	membuf_store(&to, (u64)lower_32_bits(target->thread.dexcr));
473884ad5c5SBenjamin Gray 
474884ad5c5SBenjamin Gray 	/*
475884ad5c5SBenjamin Gray 	 * Technically the HDEXCR is per-cpu, but a hypervisor can't reasonably
476884ad5c5SBenjamin Gray 	 * change it between CPUs of the same guest.
477884ad5c5SBenjamin Gray 	 */
478884ad5c5SBenjamin Gray 	return membuf_store(&to, (u64)lower_32_bits(mfspr(SPRN_HDEXCR_RO)));
479884ad5c5SBenjamin Gray }
480884ad5c5SBenjamin Gray 
48197228ca3SBenjamin Gray #ifdef CONFIG_CHECKPOINT_RESTORE
hashkeyr_active(struct task_struct * target,const struct user_regset * regset)48297228ca3SBenjamin Gray static int hashkeyr_active(struct task_struct *target, const struct user_regset *regset)
48397228ca3SBenjamin Gray {
48497228ca3SBenjamin Gray 	if (!cpu_has_feature(CPU_FTR_ARCH_31))
48597228ca3SBenjamin Gray 		return -ENODEV;
48697228ca3SBenjamin Gray 
48797228ca3SBenjamin Gray 	return regset->n;
48897228ca3SBenjamin Gray }
48997228ca3SBenjamin Gray 
hashkeyr_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)49097228ca3SBenjamin Gray static int hashkeyr_get(struct task_struct *target, const struct user_regset *regset,
49197228ca3SBenjamin Gray 			struct membuf to)
49297228ca3SBenjamin Gray {
49397228ca3SBenjamin Gray 	if (!cpu_has_feature(CPU_FTR_ARCH_31))
49497228ca3SBenjamin Gray 		return -ENODEV;
49597228ca3SBenjamin Gray 
49697228ca3SBenjamin Gray 	return membuf_store(&to, target->thread.hashkeyr);
49797228ca3SBenjamin Gray }
49897228ca3SBenjamin Gray 
hashkeyr_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)49997228ca3SBenjamin Gray static int hashkeyr_set(struct task_struct *target, const struct user_regset *regset,
50097228ca3SBenjamin Gray 			unsigned int pos, unsigned int count, const void *kbuf,
50197228ca3SBenjamin Gray 			const void __user *ubuf)
50297228ca3SBenjamin Gray {
50397228ca3SBenjamin Gray 	if (!cpu_has_feature(CPU_FTR_ARCH_31))
50497228ca3SBenjamin Gray 		return -ENODEV;
50597228ca3SBenjamin Gray 
50697228ca3SBenjamin Gray 	return user_regset_copyin(&pos, &count, &kbuf, &ubuf, &target->thread.hashkeyr,
50797228ca3SBenjamin Gray 				  0, sizeof(unsigned long));
50897228ca3SBenjamin Gray }
50997228ca3SBenjamin Gray #endif /* CONFIG_CHECKPOINT_RESTORE */
510884ad5c5SBenjamin Gray #endif /* CONFIG_PPC_BOOK3S_64 */
5116e0b7975SChristophe Leroy 
5126e0b7975SChristophe Leroy #ifdef CONFIG_PPC_MEM_KEYS
pkey_active(struct task_struct * target,const struct user_regset * regset)5136e0b7975SChristophe Leroy static int pkey_active(struct task_struct *target, const struct user_regset *regset)
5146e0b7975SChristophe Leroy {
5156e0b7975SChristophe Leroy 	if (!arch_pkeys_enabled())
5166e0b7975SChristophe Leroy 		return -ENODEV;
5176e0b7975SChristophe Leroy 
5186e0b7975SChristophe Leroy 	return regset->n;
5196e0b7975SChristophe Leroy }
5206e0b7975SChristophe Leroy 
pkey_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)5216e0b7975SChristophe Leroy static int pkey_get(struct task_struct *target, const struct user_regset *regset,
52247e12855SAl Viro 		    struct membuf to)
5236e0b7975SChristophe Leroy {
5246e0b7975SChristophe Leroy 
5256e0b7975SChristophe Leroy 	if (!arch_pkeys_enabled())
5266e0b7975SChristophe Leroy 		return -ENODEV;
5276e0b7975SChristophe Leroy 
528edc541ecSAneesh Kumar K.V 	membuf_store(&to, target->thread.regs->amr);
529edc541ecSAneesh Kumar K.V 	membuf_store(&to, target->thread.regs->iamr);
53025d8d4eeSLinus Torvalds 	return membuf_store(&to, default_uamor);
5316e0b7975SChristophe Leroy }
5326e0b7975SChristophe Leroy 
pkey_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)5336e0b7975SChristophe Leroy static int pkey_set(struct task_struct *target, const struct user_regset *regset,
5346e0b7975SChristophe Leroy 		    unsigned int pos, unsigned int count, const void *kbuf,
5356e0b7975SChristophe Leroy 		    const void __user *ubuf)
5366e0b7975SChristophe Leroy {
5376e0b7975SChristophe Leroy 	u64 new_amr;
5386e0b7975SChristophe Leroy 	int ret;
5396e0b7975SChristophe Leroy 
5406e0b7975SChristophe Leroy 	if (!arch_pkeys_enabled())
5416e0b7975SChristophe Leroy 		return -ENODEV;
5426e0b7975SChristophe Leroy 
5436e0b7975SChristophe Leroy 	/* Only the AMR can be set from userspace */
5446e0b7975SChristophe Leroy 	if (pos != 0 || count != sizeof(new_amr))
5456e0b7975SChristophe Leroy 		return -EINVAL;
5466e0b7975SChristophe Leroy 
5476e0b7975SChristophe Leroy 	ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
5486e0b7975SChristophe Leroy 				 &new_amr, 0, sizeof(new_amr));
5496e0b7975SChristophe Leroy 	if (ret)
5506e0b7975SChristophe Leroy 		return ret;
5516e0b7975SChristophe Leroy 
552e0d8e991SAneesh Kumar K.V 	/*
553e0d8e991SAneesh Kumar K.V 	 * UAMOR determines which bits of the AMR can be set from userspace.
554e0d8e991SAneesh Kumar K.V 	 * UAMOR value 0b11 indicates that the AMR value can be modified
555e0d8e991SAneesh Kumar K.V 	 * from userspace. If the kernel is using a specific key, we avoid
556e0d8e991SAneesh Kumar K.V 	 * userspace modifying the AMR value for that key by masking them
557e0d8e991SAneesh Kumar K.V 	 * via UAMOR 0b00.
558e0d8e991SAneesh Kumar K.V 	 *
559e0d8e991SAneesh Kumar K.V 	 * Pick the AMR values for the keys that kernel is using. This
560e0d8e991SAneesh Kumar K.V 	 * will be indicated by the ~default_uamor bits.
561e0d8e991SAneesh Kumar K.V 	 */
562edc541ecSAneesh Kumar K.V 	target->thread.regs->amr = (new_amr & default_uamor) |
563edc541ecSAneesh Kumar K.V 		(target->thread.regs->amr & ~default_uamor);
5646e0b7975SChristophe Leroy 
5656e0b7975SChristophe Leroy 	return 0;
5666e0b7975SChristophe Leroy }
5676e0b7975SChristophe Leroy #endif /* CONFIG_PPC_MEM_KEYS */
5686e0b7975SChristophe Leroy 
5696e0b7975SChristophe Leroy static const struct user_regset native_regsets[] = {
5706e0b7975SChristophe Leroy 	[REGSET_GPR] = {
5716e0b7975SChristophe Leroy 		.core_note_type = NT_PRSTATUS, .n = ELF_NGREG,
5726e0b7975SChristophe Leroy 		.size = sizeof(long), .align = sizeof(long),
57347e12855SAl Viro 		.regset_get = gpr_get, .set = gpr_set
5746e0b7975SChristophe Leroy 	},
5756e0b7975SChristophe Leroy 	[REGSET_FPR] = {
5766e0b7975SChristophe Leroy 		.core_note_type = NT_PRFPREG, .n = ELF_NFPREG,
5776e0b7975SChristophe Leroy 		.size = sizeof(double), .align = sizeof(double),
57847e12855SAl Viro 		.regset_get = fpr_get, .set = fpr_set
5796e0b7975SChristophe Leroy 	},
5806e0b7975SChristophe Leroy #ifdef CONFIG_ALTIVEC
5816e0b7975SChristophe Leroy 	[REGSET_VMX] = {
5826e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_VMX, .n = 34,
5836e0b7975SChristophe Leroy 		.size = sizeof(vector128), .align = sizeof(vector128),
58447e12855SAl Viro 		.active = vr_active, .regset_get = vr_get, .set = vr_set
5856e0b7975SChristophe Leroy 	},
5866e0b7975SChristophe Leroy #endif
5876e0b7975SChristophe Leroy #ifdef CONFIG_VSX
5886e0b7975SChristophe Leroy 	[REGSET_VSX] = {
5896e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_VSX, .n = 32,
5906e0b7975SChristophe Leroy 		.size = sizeof(double), .align = sizeof(double),
59147e12855SAl Viro 		.active = vsr_active, .regset_get = vsr_get, .set = vsr_set
5926e0b7975SChristophe Leroy 	},
5936e0b7975SChristophe Leroy #endif
5946e0b7975SChristophe Leroy #ifdef CONFIG_SPE
5956e0b7975SChristophe Leroy 	[REGSET_SPE] = {
5966e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_SPE, .n = 35,
5976e0b7975SChristophe Leroy 		.size = sizeof(u32), .align = sizeof(u32),
59847e12855SAl Viro 		.active = evr_active, .regset_get = evr_get, .set = evr_set
5996e0b7975SChristophe Leroy 	},
6006e0b7975SChristophe Leroy #endif
6016e0b7975SChristophe Leroy #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
6026e0b7975SChristophe Leroy 	[REGSET_TM_CGPR] = {
6036e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CGPR, .n = ELF_NGREG,
6046e0b7975SChristophe Leroy 		.size = sizeof(long), .align = sizeof(long),
60547e12855SAl Viro 		.active = tm_cgpr_active, .regset_get = tm_cgpr_get, .set = tm_cgpr_set
6066e0b7975SChristophe Leroy 	},
6076e0b7975SChristophe Leroy 	[REGSET_TM_CFPR] = {
6086e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CFPR, .n = ELF_NFPREG,
6096e0b7975SChristophe Leroy 		.size = sizeof(double), .align = sizeof(double),
61047e12855SAl Viro 		.active = tm_cfpr_active, .regset_get = tm_cfpr_get, .set = tm_cfpr_set
6116e0b7975SChristophe Leroy 	},
6126e0b7975SChristophe Leroy 	[REGSET_TM_CVMX] = {
6136e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CVMX, .n = ELF_NVMX,
6146e0b7975SChristophe Leroy 		.size = sizeof(vector128), .align = sizeof(vector128),
61547e12855SAl Viro 		.active = tm_cvmx_active, .regset_get = tm_cvmx_get, .set = tm_cvmx_set
6166e0b7975SChristophe Leroy 	},
6176e0b7975SChristophe Leroy 	[REGSET_TM_CVSX] = {
6186e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CVSX, .n = ELF_NVSX,
6196e0b7975SChristophe Leroy 		.size = sizeof(double), .align = sizeof(double),
62047e12855SAl Viro 		.active = tm_cvsx_active, .regset_get = tm_cvsx_get, .set = tm_cvsx_set
6216e0b7975SChristophe Leroy 	},
6226e0b7975SChristophe Leroy 	[REGSET_TM_SPR] = {
6236e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_SPR, .n = ELF_NTMSPRREG,
6246e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
62547e12855SAl Viro 		.active = tm_spr_active, .regset_get = tm_spr_get, .set = tm_spr_set
6266e0b7975SChristophe Leroy 	},
6276e0b7975SChristophe Leroy 	[REGSET_TM_CTAR] = {
6286e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CTAR, .n = 1,
6296e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
63047e12855SAl Viro 		.active = tm_tar_active, .regset_get = tm_tar_get, .set = tm_tar_set
6316e0b7975SChristophe Leroy 	},
6326e0b7975SChristophe Leroy 	[REGSET_TM_CPPR] = {
6336e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CPPR, .n = 1,
6346e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
63547e12855SAl Viro 		.active = tm_ppr_active, .regset_get = tm_ppr_get, .set = tm_ppr_set
6366e0b7975SChristophe Leroy 	},
6376e0b7975SChristophe Leroy 	[REGSET_TM_CDSCR] = {
6386e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CDSCR, .n = 1,
6396e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
64047e12855SAl Viro 		.active = tm_dscr_active, .regset_get = tm_dscr_get, .set = tm_dscr_set
6416e0b7975SChristophe Leroy 	},
6426e0b7975SChristophe Leroy #endif
6436e0b7975SChristophe Leroy #ifdef CONFIG_PPC64
6446e0b7975SChristophe Leroy 	[REGSET_PPR] = {
6456e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_PPR, .n = 1,
6466e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
64747e12855SAl Viro 		.regset_get = ppr_get, .set = ppr_set
6486e0b7975SChristophe Leroy 	},
6496e0b7975SChristophe Leroy 	[REGSET_DSCR] = {
6506e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_DSCR, .n = 1,
6516e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
65247e12855SAl Viro 		.regset_get = dscr_get, .set = dscr_set
6536e0b7975SChristophe Leroy 	},
6546e0b7975SChristophe Leroy #endif
6556e0b7975SChristophe Leroy #ifdef CONFIG_PPC_BOOK3S_64
6566e0b7975SChristophe Leroy 	[REGSET_TAR] = {
6576e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TAR, .n = 1,
6586e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
65947e12855SAl Viro 		.regset_get = tar_get, .set = tar_set
6606e0b7975SChristophe Leroy 	},
6616e0b7975SChristophe Leroy 	[REGSET_EBB] = {
6626e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_EBB, .n = ELF_NEBB,
6636e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
66447e12855SAl Viro 		.active = ebb_active, .regset_get = ebb_get, .set = ebb_set
6656e0b7975SChristophe Leroy 	},
6666e0b7975SChristophe Leroy 	[REGSET_PMR] = {
6676e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_PMU, .n = ELF_NPMU,
6686e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
66947e12855SAl Viro 		.active = pmu_active, .regset_get = pmu_get, .set = pmu_set
6706e0b7975SChristophe Leroy 	},
671884ad5c5SBenjamin Gray 	[REGSET_DEXCR] = {
672884ad5c5SBenjamin Gray 		.core_note_type = NT_PPC_DEXCR, .n = ELF_NDEXCR,
673884ad5c5SBenjamin Gray 		.size = sizeof(u64), .align = sizeof(u64),
674884ad5c5SBenjamin Gray 		.active = dexcr_active, .regset_get = dexcr_get
675884ad5c5SBenjamin Gray 	},
67697228ca3SBenjamin Gray #ifdef CONFIG_CHECKPOINT_RESTORE
67797228ca3SBenjamin Gray 	[REGSET_HASHKEYR] = {
67897228ca3SBenjamin Gray 		.core_note_type = NT_PPC_HASHKEYR, .n = ELF_NHASHKEYR,
67997228ca3SBenjamin Gray 		.size = sizeof(u64), .align = sizeof(u64),
68097228ca3SBenjamin Gray 		.active = hashkeyr_active, .regset_get = hashkeyr_get, .set = hashkeyr_set
68197228ca3SBenjamin Gray 	},
68297228ca3SBenjamin Gray #endif
6836e0b7975SChristophe Leroy #endif
6846e0b7975SChristophe Leroy #ifdef CONFIG_PPC_MEM_KEYS
6856e0b7975SChristophe Leroy 	[REGSET_PKEY] = {
6866e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_PKEY, .n = ELF_NPKEY,
6876e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
68847e12855SAl Viro 		.active = pkey_active, .regset_get = pkey_get, .set = pkey_set
6896e0b7975SChristophe Leroy 	},
6906e0b7975SChristophe Leroy #endif
6916e0b7975SChristophe Leroy };
6926e0b7975SChristophe Leroy 
6936e0b7975SChristophe Leroy const struct user_regset_view user_ppc_native_view = {
6946e0b7975SChristophe Leroy 	.name = UTS_MACHINE, .e_machine = ELF_ARCH, .ei_osabi = ELF_OSABI,
6956e0b7975SChristophe Leroy 	.regsets = native_regsets, .n = ARRAY_SIZE(native_regsets)
6966e0b7975SChristophe Leroy };
6976e0b7975SChristophe Leroy 
6986e0b7975SChristophe Leroy #include <linux/compat.h>
6996e0b7975SChristophe Leroy 
gpr32_get_common(struct task_struct * target,const struct user_regset * regset,struct membuf to,unsigned long * regs)7006e0b7975SChristophe Leroy int gpr32_get_common(struct task_struct *target,
7016e0b7975SChristophe Leroy 		     const struct user_regset *regset,
70247e12855SAl Viro 		     struct membuf to, unsigned long *regs)
7036e0b7975SChristophe Leroy {
70447e12855SAl Viro 	int i;
7056e0b7975SChristophe Leroy 
70647e12855SAl Viro 	for (i = 0; i < PT_MSR; i++)
70747e12855SAl Viro 		membuf_store(&to, (u32)regs[i]);
70847e12855SAl Viro 	membuf_store(&to, (u32)get_user_msr(target));
70947e12855SAl Viro 	for (i++ ; i < PT_REGS_COUNT; i++)
71047e12855SAl Viro 		membuf_store(&to, (u32)regs[i]);
71147e12855SAl Viro 	return membuf_zero(&to, (ELF_NGREG - PT_REGS_COUNT) * sizeof(u32));
7126e0b7975SChristophe Leroy }
7136e0b7975SChristophe Leroy 
gpr32_set_common_kernel(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,unsigned long * regs)7149a32584bSChristophe Leroy static int gpr32_set_common_kernel(struct task_struct *target,
7156e0b7975SChristophe Leroy 				   const struct user_regset *regset,
7166e0b7975SChristophe Leroy 				   unsigned int pos, unsigned int count,
7179a32584bSChristophe Leroy 				   const void *kbuf, unsigned long *regs)
7186e0b7975SChristophe Leroy {
7196e0b7975SChristophe Leroy 	const compat_ulong_t *k = kbuf;
7209a32584bSChristophe Leroy 
7219a32584bSChristophe Leroy 	pos /= sizeof(compat_ulong_t);
7229a32584bSChristophe Leroy 	count /= sizeof(compat_ulong_t);
7239a32584bSChristophe Leroy 
7249a32584bSChristophe Leroy 	for (; count > 0 && pos < PT_MSR; --count)
7259a32584bSChristophe Leroy 		regs[pos++] = *k++;
7269a32584bSChristophe Leroy 
7279a32584bSChristophe Leroy 	if (count > 0 && pos == PT_MSR) {
7289a32584bSChristophe Leroy 		set_user_msr(target, *k++);
7299a32584bSChristophe Leroy 		++pos;
7309a32584bSChristophe Leroy 		--count;
7319a32584bSChristophe Leroy 	}
7329a32584bSChristophe Leroy 
7339a32584bSChristophe Leroy 	for (; count > 0 && pos <= PT_MAX_PUT_REG; --count)
7349a32584bSChristophe Leroy 		regs[pos++] = *k++;
7359a32584bSChristophe Leroy 	for (; count > 0 && pos < PT_TRAP; --count, ++pos)
7369a32584bSChristophe Leroy 		++k;
7379a32584bSChristophe Leroy 
7389a32584bSChristophe Leroy 	if (count > 0 && pos == PT_TRAP) {
7399a32584bSChristophe Leroy 		set_user_trap(target, *k++);
7409a32584bSChristophe Leroy 		++pos;
7419a32584bSChristophe Leroy 		--count;
7429a32584bSChristophe Leroy 	}
7439a32584bSChristophe Leroy 
7449a32584bSChristophe Leroy 	kbuf = k;
7459a32584bSChristophe Leroy 	pos *= sizeof(compat_ulong_t);
7469a32584bSChristophe Leroy 	count *= sizeof(compat_ulong_t);
7479a32584bSChristophe Leroy 	user_regset_copyin_ignore(&pos, &count, &kbuf, NULL,
7489a32584bSChristophe Leroy 				  (PT_TRAP + 1) * sizeof(compat_ulong_t), -1);
7499a32584bSChristophe Leroy 	return 0;
7509a32584bSChristophe Leroy }
7519a32584bSChristophe Leroy 
gpr32_set_common_user(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void __user * ubuf,unsigned long * regs)7529a32584bSChristophe Leroy static int gpr32_set_common_user(struct task_struct *target,
7539a32584bSChristophe Leroy 				 const struct user_regset *regset,
7549a32584bSChristophe Leroy 				 unsigned int pos, unsigned int count,
7559a32584bSChristophe Leroy 				 const void __user *ubuf, unsigned long *regs)
7569a32584bSChristophe Leroy {
7576e0b7975SChristophe Leroy 	const compat_ulong_t __user *u = ubuf;
7589a32584bSChristophe Leroy 	const void *kbuf = NULL;
7596e0b7975SChristophe Leroy 	compat_ulong_t reg;
7606e0b7975SChristophe Leroy 
7619a32584bSChristophe Leroy 	if (!user_read_access_begin(u, count))
76293c043e3SChristophe Leroy 		return -EFAULT;
76393c043e3SChristophe Leroy 
7646e0b7975SChristophe Leroy 	pos /= sizeof(reg);
7656e0b7975SChristophe Leroy 	count /= sizeof(reg);
7666e0b7975SChristophe Leroy 
7676e0b7975SChristophe Leroy 	for (; count > 0 && pos < PT_MSR; --count) {
76893c043e3SChristophe Leroy 		unsafe_get_user(reg, u++, Efault);
7696e0b7975SChristophe Leroy 		regs[pos++] = reg;
7706e0b7975SChristophe Leroy 	}
7716e0b7975SChristophe Leroy 
7726e0b7975SChristophe Leroy 	if (count > 0 && pos == PT_MSR) {
77393c043e3SChristophe Leroy 		unsafe_get_user(reg, u++, Efault);
7746e0b7975SChristophe Leroy 		set_user_msr(target, reg);
7756e0b7975SChristophe Leroy 		++pos;
7766e0b7975SChristophe Leroy 		--count;
7776e0b7975SChristophe Leroy 	}
7786e0b7975SChristophe Leroy 
7796e0b7975SChristophe Leroy 	for (; count > 0 && pos <= PT_MAX_PUT_REG; --count) {
78093c043e3SChristophe Leroy 		unsafe_get_user(reg, u++, Efault);
7816e0b7975SChristophe Leroy 		regs[pos++] = reg;
7826e0b7975SChristophe Leroy 	}
7836e0b7975SChristophe Leroy 	for (; count > 0 && pos < PT_TRAP; --count, ++pos)
78493c043e3SChristophe Leroy 		unsafe_get_user(reg, u++, Efault);
7856e0b7975SChristophe Leroy 
7866e0b7975SChristophe Leroy 	if (count > 0 && pos == PT_TRAP) {
78793c043e3SChristophe Leroy 		unsafe_get_user(reg, u++, Efault);
7886e0b7975SChristophe Leroy 		set_user_trap(target, reg);
7896e0b7975SChristophe Leroy 		++pos;
7906e0b7975SChristophe Leroy 		--count;
7916e0b7975SChristophe Leroy 	}
79293c043e3SChristophe Leroy 	user_read_access_end();
7936e0b7975SChristophe Leroy 
7946e0b7975SChristophe Leroy 	ubuf = u;
7956e0b7975SChristophe Leroy 	pos *= sizeof(reg);
7966e0b7975SChristophe Leroy 	count *= sizeof(reg);
79718b9fe54SSergey Shtylyov 	user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
7986e0b7975SChristophe Leroy 				  (PT_TRAP + 1) * sizeof(reg), -1);
79918b9fe54SSergey Shtylyov 	return 0;
80093c043e3SChristophe Leroy 
80193c043e3SChristophe Leroy Efault:
80293c043e3SChristophe Leroy 	user_read_access_end();
80393c043e3SChristophe Leroy 	return -EFAULT;
8046e0b7975SChristophe Leroy }
8056e0b7975SChristophe Leroy 
gpr32_set_common(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf,unsigned long * regs)8069a32584bSChristophe Leroy int gpr32_set_common(struct task_struct *target,
8079a32584bSChristophe Leroy 		     const struct user_regset *regset,
8089a32584bSChristophe Leroy 		     unsigned int pos, unsigned int count,
8099a32584bSChristophe Leroy 		     const void *kbuf, const void __user *ubuf,
8109a32584bSChristophe Leroy 		     unsigned long *regs)
8119a32584bSChristophe Leroy {
8129a32584bSChristophe Leroy 	if (kbuf)
8139a32584bSChristophe Leroy 		return gpr32_set_common_kernel(target, regset, pos, count, kbuf, regs);
8149a32584bSChristophe Leroy 	else
8159a32584bSChristophe Leroy 		return gpr32_set_common_user(target, regset, pos, count, ubuf, regs);
8169a32584bSChristophe Leroy }
8179a32584bSChristophe Leroy 
gpr32_get(struct task_struct * target,const struct user_regset * regset,struct membuf to)8186e0b7975SChristophe Leroy static int gpr32_get(struct task_struct *target,
8196e0b7975SChristophe Leroy 		     const struct user_regset *regset,
82047e12855SAl Viro 		     struct membuf to)
8216e0b7975SChristophe Leroy {
8226e0b7975SChristophe Leroy 	if (target->thread.regs == NULL)
8236e0b7975SChristophe Leroy 		return -EIO;
8246e0b7975SChristophe Leroy 
82547e12855SAl Viro 	return gpr32_get_common(target, regset, to,
8266e0b7975SChristophe Leroy 			&target->thread.regs->gpr[0]);
8276e0b7975SChristophe Leroy }
8286e0b7975SChristophe Leroy 
gpr32_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)8296e0b7975SChristophe Leroy static int gpr32_set(struct task_struct *target,
8306e0b7975SChristophe Leroy 		     const struct user_regset *regset,
8316e0b7975SChristophe Leroy 		     unsigned int pos, unsigned int count,
8326e0b7975SChristophe Leroy 		     const void *kbuf, const void __user *ubuf)
8336e0b7975SChristophe Leroy {
8346e0b7975SChristophe Leroy 	if (target->thread.regs == NULL)
8356e0b7975SChristophe Leroy 		return -EIO;
8366e0b7975SChristophe Leroy 
8376e0b7975SChristophe Leroy 	return gpr32_set_common(target, regset, pos, count, kbuf, ubuf,
8386e0b7975SChristophe Leroy 			&target->thread.regs->gpr[0]);
8396e0b7975SChristophe Leroy }
8406e0b7975SChristophe Leroy 
8416e0b7975SChristophe Leroy /*
8426e0b7975SChristophe Leroy  * These are the regset flavors matching the CONFIG_PPC32 native set.
8436e0b7975SChristophe Leroy  */
8446e0b7975SChristophe Leroy static const struct user_regset compat_regsets[] = {
8456e0b7975SChristophe Leroy 	[REGSET_GPR] = {
8466e0b7975SChristophe Leroy 		.core_note_type = NT_PRSTATUS, .n = ELF_NGREG,
8476e0b7975SChristophe Leroy 		.size = sizeof(compat_long_t), .align = sizeof(compat_long_t),
84847e12855SAl Viro 		.regset_get = gpr32_get, .set = gpr32_set
8496e0b7975SChristophe Leroy 	},
8506e0b7975SChristophe Leroy 	[REGSET_FPR] = {
8516e0b7975SChristophe Leroy 		.core_note_type = NT_PRFPREG, .n = ELF_NFPREG,
8526e0b7975SChristophe Leroy 		.size = sizeof(double), .align = sizeof(double),
85347e12855SAl Viro 		.regset_get = fpr_get, .set = fpr_set
8546e0b7975SChristophe Leroy 	},
8556e0b7975SChristophe Leroy #ifdef CONFIG_ALTIVEC
8566e0b7975SChristophe Leroy 	[REGSET_VMX] = {
8576e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_VMX, .n = 34,
8586e0b7975SChristophe Leroy 		.size = sizeof(vector128), .align = sizeof(vector128),
85947e12855SAl Viro 		.active = vr_active, .regset_get = vr_get, .set = vr_set
8606e0b7975SChristophe Leroy 	},
8616e0b7975SChristophe Leroy #endif
8626e0b7975SChristophe Leroy #ifdef CONFIG_SPE
8636e0b7975SChristophe Leroy 	[REGSET_SPE] = {
8646e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_SPE, .n = 35,
8656e0b7975SChristophe Leroy 		.size = sizeof(u32), .align = sizeof(u32),
86647e12855SAl Viro 		.active = evr_active, .regset_get = evr_get, .set = evr_set
8676e0b7975SChristophe Leroy 	},
8686e0b7975SChristophe Leroy #endif
8696e0b7975SChristophe Leroy #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
8706e0b7975SChristophe Leroy 	[REGSET_TM_CGPR] = {
8716e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CGPR, .n = ELF_NGREG,
8726e0b7975SChristophe Leroy 		.size = sizeof(long), .align = sizeof(long),
8736e0b7975SChristophe Leroy 		.active = tm_cgpr_active,
87447e12855SAl Viro 		.regset_get = tm_cgpr32_get, .set = tm_cgpr32_set
8756e0b7975SChristophe Leroy 	},
8766e0b7975SChristophe Leroy 	[REGSET_TM_CFPR] = {
8776e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CFPR, .n = ELF_NFPREG,
8786e0b7975SChristophe Leroy 		.size = sizeof(double), .align = sizeof(double),
87947e12855SAl Viro 		.active = tm_cfpr_active, .regset_get = tm_cfpr_get, .set = tm_cfpr_set
8806e0b7975SChristophe Leroy 	},
8816e0b7975SChristophe Leroy 	[REGSET_TM_CVMX] = {
8826e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CVMX, .n = ELF_NVMX,
8836e0b7975SChristophe Leroy 		.size = sizeof(vector128), .align = sizeof(vector128),
88447e12855SAl Viro 		.active = tm_cvmx_active, .regset_get = tm_cvmx_get, .set = tm_cvmx_set
8856e0b7975SChristophe Leroy 	},
8866e0b7975SChristophe Leroy 	[REGSET_TM_CVSX] = {
8876e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CVSX, .n = ELF_NVSX,
8886e0b7975SChristophe Leroy 		.size = sizeof(double), .align = sizeof(double),
88947e12855SAl Viro 		.active = tm_cvsx_active, .regset_get = tm_cvsx_get, .set = tm_cvsx_set
8906e0b7975SChristophe Leroy 	},
8916e0b7975SChristophe Leroy 	[REGSET_TM_SPR] = {
8926e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_SPR, .n = ELF_NTMSPRREG,
8936e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
89447e12855SAl Viro 		.active = tm_spr_active, .regset_get = tm_spr_get, .set = tm_spr_set
8956e0b7975SChristophe Leroy 	},
8966e0b7975SChristophe Leroy 	[REGSET_TM_CTAR] = {
8976e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CTAR, .n = 1,
8986e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
89947e12855SAl Viro 		.active = tm_tar_active, .regset_get = tm_tar_get, .set = tm_tar_set
9006e0b7975SChristophe Leroy 	},
9016e0b7975SChristophe Leroy 	[REGSET_TM_CPPR] = {
9026e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CPPR, .n = 1,
9036e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
90447e12855SAl Viro 		.active = tm_ppr_active, .regset_get = tm_ppr_get, .set = tm_ppr_set
9056e0b7975SChristophe Leroy 	},
9066e0b7975SChristophe Leroy 	[REGSET_TM_CDSCR] = {
9076e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TM_CDSCR, .n = 1,
9086e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
90947e12855SAl Viro 		.active = tm_dscr_active, .regset_get = tm_dscr_get, .set = tm_dscr_set
9106e0b7975SChristophe Leroy 	},
9116e0b7975SChristophe Leroy #endif
9126e0b7975SChristophe Leroy #ifdef CONFIG_PPC64
9136e0b7975SChristophe Leroy 	[REGSET_PPR] = {
9146e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_PPR, .n = 1,
9156e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
91647e12855SAl Viro 		.regset_get = ppr_get, .set = ppr_set
9176e0b7975SChristophe Leroy 	},
9186e0b7975SChristophe Leroy 	[REGSET_DSCR] = {
9196e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_DSCR, .n = 1,
9206e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
92147e12855SAl Viro 		.regset_get = dscr_get, .set = dscr_set
9226e0b7975SChristophe Leroy 	},
9236e0b7975SChristophe Leroy #endif
9246e0b7975SChristophe Leroy #ifdef CONFIG_PPC_BOOK3S_64
9256e0b7975SChristophe Leroy 	[REGSET_TAR] = {
9266e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_TAR, .n = 1,
9276e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
92847e12855SAl Viro 		.regset_get = tar_get, .set = tar_set
9296e0b7975SChristophe Leroy 	},
9306e0b7975SChristophe Leroy 	[REGSET_EBB] = {
9316e0b7975SChristophe Leroy 		.core_note_type = NT_PPC_EBB, .n = ELF_NEBB,
9326e0b7975SChristophe Leroy 		.size = sizeof(u64), .align = sizeof(u64),
93347e12855SAl Viro 		.active = ebb_active, .regset_get = ebb_get, .set = ebb_set
9346e0b7975SChristophe Leroy 	},
9356e0b7975SChristophe Leroy #endif
9366e0b7975SChristophe Leroy };
9376e0b7975SChristophe Leroy 
9386e0b7975SChristophe Leroy static const struct user_regset_view user_ppc_compat_view = {
9396e0b7975SChristophe Leroy 	.name = "ppc", .e_machine = EM_PPC, .ei_osabi = ELF_OSABI,
9406e0b7975SChristophe Leroy 	.regsets = compat_regsets, .n = ARRAY_SIZE(compat_regsets)
9416e0b7975SChristophe Leroy };
9426e0b7975SChristophe Leroy 
task_user_regset_view(struct task_struct * task)9436e0b7975SChristophe Leroy const struct user_regset_view *task_user_regset_view(struct task_struct *task)
9446e0b7975SChristophe Leroy {
9459d44d1bdSChristophe Leroy 	if (IS_ENABLED(CONFIG_COMPAT) && is_tsk_32bit_task(task))
9466e0b7975SChristophe Leroy 		return &user_ppc_compat_view;
9476e0b7975SChristophe Leroy 	return &user_ppc_native_view;
9486e0b7975SChristophe Leroy }
949