blob: 3edbdb88110ee0880b3f1170880199f307a199fa [file] [log] [blame]
Mikael Starvik51533b62005-07-27 11:44:44 -07001/*
2 * Copyright (C) 2000-2003 Axis Communications AB
3 *
4 * Authors: Bjorn Wesen (bjornw@axis.com)
5 * Mikael Starvik (starvik@axis.com)
6 * Tobias Anderberg (tobiasa@axis.com), CRISv32 port.
7 *
8 * This file handles the architecture-dependent parts of process handling..
9 */
10
Mikael Starvik51533b62005-07-27 11:44:44 -070011#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Mikael Starvik51533b62005-07-27 11:44:44 -070013#include <linux/err.h>
14#include <linux/fs.h>
Jesper Nilsson8cca29b2007-12-03 10:54:15 +010015#include <hwregs/reg_rdwr.h>
16#include <hwregs/reg_map.h>
17#include <hwregs/timer_defs.h>
18#include <hwregs/intr_vect_defs.h>
Al Viro69b58a62012-10-03 14:46:55 -040019#include <asm/ptrace.h>
Mikael Starvik51533b62005-07-27 11:44:44 -070020
21extern void stop_watchdog(void);
22
Mikael Starvik51533b62005-07-27 11:44:44 -070023extern int cris_hlt_counter;
24
25/* We use this if we don't have any better idle routine. */
26void default_idle(void)
27{
28 local_irq_disable();
29 if (!need_resched() && !cris_hlt_counter) {
30 /* Halt until exception. */
31 __asm__ volatile("ei \n\t"
32 "halt ");
33 }
34 local_irq_enable();
35}
36
37/*
38 * Free current thread data structures etc..
39 */
40
41extern void deconfigure_bp(long pid);
42void exit_thread(void)
43{
44 deconfigure_bp(current->pid);
45}
46
47/*
48 * If the watchdog is enabled, disable interrupts and enter an infinite loop.
49 * The watchdog will reset the CPU after 0.1s. If the watchdog isn't enabled
50 * then enable it and wait.
51 */
52extern void arch_enable_nmi(void);
53
54void
55hard_reset_now(void)
56{
57 /*
58 * Don't declare this variable elsewhere. We don't want any other
59 * code to know about it than the watchdog handler in entry.S and
60 * this code, implementing hard reset through the watchdog.
61 */
62#if defined(CONFIG_ETRAX_WATCHDOG)
63 extern int cause_of_death;
64#endif
65
66 printk("*** HARD RESET ***\n");
67 local_irq_disable();
68
69#if defined(CONFIG_ETRAX_WATCHDOG)
70 cause_of_death = 0xbedead;
71#else
72{
73 reg_timer_rw_wd_ctrl wd_ctrl = {0};
74
75 stop_watchdog();
76
77 wd_ctrl.key = 16; /* Arbitrary key. */
78 wd_ctrl.cnt = 1; /* Minimum time. */
79 wd_ctrl.cmd = regk_timer_start;
80
81 arch_enable_nmi();
Jesper Nilsson8cca29b2007-12-03 10:54:15 +010082 REG_WR(timer, regi_timer0, rw_wd_ctrl, wd_ctrl);
Mikael Starvik51533b62005-07-27 11:44:44 -070083}
84#endif
85
86 while (1)
87 ; /* Wait for reset. */
88}
89
90/*
91 * Return saved PC of a blocked thread.
92 */
93unsigned long thread_saved_pc(struct task_struct *t)
94{
Al Viro95ca0dc2006-01-12 01:06:03 -080095 return task_pt_regs(t)->erp;
Mikael Starvik51533b62005-07-27 11:44:44 -070096}
97
Mikael Starvik51533b62005-07-27 11:44:44 -070098/*
99 * Setup the child's kernel stack with a pt_regs and call switch_stack() on it.
100 * It will be unnested during _resume and _ret_from_sys_call when the new thread
101 * is scheduled.
102 *
103 * Also setup the thread switching structure which is used to keep
104 * thread-specific data during _resumes.
105 */
106
107extern asmlinkage void ret_from_fork(void);
Al Viro69b58a62012-10-03 14:46:55 -0400108extern asmlinkage void ret_from_kernel_thread(void);
Mikael Starvik51533b62005-07-27 11:44:44 -0700109
110int
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700111copy_thread(unsigned long clone_flags, unsigned long usp,
Al Viro69b58a62012-10-03 14:46:55 -0400112 unsigned long arg,
Mikael Starvik51533b62005-07-27 11:44:44 -0700113 struct task_struct *p, struct pt_regs *regs)
114{
Al Viro69b58a62012-10-03 14:46:55 -0400115 struct pt_regs *childregs = task_pt_regs(p);
116 struct switch_stack *swstack = ((struct switch_stack *) childregs) - 1;
Mikael Starvik51533b62005-07-27 11:44:44 -0700117
118 /*
119 * Put the pt_regs structure at the end of the new kernel stack page and
120 * fix it up. Note: the task_struct doubles as the kernel stack for the
121 * task.
122 */
Al Viro69b58a62012-10-03 14:46:55 -0400123 if (unlikely(p->flags & PF_KTHREAD)) {
124 memset(swstack, 0,
125 sizeof(struct switch_stack) + sizeof(struct pt_regs));
126 swstack->r1 = usp;
127 swstack->r2 = arg;
128 childregs->ccs = 1 << (I_CCS_BITNR + CCS_SHIFT);
129 swstack->return_ip = (unsigned long) ret_from_kernel_thread;
130 p->thread.ksp = (unsigned long) swstack;
131 p->thread.usp = 0;
132 return 0;
133 }
Mikael Starvik51533b62005-07-27 11:44:44 -0700134 *childregs = *regs; /* Struct copy of pt_regs. */
Mikael Starvik51533b62005-07-27 11:44:44 -0700135 childregs->r10 = 0; /* Child returns 0 after a fork/clone. */
136
137 /* Set a new TLS ?
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300138 * The TLS is in $mof because it is the 5th argument to sys_clone.
Mikael Starvik51533b62005-07-27 11:44:44 -0700139 */
140 if (p->mm && (clone_flags & CLONE_SETTLS)) {
Al Viro718d6112006-01-12 01:06:04 -0800141 task_thread_info(p)->tls = regs->mof;
Mikael Starvik51533b62005-07-27 11:44:44 -0700142 }
143
144 /* Put the switch stack right below the pt_regs. */
Mikael Starvik51533b62005-07-27 11:44:44 -0700145
Simon Arlott49b4ff32007-10-20 01:08:50 +0200146 /* Parameter to ret_from_sys_call. 0 is don't restart the syscall. */
Mikael Starvik51533b62005-07-27 11:44:44 -0700147 swstack->r9 = 0;
148
149 /*
150 * We want to return into ret_from_sys_call after the _resume.
151 * ret_from_fork will call ret_from_sys_call.
152 */
153 swstack->return_ip = (unsigned long) ret_from_fork;
154
155 /* Fix the user-mode and kernel-mode stackpointer. */
156 p->thread.usp = usp;
157 p->thread.ksp = (unsigned long) swstack;
158
159 return 0;
160}
161
Mikael Starvik51533b62005-07-27 11:44:44 -0700162asmlinkage int
Al Viro69b58a62012-10-03 14:46:55 -0400163sys_fork(void)
Mikael Starvik51533b62005-07-27 11:44:44 -0700164{
Al Viro69b58a62012-10-03 14:46:55 -0400165 return do_fork(SIGCHLD, rdusp(), current_pt_regs(), 0, NULL, NULL);
Mikael Starvik51533b62005-07-27 11:44:44 -0700166}
167
168/* FIXME: Is parent_tid/child_tid really third/fourth argument? Update lib? */
169asmlinkage int
170sys_clone(unsigned long newusp, unsigned long flags, int *parent_tid, int *child_tid,
Al Viro69b58a62012-10-03 14:46:55 -0400171 unsigned long tls)
Mikael Starvik51533b62005-07-27 11:44:44 -0700172{
173 if (!newusp)
174 newusp = rdusp();
175
Al Viro69b58a62012-10-03 14:46:55 -0400176 return do_fork(flags, newusp, current_pt_regs(), 0, parent_tid, child_tid);
Mikael Starvik51533b62005-07-27 11:44:44 -0700177}
178
179/*
180 * vfork is a system call in i386 because of register-pressure - maybe
181 * we can remove it and handle it in libc but we put it here until then.
182 */
183asmlinkage int
Al Viro69b58a62012-10-03 14:46:55 -0400184sys_vfork(void)
Mikael Starvik51533b62005-07-27 11:44:44 -0700185{
Al Viro69b58a62012-10-03 14:46:55 -0400186 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, rdusp(), current_pt_regs(), 0, NULL, NULL);
Mikael Starvik51533b62005-07-27 11:44:44 -0700187}
188
189/* sys_execve() executes a new program. */
190asmlinkage int
David Howellsd7627462010-08-17 23:52:56 +0100191sys_execve(const char *fname,
192 const char *const *argv,
193 const char *const *envp, long r13, long mof, long srp,
194 struct pt_regs *regs)
Mikael Starvik51533b62005-07-27 11:44:44 -0700195{
196 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -0400197 struct filename *filename;
Mikael Starvik51533b62005-07-27 11:44:44 -0700198
199 filename = getname(fname);
200 error = PTR_ERR(filename);
201
202 if (IS_ERR(filename))
203 goto out;
204
Jeff Layton91a27b22012-10-10 15:25:28 -0400205 error = do_execve(filename->name, argv, envp, regs);
Mikael Starvik51533b62005-07-27 11:44:44 -0700206 putname(filename);
207 out:
208 return error;
209}
210
211unsigned long
212get_wchan(struct task_struct *p)
213{
214 /* TODO */
215 return 0;
216}
217#undef last_sched
218#undef first_sched
219
220void show_regs(struct pt_regs * regs)
221{
222 unsigned long usp = rdusp();
223 printk("ERP: %08lx SRP: %08lx CCS: %08lx USP: %08lx MOF: %08lx\n",
224 regs->erp, regs->srp, regs->ccs, usp, regs->mof);
225
226 printk(" r0: %08lx r1: %08lx r2: %08lx r3: %08lx\n",
227 regs->r0, regs->r1, regs->r2, regs->r3);
228
229 printk(" r4: %08lx r5: %08lx r6: %08lx r7: %08lx\n",
230 regs->r4, regs->r5, regs->r6, regs->r7);
231
232 printk(" r8: %08lx r9: %08lx r10: %08lx r11: %08lx\n",
233 regs->r8, regs->r9, regs->r10, regs->r11);
234
235 printk("r12: %08lx r13: %08lx oR10: %08lx\n",
236 regs->r12, regs->r13, regs->orig_r10);
237}