diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/Makefile | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/ptrace.c | 52 |
2 files changed, 54 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index 58dbfeff9b4d..ac07112b65de 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile | |||
@@ -2,6 +2,8 @@ | |||
2 | # Makefile for the linux kernel. | 2 | # Makefile for the linux kernel. |
3 | # | 3 | # |
4 | 4 | ||
5 | CFLAGS_ptrace.o += -DUTS_MACHINE='"$(UTS_MACHINE)"' | ||
6 | |||
5 | ifeq ($(CONFIG_PPC64),y) | 7 | ifeq ($(CONFIG_PPC64),y) |
6 | CFLAGS_prom_init.o += -mno-minimal-toc | 8 | CFLAGS_prom_init.o += -mno-minimal-toc |
7 | endif | 9 | endif |
diff --git a/arch/powerpc/kernel/ptrace.c b/arch/powerpc/kernel/ptrace.c index d9b952faee73..eb00274e84ba 100644 --- a/arch/powerpc/kernel/ptrace.c +++ b/arch/powerpc/kernel/ptrace.c | |||
@@ -455,6 +455,58 @@ static int set_evrregs(struct task_struct *task, unsigned long *data) | |||
455 | #endif /* CONFIG_SPE */ | 455 | #endif /* CONFIG_SPE */ |
456 | 456 | ||
457 | 457 | ||
458 | /* | ||
459 | * These are our native regset flavors. | ||
460 | */ | ||
461 | enum powerpc_regset { | ||
462 | REGSET_GPR, | ||
463 | REGSET_FPR, | ||
464 | #ifdef CONFIG_ALTIVEC | ||
465 | REGSET_VMX, | ||
466 | #endif | ||
467 | #ifdef CONFIG_SPE | ||
468 | REGSET_SPE, | ||
469 | #endif | ||
470 | }; | ||
471 | |||
472 | static const struct user_regset native_regsets[] = { | ||
473 | [REGSET_GPR] = { | ||
474 | .core_note_type = NT_PRSTATUS, .n = ELF_NGREG, | ||
475 | .size = sizeof(long), .align = sizeof(long), | ||
476 | .get = gpr_get, .set = gpr_set | ||
477 | }, | ||
478 | [REGSET_FPR] = { | ||
479 | .core_note_type = NT_PRFPREG, .n = ELF_NFPREG, | ||
480 | .size = sizeof(double), .align = sizeof(double), | ||
481 | .get = fpr_get, .set = fpr_set | ||
482 | }, | ||
483 | #ifdef CONFIG_ALTIVEC | ||
484 | [REGSET_VMX] = { | ||
485 | .core_note_type = NT_PPC_VMX, .n = 34, | ||
486 | .size = sizeof(vector128), .align = sizeof(vector128), | ||
487 | .active = vr_active, .get = vr_get, .set = vr_set | ||
488 | }, | ||
489 | #endif | ||
490 | #ifdef CONFIG_SPE | ||
491 | [REGSET_SPE] = { | ||
492 | .n = 35, | ||
493 | .size = sizeof(u32), .align = sizeof(u32), | ||
494 | .active = evr_active, .get = evr_get, .set = evr_set | ||
495 | }, | ||
496 | #endif | ||
497 | }; | ||
498 | |||
499 | static const struct user_regset_view user_ppc_native_view = { | ||
500 | .name = UTS_MACHINE, .e_machine = ELF_ARCH, .ei_osabi = ELF_OSABI, | ||
501 | .regsets = native_regsets, .n = ARRAY_SIZE(native_regsets) | ||
502 | }; | ||
503 | |||
504 | const struct user_regset_view *task_user_regset_view(struct task_struct *task) | ||
505 | { | ||
506 | return &user_ppc_native_view; | ||
507 | } | ||
508 | |||
509 | |||
458 | void user_enable_single_step(struct task_struct *task) | 510 | void user_enable_single_step(struct task_struct *task) |
459 | { | 511 | { |
460 | struct pt_regs *regs = task->thread.regs; | 512 | struct pt_regs *regs = task->thread.regs; |