blob: d618d26721ab9a194744e030c1ec9dbdaf71b88e [file] [log] [blame]
Vineet Gupta4adeefe2013-01-18 15:12:18 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Amit Bhor, Kanika Nema: Codito Technologies 2004
9 */
10
11#include <linux/errno.h>
12#include <linux/module.h>
13#include <linux/sched.h>
Ingo Molnar29930022017-02-08 18:51:36 +010014#include <linux/sched/task.h>
15
Vineet Gupta4adeefe2013-01-18 15:12:18 +053016#include <linux/mm.h>
17#include <linux/fs.h>
18#include <linux/unistd.h>
19#include <linux/ptrace.h>
20#include <linux/slab.h>
21#include <linux/syscalls.h>
22#include <linux/elf.h>
23#include <linux/tick.h>
24
25SYSCALL_DEFINE1(arc_settls, void *, user_tls_data_ptr)
26{
27 task_thread_info(current)->thr_ptr = (unsigned int)user_tls_data_ptr;
28 return 0;
29}
30
31/*
32 * We return the user space TLS data ptr as sys-call return code
33 * Ideally it should be copy to user.
34 * However we can cheat by the fact that some sys-calls do return
35 * absurdly high values
36 * Since the tls dat aptr is not going to be in range of 0xFFFF_xxxx
37 * it won't be considered a sys-call error
38 * and it will be loads better than copy-to-user, which is a definite
39 * D-TLB Miss
40 */
41SYSCALL_DEFINE0(arc_gettls)
42{
43 return task_thread_info(current)->thr_ptr;
44}
Vineet Guptabf90e1e2013-01-18 15:12:18 +053045
Vineet Gupta91e040a2016-10-20 07:39:45 -070046SYSCALL_DEFINE3(arc_usr_cmpxchg, int *, uaddr, int, expected, int, new)
47{
Vineet Guptae6e335b2016-11-07 10:36:46 -080048 struct pt_regs *regs = current_pt_regs();
49 int uval = -EFAULT;
Vineet Gupta91e040a2016-10-20 07:39:45 -070050
51 /*
52 * This is only for old cores lacking LLOCK/SCOND, which by defintion
53 * can't possibly be SMP. Thus doesn't need to be SMP safe.
54 * And this also helps reduce the overhead for serializing in
55 * the UP case
56 */
57 WARN_ON_ONCE(IS_ENABLED(CONFIG_SMP));
58
Vineet Guptae6e335b2016-11-07 10:36:46 -080059 /* Z indicates to userspace if operation succeded */
60 regs->status32 &= ~STATUS_Z_MASK;
61
Vineet Gupta91e040a2016-10-20 07:39:45 -070062 if (!access_ok(VERIFY_WRITE, uaddr, sizeof(int)))
63 return -EFAULT;
64
65 preempt_disable();
66
Vineet Guptae6e335b2016-11-07 10:36:46 -080067 if (__get_user(uval, uaddr))
Vineet Gupta91e040a2016-10-20 07:39:45 -070068 goto done;
69
Vineet Guptae6e335b2016-11-07 10:36:46 -080070 if (uval == expected) {
71 if (!__put_user(new, uaddr))
72 regs->status32 |= STATUS_Z_MASK;
73 }
Vineet Gupta91e040a2016-10-20 07:39:45 -070074
75done:
76 preempt_enable();
77
Vineet Guptae6e335b2016-11-07 10:36:46 -080078 return uval;
Vineet Gupta91e040a2016-10-20 07:39:45 -070079}
80
Thomas Gleixnerfa35e422013-03-21 22:49:36 +010081void arch_cpu_idle(void)
Vineet Guptabf90e1e2013-01-18 15:12:18 +053082{
83 /* sleep, but enable all interrupts before committing */
Vineet Gupta512b5b82015-11-16 13:52:07 +053084 __asm__ __volatile__(
85 "sleep %0 \n"
86 :
87 :"I"(ISA_SLEEP_ARG)); /* can't be "r" has to be embedded const */
Vineet Guptabf90e1e2013-01-18 15:12:18 +053088}
89
Vineet Guptabf90e1e2013-01-18 15:12:18 +053090asmlinkage void ret_from_fork(void);
91
Alex Dowad18e1d1b2015-03-13 20:04:18 +020092/*
93 * Copy architecture-specific thread state
94 *
95 * Layout of Child kernel mode stack as setup at the end of this function is
Vineet Guptabf90e1e2013-01-18 15:12:18 +053096 *
97 * | ... |
98 * | ... |
99 * | unused |
100 * | |
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530101 * ------------------
Vineet Gupta16f9afe2013-05-27 21:43:41 +0530102 * | r25 | <==== top of Stack (thread.ksp)
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530103 * ~ ~
Vineet Gupta09074952015-08-19 17:23:58 +0530104 * | --to-- | (CALLEE Regs of kernel mode)
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530105 * | r13 |
106 * ------------------
107 * | fp |
108 * | blink | @ret_from_fork
109 * ------------------
110 * | |
111 * ~ ~
112 * ~ ~
113 * | |
114 * ------------------
115 * | r12 |
116 * ~ ~
117 * | --to-- | (scratch Regs of user mode)
118 * | r0 |
Vineet Gupta3ebedbb2013-05-28 13:24:43 +0530119 * ------------------
120 * | SP |
121 * | orig_r0 |
Vineet Gupta502a0c72013-06-11 18:56:54 +0530122 * | event/ECR |
Vineet Gupta359105b2013-05-28 13:50:41 +0530123 * | user_r25 |
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530124 * ------------------ <===== END of PAGE
125 */
126int copy_thread(unsigned long clone_flags,
Alex Dowad18e1d1b2015-03-13 20:04:18 +0200127 unsigned long usp, unsigned long kthread_arg,
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530128 struct task_struct *p)
129{
130 struct pt_regs *c_regs; /* child's pt_regs */
131 unsigned long *childksp; /* to unwind out of __switch_to() */
132 struct callee_regs *c_callee; /* child's callee regs */
133 struct callee_regs *parent_callee; /* paren't callee */
134 struct pt_regs *regs = current_pt_regs();
135
136 /* Mark the specific anchors to begin with (see pic above) */
137 c_regs = task_pt_regs(p);
138 childksp = (unsigned long *)c_regs - 2; /* 2 words for FP/BLINK */
139 c_callee = ((struct callee_regs *)childksp) - 1;
140
141 /*
142 * __switch_to() uses thread.ksp to start unwinding stack
143 * For kernel threads we don't need to create callee regs, the
144 * stack layout nevertheless needs to remain the same.
145 * Also, since __switch_to anyways unwinds callee regs, we use
146 * this to populate kernel thread entry-pt/args into callee regs,
147 * so that ret_from_kernel_thread() becomes simpler.
148 */
149 p->thread.ksp = (unsigned long)c_callee; /* THREAD_KSP */
150
151 /* __switch_to expects FP(0), BLINK(return addr) at top */
152 childksp[0] = 0; /* fp */
153 childksp[1] = (unsigned long)ret_from_fork; /* blink */
154
155 if (unlikely(p->flags & PF_KTHREAD)) {
156 memset(c_regs, 0, sizeof(struct pt_regs));
157
Alex Dowad18e1d1b2015-03-13 20:04:18 +0200158 c_callee->r13 = kthread_arg;
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530159 c_callee->r14 = usp; /* function */
160
161 return 0;
162 }
163
164 /*--------- User Task Only --------------*/
165
166 /* __switch_to expects FP(0), BLINK(return addr) at top of stack */
167 childksp[0] = 0; /* for POP fp */
168 childksp[1] = (unsigned long)ret_from_fork; /* for POP blink */
169
170 /* Copy parents pt regs on child's kernel mode stack */
171 *c_regs = *regs;
172
173 if (usp)
174 c_regs->sp = usp;
175
176 c_regs->r0 = 0; /* fork returns 0 in child */
177
178 parent_callee = ((struct callee_regs *)regs) - 1;
179 *c_callee = *parent_callee;
180
181 if (unlikely(clone_flags & CLONE_SETTLS)) {
182 /*
183 * set task's userland tls data ptr from 4th arg
184 * clone C-lib call is difft from clone sys-call
185 */
186 task_thread_info(p)->thr_ptr = regs->r3;
187 } else {
188 /* Normal fork case: set parent's TLS ptr in child */
189 task_thread_info(p)->thr_ptr =
190 task_thread_info(current)->thr_ptr;
191 }
192
193 return 0;
194}
195
196/*
Vineet Gupta2ab402d2014-04-18 12:19:59 +0530197 * Do necessary setup to start up a new user task
198 */
199void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long usp)
200{
Vineet Gupta2ab402d2014-04-18 12:19:59 +0530201 regs->sp = usp;
202 regs->ret = pc;
203
204 /*
205 * [U]ser Mode bit set
206 * [L] ZOL loop inhibited to begin with - cleared by a LP insn
207 * Interrupts enabled
208 */
Vineet Gupta1f6ccff2013-05-13 18:30:41 +0530209 regs->status32 = STATUS_U_MASK | STATUS_L_MASK | ISA_INIT_STATUS_BITS;
Vineet Gupta2ab402d2014-04-18 12:19:59 +0530210
211 /* bogus seed values for debugging */
212 regs->lp_start = 0x10;
213 regs->lp_end = 0x80;
214}
215
216/*
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530217 * Some archs flush debug and FPU info here
218 */
219void flush_thread(void)
220{
221}
222
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530223int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
224{
225 return 0;
226}
227
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530228int elf_check_arch(const struct elf32_hdr *x)
229{
230 unsigned int eflags;
231
Vineet Gupta1f6ccff2013-05-13 18:30:41 +0530232 if (x->e_machine != EM_ARC_INUSE) {
233 pr_err("ELF not built for %s ISA\n",
234 is_isa_arcompact() ? "ARCompact":"ARCv2");
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530235 return 0;
Vineet Gupta1f6ccff2013-05-13 18:30:41 +0530236 }
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530237
238 eflags = x->e_flags;
Vineet Gupta840c0542016-08-10 14:10:57 -0700239 if ((eflags & EF_ARC_OSABI_MSK) != EF_ARC_OSABI_CURRENT) {
Vineet Guptabf90e1e2013-01-18 15:12:18 +0530240 pr_err("ABI mismatch - you need newer toolchain\n");
241 force_sigsegv(SIGSEGV, current);
242 return 0;
243 }
244
245 return 1;
246}
247EXPORT_SYMBOL(elf_check_arch);