]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - arch/m32r/kernel/process.c
sched/headers: Prepare for new header dependencies before moving code to <linux/sched...
[mirror_ubuntu-jammy-kernel.git] / arch / m32r / kernel / process.c
1 /*
2 * linux/arch/m32r/kernel/process.c
3 *
4 * Copyright (c) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata,
5 * Hitoshi Yamamoto
6 * Taken from sh version.
7 * Copyright (C) 1995 Linus Torvalds
8 * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima
9 */
10
11 #undef DEBUG_PROCESS
12 #ifdef DEBUG_PROCESS
13 #define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \
14 __func__, ##args)
15 #else
16 #define DPRINTK(fmt, args...)
17 #endif
18
19 /*
20 * This file handles the architecture-dependent parts of process handling..
21 */
22
23 #include <linux/fs.h>
24 #include <linux/slab.h>
25 #include <linux/sched/debug.h>
26 #include <linux/module.h>
27 #include <linux/ptrace.h>
28 #include <linux/unistd.h>
29 #include <linux/hardirq.h>
30 #include <linux/rcupdate.h>
31
32 #include <asm/io.h>
33 #include <linux/uaccess.h>
34 #include <asm/mmu_context.h>
35 #include <asm/elf.h>
36 #include <asm/m32r.h>
37
38 #include <linux/err.h>
39
40 /*
41 * Return saved PC of a blocked thread.
42 */
43 unsigned long thread_saved_pc(struct task_struct *tsk)
44 {
45 return tsk->thread.lr;
46 }
47
48 void (*pm_power_off)(void) = NULL;
49 EXPORT_SYMBOL(pm_power_off);
50
51 void machine_restart(char *__unused)
52 {
53 #if defined(CONFIG_PLAT_MAPPI3)
54 outw(1, (unsigned long)PLD_REBOOT);
55 #endif
56
57 printk("Please push reset button!\n");
58 while (1)
59 cpu_relax();
60 }
61
62 void machine_halt(void)
63 {
64 printk("Please push reset button!\n");
65 while (1)
66 cpu_relax();
67 }
68
69 void machine_power_off(void)
70 {
71 /* M32R_FIXME */
72 }
73
74 void show_regs(struct pt_regs * regs)
75 {
76 printk("\n");
77 show_regs_print_info(KERN_DEFAULT);
78
79 printk("BPC[%08lx]:PSW[%08lx]:LR [%08lx]:FP [%08lx]\n", \
80 regs->bpc, regs->psw, regs->lr, regs->fp);
81 printk("BBPC[%08lx]:BBPSW[%08lx]:SPU[%08lx]:SPI[%08lx]\n", \
82 regs->bbpc, regs->bbpsw, regs->spu, regs->spi);
83 printk("R0 [%08lx]:R1 [%08lx]:R2 [%08lx]:R3 [%08lx]\n", \
84 regs->r0, regs->r1, regs->r2, regs->r3);
85 printk("R4 [%08lx]:R5 [%08lx]:R6 [%08lx]:R7 [%08lx]\n", \
86 regs->r4, regs->r5, regs->r6, regs->r7);
87 printk("R8 [%08lx]:R9 [%08lx]:R10[%08lx]:R11[%08lx]\n", \
88 regs->r8, regs->r9, regs->r10, regs->r11);
89 printk("R12[%08lx]\n", \
90 regs->r12);
91
92 #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
93 printk("ACC0H[%08lx]:ACC0L[%08lx]\n", \
94 regs->acc0h, regs->acc0l);
95 printk("ACC1H[%08lx]:ACC1L[%08lx]\n", \
96 regs->acc1h, regs->acc1l);
97 #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
98 printk("ACCH[%08lx]:ACCL[%08lx]\n", \
99 regs->acc0h, regs->acc0l);
100 #else
101 #error unknown isa configuration
102 #endif
103 }
104
105 void flush_thread(void)
106 {
107 DPRINTK("pid = %d\n", current->pid);
108 memset(&current->thread.debug_trap, 0, sizeof(struct debug_trap));
109 }
110
111 void release_thread(struct task_struct *dead_task)
112 {
113 /* do nothing */
114 DPRINTK("pid = %d\n", dead_task->pid);
115 }
116
117 /* Fill in the fpu structure for a core dump.. */
118 int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
119 {
120 return 0; /* Task didn't use the fpu at all. */
121 }
122
123 int copy_thread(unsigned long clone_flags, unsigned long spu,
124 unsigned long arg, struct task_struct *tsk)
125 {
126 struct pt_regs *childregs = task_pt_regs(tsk);
127 extern void ret_from_fork(void);
128 extern void ret_from_kernel_thread(void);
129
130 if (unlikely(tsk->flags & PF_KTHREAD)) {
131 memset(childregs, 0, sizeof(struct pt_regs));
132 childregs->psw = M32R_PSW_BIE;
133 childregs->r1 = spu; /* fn */
134 childregs->r0 = arg;
135 tsk->thread.lr = (unsigned long)ret_from_kernel_thread;
136 } else {
137 /* Copy registers */
138 *childregs = *current_pt_regs();
139 if (spu)
140 childregs->spu = spu;
141 childregs->r0 = 0; /* Child gets zero as return value */
142 tsk->thread.lr = (unsigned long)ret_from_fork;
143 }
144 tsk->thread.sp = (unsigned long)childregs;
145
146 return 0;
147 }
148
149 /*
150 * These bracket the sleeping functions..
151 */
152 #define first_sched ((unsigned long) scheduling_functions_start_here)
153 #define last_sched ((unsigned long) scheduling_functions_end_here)
154
155 unsigned long get_wchan(struct task_struct *p)
156 {
157 /* M32R_FIXME */
158 return (0);
159 }