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