1 // SPDX-License-Identifier: GPL-2.0-only
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>
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
)
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
)
42 * Write contents of register REGNO in task TASK.
44 static inline int put_reg(struct task_struct
*task
,
48 unsigned long *addr
= (unsigned long *)task_pt_regs(task
);
50 if (regno
!= PT_TSR
&& regno
!= PT_CSR
)
56 /* regset get/set implementations */
58 static int gpr_get(struct task_struct
*target
,
59 const struct user_regset
*regset
,
62 return membuf_write(&to
, task_pt_regs(target
), sizeof(struct pt_regs
));
69 static const struct user_regset c6x_regsets
[] = {
71 .core_note_type
= NT_PRSTATUS
,
75 .regset_get
= gpr_get
,
79 static const struct user_regset_view user_c6x_native_view
= {
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
)
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);
109 ret
= ptrace_request(child
, request
, addr
, data
);
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
134 * handle tracing of system call exit
136 asmlinkage
void syscall_trace_exit(struct pt_regs
*regs
)
138 tracehook_report_syscall_exit(regs
, 0);