process.c 3.7 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
P
Palmer Dabbelt 已提交
2 3 4 5 6 7 8 9
/*
 * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
 *  Chen Liqin <liqin.chen@sunplusct.com>
 *  Lennox Wu <lennox.wu@sunplusct.com>
 * Copyright (C) 2012 Regents of the University of California
 * Copyright (C) 2017 SiFive
 */

10
#include <linux/cpu.h>
P
Palmer Dabbelt 已提交
11 12 13 14 15
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/sched/task_stack.h>
#include <linux/tick.h>
#include <linux/ptrace.h>
16
#include <linux/uaccess.h>
P
Palmer Dabbelt 已提交
17 18 19 20 21 22

#include <asm/unistd.h>
#include <asm/processor.h>
#include <asm/csr.h>
#include <asm/string.h>
#include <asm/switch_to.h>
23
#include <asm/thread_info.h>
P
Palmer Dabbelt 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37

extern asmlinkage void ret_from_fork(void);
extern asmlinkage void ret_from_kernel_thread(void);

void arch_cpu_idle(void)
{
	wait_for_interrupt();
	local_irq_enable();
}

void show_regs(struct pt_regs *regs)
{
	show_regs_print_info(KERN_DEFAULT);

38 39
	pr_cont("epc: " REG_FMT " ra : " REG_FMT " sp : " REG_FMT "\n",
		regs->epc, regs->ra, regs->sp);
P
Palmer Dabbelt 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
	pr_cont(" gp : " REG_FMT " tp : " REG_FMT " t0 : " REG_FMT "\n",
		regs->gp, regs->tp, regs->t0);
	pr_cont(" t1 : " REG_FMT " t2 : " REG_FMT " s0 : " REG_FMT "\n",
		regs->t1, regs->t2, regs->s0);
	pr_cont(" s1 : " REG_FMT " a0 : " REG_FMT " a1 : " REG_FMT "\n",
		regs->s1, regs->a0, regs->a1);
	pr_cont(" a2 : " REG_FMT " a3 : " REG_FMT " a4 : " REG_FMT "\n",
		regs->a2, regs->a3, regs->a4);
	pr_cont(" a5 : " REG_FMT " a6 : " REG_FMT " a7 : " REG_FMT "\n",
		regs->a5, regs->a6, regs->a7);
	pr_cont(" s2 : " REG_FMT " s3 : " REG_FMT " s4 : " REG_FMT "\n",
		regs->s2, regs->s3, regs->s4);
	pr_cont(" s5 : " REG_FMT " s6 : " REG_FMT " s7 : " REG_FMT "\n",
		regs->s5, regs->s6, regs->s7);
	pr_cont(" s8 : " REG_FMT " s9 : " REG_FMT " s10: " REG_FMT "\n",
		regs->s8, regs->s9, regs->s10);
	pr_cont(" s11: " REG_FMT " t3 : " REG_FMT " t4 : " REG_FMT "\n",
		regs->s11, regs->t3, regs->t4);
	pr_cont(" t5 : " REG_FMT " t6 : " REG_FMT "\n",
		regs->t5, regs->t6);

61 62
	pr_cont("status: " REG_FMT " badaddr: " REG_FMT " cause: " REG_FMT "\n",
		regs->status, regs->badaddr, regs->cause);
P
Palmer Dabbelt 已提交
63 64 65 66 67
}

void start_thread(struct pt_regs *regs, unsigned long pc,
	unsigned long sp)
{
68
	regs->status = SR_PIE;
69
	if (has_fpu) {
70
		regs->status |= SR_FS_INITIAL;
71 72 73 74 75 76
		/*
		 * Restore the initial value to the FP register
		 * before starting the user program.
		 */
		fstate_restore(current, regs);
	}
77
	regs->epc = pc;
P
Palmer Dabbelt 已提交
78 79 80 81 82 83
	regs->sp = sp;
	set_fs(USER_DS);
}

void flush_thread(void)
{
A
Alan Kao 已提交
84
#ifdef CONFIG_FPU
P
Palmer Dabbelt 已提交
85
	/*
86
	 * Reset FPU state and context
P
Palmer Dabbelt 已提交
87 88 89
	 *	frm: round to nearest, ties to even (IEEE default)
	 *	fflags: accrued exceptions cleared
	 */
90
	fstate_off(current, task_pt_regs(current));
P
Palmer Dabbelt 已提交
91
	memset(&current->thread.fstate, 0, sizeof(current->thread.fstate));
A
Alan Kao 已提交
92
#endif
P
Palmer Dabbelt 已提交
93 94 95 96 97 98 99 100 101
}

int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
{
	fstate_save(src, task_pt_regs(src));
	*dst = *src;
	return 0;
}

102 103
int copy_thread_tls(unsigned long clone_flags, unsigned long usp,
	unsigned long arg, struct task_struct *p, unsigned long tls)
P
Palmer Dabbelt 已提交
104 105 106 107 108 109 110 111 112
{
	struct pt_regs *childregs = task_pt_regs(p);

	/* p->thread holds context to be restored by __switch_to() */
	if (unlikely(p->flags & PF_KTHREAD)) {
		/* Kernel thread */
		const register unsigned long gp __asm__ ("gp");
		memset(childregs, 0, sizeof(struct pt_regs));
		childregs->gp = gp;
113 114
		/* Supervisor/Machine, irqs on: */
		childregs->status = SR_PP | SR_PIE;
P
Palmer Dabbelt 已提交
115 116 117 118 119 120 121 122 123

		p->thread.ra = (unsigned long)ret_from_kernel_thread;
		p->thread.s[0] = usp; /* fn */
		p->thread.s[1] = arg;
	} else {
		*childregs = *(current_pt_regs());
		if (usp) /* User fork */
			childregs->sp = usp;
		if (clone_flags & CLONE_SETTLS)
124
			childregs->tp = tls;
P
Palmer Dabbelt 已提交
125 126 127 128 129 130
		childregs->a0 = 0; /* Return value of fork() */
		p->thread.ra = (unsigned long)ret_from_fork;
	}
	p->thread.sp = (unsigned long)childregs; /* kernel sp */
	return 0;
}