Merge tag 'locking-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / c6x / kernel / ptrace.c
blob3cdaa8cf0ed6f958e2d706c777f41476c452c959
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Port on Texas Instruments TMS320C6x architecture
5 * Copyright (C) 2004, 2006, 2009, 2010, 2011 Texas Instruments Incorporated
6 * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com)
8 * Updated for 2.6.34: Mark Salter <msalter@redhat.com>
9 */
10 #include <linux/ptrace.h>
11 #include <linux/tracehook.h>
12 #include <linux/regset.h>
13 #include <linux/elf.h>
14 #include <linux/sched/task_stack.h>
16 #include <asm/cacheflush.h>
18 #define PT_REG_SIZE (sizeof(struct pt_regs))
21 * Called by kernel/ptrace.c when detaching.
23 void ptrace_disable(struct task_struct *child)
25 /* nothing to do */
29 * Get a register number from live pt_regs for the specified task.
31 static inline long get_reg(struct task_struct *task, int regno)
33 long *addr = (long *)task_pt_regs(task);
35 if (regno == PT_TSR || regno == PT_CSR)
36 return 0;
38 return addr[regno];
42 * Write contents of register REGNO in task TASK.
44 static inline int put_reg(struct task_struct *task,
45 int regno,
46 unsigned long data)
48 unsigned long *addr = (unsigned long *)task_pt_regs(task);
50 if (regno != PT_TSR && regno != PT_CSR)
51 addr[regno] = data;
53 return 0;
56 /* regset get/set implementations */
58 static int gpr_get(struct task_struct *target,
59 const struct user_regset *regset,
60 struct membuf to)
62 return membuf_write(&to, task_pt_regs(target), sizeof(struct pt_regs));
65 enum c6x_regset {
66 REGSET_GPR,
69 static const struct user_regset c6x_regsets[] = {
70 [REGSET_GPR] = {
71 .core_note_type = NT_PRSTATUS,
72 .n = ELF_NGREG,
73 .size = sizeof(u32),
74 .align = sizeof(u32),
75 .regset_get = gpr_get,
79 static const struct user_regset_view user_c6x_native_view = {
80 .name = "tic6x",
81 .e_machine = EM_TI_C6000,
82 .regsets = c6x_regsets,
83 .n = ARRAY_SIZE(c6x_regsets),
86 const struct user_regset_view *task_user_regset_view(struct task_struct *task)
88 return &user_c6x_native_view;
92 * Perform ptrace request
94 long arch_ptrace(struct task_struct *child, long request,
95 unsigned long addr, unsigned long data)
97 int ret = 0;
99 switch (request) {
101 * write the word at location addr.
103 case PTRACE_POKETEXT:
104 ret = generic_ptrace_pokedata(child, addr, data);
105 if (ret == 0 && request == PTRACE_POKETEXT)
106 flush_icache_range(addr, addr + 4);
107 break;
108 default:
109 ret = ptrace_request(child, request, addr, data);
110 break;
113 return ret;
117 * handle tracing of system call entry
118 * - return the revised system call number or ULONG_MAX to cause ENOSYS
120 asmlinkage unsigned long syscall_trace_entry(struct pt_regs *regs)
122 if (tracehook_report_syscall_entry(regs))
123 /* tracing decided this syscall should not happen, so
124 * We'll return a bogus call number to get an ENOSYS
125 * error, but leave the original number in
126 * regs->orig_a4
128 return ULONG_MAX;
130 return regs->b0;
134 * handle tracing of system call exit
136 asmlinkage void syscall_trace_exit(struct pt_regs *regs)
138 tracehook_report_syscall_exit(regs, 0);