]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/h8300/kernel/process.c
sched/headers: Prepare for new header dependencies before moving code to <linux/sched...
[karo-tx-linux.git] / arch / h8300 / kernel / process.c
1 /*
2  *  linux/arch/h8300/kernel/process.c
3  *
4  * Yoshinori Sato <ysato@users.sourceforge.jp>
5  *
6  *  Based on:
7  *
8  *  linux/arch/m68knommu/kernel/process.c
9  *
10  *  Copyright (C) 1998  D. Jeff Dionne <jeff@ryeham.ee.ryerson.ca>,
11  *                      Kenneth Albanowski <kjahds@kjahds.com>,
12  *                      The Silver Hammer Group, Ltd.
13  *
14  *  linux/arch/m68k/kernel/process.c
15  *
16  *  Copyright (C) 1995  Hamish Macdonald
17  *
18  *  68060 fixes by Jesper Skov
19  */
20
21 /*
22  * This file handles the architecture-dependent parts of process handling..
23  */
24
25 #include <linux/errno.h>
26 #include <linux/module.h>
27 #include <linux/sched.h>
28 #include <linux/sched/debug.h>
29 #include <linux/sched/task.h>
30 #include <linux/kernel.h>
31 #include <linux/mm.h>
32 #include <linux/smp.h>
33 #include <linux/stddef.h>
34 #include <linux/unistd.h>
35 #include <linux/ptrace.h>
36 #include <linux/user.h>
37 #include <linux/interrupt.h>
38 #include <linux/reboot.h>
39 #include <linux/fs.h>
40 #include <linux/slab.h>
41 #include <linux/rcupdate.h>
42
43 #include <linux/uaccess.h>
44 #include <asm/traps.h>
45 #include <asm/setup.h>
46 #include <asm/pgtable.h>
47
48 void (*pm_power_off)(void) = NULL;
49 EXPORT_SYMBOL(pm_power_off);
50
51 asmlinkage void ret_from_fork(void);
52 asmlinkage void ret_from_kernel_thread(void);
53
54 /*
55  * The idle loop on an H8/300..
56  */
57 void arch_cpu_idle(void)
58 {
59         local_irq_enable();
60         __asm__("sleep");
61 }
62
63 void machine_restart(char *__unused)
64 {
65         local_irq_disable();
66         __asm__("jmp @@0");
67 }
68
69 void machine_halt(void)
70 {
71         local_irq_disable();
72         __asm__("sleep");
73         for (;;)
74                 ;
75 }
76
77 void machine_power_off(void)
78 {
79         local_irq_disable();
80         __asm__("sleep");
81         for (;;)
82                 ;
83 }
84
85 void show_regs(struct pt_regs *regs)
86 {
87         show_regs_print_info(KERN_DEFAULT);
88
89         pr_notice("\n");
90         pr_notice("PC: %08lx  Status: %02x\n",
91                regs->pc, regs->ccr);
92         pr_notice("ORIG_ER0: %08lx ER0: %08lx ER1: %08lx\n",
93                regs->orig_er0, regs->er0, regs->er1);
94         pr_notice("ER2: %08lx ER3: %08lx ER4: %08lx ER5: %08lx\n",
95                regs->er2, regs->er3, regs->er4, regs->er5);
96         pr_notice("ER6' %08lx ", regs->er6);
97         if (user_mode(regs))
98                 printk("USP: %08lx\n", rdusp());
99         else
100                 printk("\n");
101 }
102
103 void flush_thread(void)
104 {
105 }
106
107 int copy_thread(unsigned long clone_flags,
108                 unsigned long usp, unsigned long topstk,
109                 struct task_struct *p)
110 {
111         struct pt_regs *childregs;
112
113         childregs = (struct pt_regs *) (THREAD_SIZE + task_stack_page(p)) - 1;
114
115         if (unlikely(p->flags & PF_KTHREAD)) {
116                 memset(childregs, 0, sizeof(struct pt_regs));
117                 childregs->retpc = (unsigned long) ret_from_kernel_thread;
118                 childregs->er4 = topstk; /* arg */
119                 childregs->er5 = usp; /* fn */
120         }  else {
121                 *childregs = *current_pt_regs();
122                 childregs->er0 = 0;
123                 childregs->retpc = (unsigned long) ret_from_fork;
124                 p->thread.usp = usp ?: rdusp();
125         }
126         p->thread.ksp = (unsigned long)childregs;
127
128         return 0;
129 }
130
131 unsigned long thread_saved_pc(struct task_struct *tsk)
132 {
133         return ((struct pt_regs *)tsk->thread.esp0)->pc;
134 }
135
136 unsigned long get_wchan(struct task_struct *p)
137 {
138         unsigned long fp, pc;
139         unsigned long stack_page;
140         int count = 0;
141
142         if (!p || p == current || p->state == TASK_RUNNING)
143                 return 0;
144
145         stack_page = (unsigned long)p;
146         fp = ((struct pt_regs *)p->thread.ksp)->er6;
147         do {
148                 if (fp < stack_page+sizeof(struct thread_info) ||
149                     fp >= 8184+stack_page)
150                         return 0;
151                 pc = ((unsigned long *)fp)[1];
152                 if (!in_sched_functions(pc))
153                         return pc;
154                 fp = *(unsigned long *) fp;
155         } while (count++ < 16);
156         return 0;
157 }
158
159 /* generic sys_clone is not enough registers */
160 asmlinkage int sys_clone(unsigned long __user *args)
161 {
162         unsigned long clone_flags;
163         unsigned long  newsp;
164         uintptr_t parent_tidptr;
165         uintptr_t child_tidptr;
166
167         get_user(clone_flags, &args[0]);
168         get_user(newsp, &args[1]);
169         get_user(parent_tidptr, &args[2]);
170         get_user(child_tidptr, &args[3]);
171         return do_fork(clone_flags, newsp, 0,
172                        (int __user *)parent_tidptr, (int __user *)child_tidptr);
173 }