]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/h8300/kernel/process.c
arch: remove unused macro/function thread_saved_pc()
[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/sched/task_stack.h>
31 #include <linux/kernel.h>
32 #include <linux/mm.h>
33 #include <linux/smp.h>
34 #include <linux/stddef.h>
35 #include <linux/unistd.h>
36 #include <linux/ptrace.h>
37 #include <linux/user.h>
38 #include <linux/interrupt.h>
39 #include <linux/reboot.h>
40 #include <linux/fs.h>
41 #include <linux/slab.h>
42 #include <linux/rcupdate.h>
43
44 #include <linux/uaccess.h>
45 #include <asm/traps.h>
46 #include <asm/setup.h>
47 #include <asm/pgtable.h>
48
49 void (*pm_power_off)(void) = NULL;
50 EXPORT_SYMBOL(pm_power_off);
51
52 asmlinkage void ret_from_fork(void);
53 asmlinkage void ret_from_kernel_thread(void);
54
55 /*
56  * The idle loop on an H8/300..
57  */
58 void arch_cpu_idle(void)
59 {
60         local_irq_enable();
61         __asm__("sleep");
62 }
63
64 void machine_restart(char *__unused)
65 {
66         local_irq_disable();
67         __asm__("jmp @@0");
68 }
69
70 void machine_halt(void)
71 {
72         local_irq_disable();
73         __asm__("sleep");
74         for (;;)
75                 ;
76 }
77
78 void machine_power_off(void)
79 {
80         local_irq_disable();
81         __asm__("sleep");
82         for (;;)
83                 ;
84 }
85
86 void show_regs(struct pt_regs *regs)
87 {
88         show_regs_print_info(KERN_DEFAULT);
89
90         pr_notice("\n");
91         pr_notice("PC: %08lx  Status: %02x\n",
92                regs->pc, regs->ccr);
93         pr_notice("ORIG_ER0: %08lx ER0: %08lx ER1: %08lx\n",
94                regs->orig_er0, regs->er0, regs->er1);
95         pr_notice("ER2: %08lx ER3: %08lx ER4: %08lx ER5: %08lx\n",
96                regs->er2, regs->er3, regs->er4, regs->er5);
97         pr_notice("ER6' %08lx ", regs->er6);
98         if (user_mode(regs))
99                 printk("USP: %08lx\n", rdusp());
100         else
101                 printk("\n");
102 }
103
104 void flush_thread(void)
105 {
106 }
107
108 int copy_thread(unsigned long clone_flags,
109                 unsigned long usp, unsigned long topstk,
110                 struct task_struct *p)
111 {
112         struct pt_regs *childregs;
113
114         childregs = (struct pt_regs *) (THREAD_SIZE + task_stack_page(p)) - 1;
115
116         if (unlikely(p->flags & PF_KTHREAD)) {
117                 memset(childregs, 0, sizeof(struct pt_regs));
118                 childregs->retpc = (unsigned long) ret_from_kernel_thread;
119                 childregs->er4 = topstk; /* arg */
120                 childregs->er5 = usp; /* fn */
121         }  else {
122                 *childregs = *current_pt_regs();
123                 childregs->er0 = 0;
124                 childregs->retpc = (unsigned long) ret_from_fork;
125                 p->thread.usp = usp ?: rdusp();
126         }
127         p->thread.ksp = (unsigned long)childregs;
128
129         return 0;
130 }
131
132 unsigned long get_wchan(struct task_struct *p)
133 {
134         unsigned long fp, pc;
135         unsigned long stack_page;
136         int count = 0;
137
138         if (!p || p == current || p->state == TASK_RUNNING)
139                 return 0;
140
141         stack_page = (unsigned long)p;
142         fp = ((struct pt_regs *)p->thread.ksp)->er6;
143         do {
144                 if (fp < stack_page+sizeof(struct thread_info) ||
145                     fp >= 8184+stack_page)
146                         return 0;
147                 pc = ((unsigned long *)fp)[1];
148                 if (!in_sched_functions(pc))
149                         return pc;
150                 fp = *(unsigned long *) fp;
151         } while (count++ < 16);
152         return 0;
153 }
154
155 /* generic sys_clone is not enough registers */
156 asmlinkage int sys_clone(unsigned long __user *args)
157 {
158         unsigned long clone_flags;
159         unsigned long  newsp;
160         uintptr_t parent_tidptr;
161         uintptr_t child_tidptr;
162
163         get_user(clone_flags, &args[0]);
164         get_user(newsp, &args[1]);
165         get_user(parent_tidptr, &args[2]);
166         get_user(child_tidptr, &args[3]);
167         return do_fork(clone_flags, newsp, 0,
168                        (int __user *)parent_tidptr, (int __user *)child_tidptr);
169 }