1 // SPDX-License-Identifier: GPL-2.0-only
3 * Port on Texas Instruments TMS320C6x architecture
5 * Copyright (C) 2004, 2006, 2009, 2010, 2011 Texas Instruments Incorporated
6 * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com)
8 #include <linux/module.h>
9 #include <linux/unistd.h>
10 #include <linux/ptrace.h>
11 #include <linux/init_task.h>
12 #include <linux/tick.h>
13 #include <linux/mqueue.h>
14 #include <linux/syscalls.h>
15 #include <linux/reboot.h>
16 #include <linux/sched/task.h>
17 #include <linux/sched/task_stack.h>
19 #include <asm/syscalls.h>
21 /* hooks for board specific support */
22 void (*c6x_restart
)(void);
23 void (*c6x_halt
)(void);
25 extern asmlinkage
void ret_from_fork(void);
26 extern asmlinkage
void ret_from_kernel_thread(void);
29 * power off function, if any
31 void (*pm_power_off
)(void);
32 EXPORT_SYMBOL(pm_power_off
);
34 void arch_cpu_idle(void)
39 * Put local_irq_enable and idle in same execute packet
40 * to make them atomic and avoid race to idle with
43 asm volatile (" mvc .s2 CSR,%0\n"
50 static void halt_loop(void)
52 printk(KERN_EMERG
"System Halted, OK to turn off power\n");
55 asm volatile("idle\n");
58 void machine_restart(char *__unused
)
65 void machine_halt(void)
72 void machine_power_off(void)
79 void flush_thread(void)
84 * Do necessary setup to start up a newly executed thread.
86 void start_thread(struct pt_regs
*regs
, unsigned int pc
, unsigned long usp
)
89 * The binfmt loader will setup a "full" stack, but the C6X
90 * operates an "empty" stack. So we adjust the usp so that
91 * argc doesn't get destroyed if an interrupt is taken before
92 * it is read from the stack.
94 * NB: Library startup code needs to match this.
100 regs
->tsr
|= 0x40; /* set user mode */
101 current
->thread
.usp
= usp
;
105 * Copy a new thread context in its stack.
107 int copy_thread(unsigned long clone_flags
, unsigned long usp
,
108 unsigned long ustk_size
, struct task_struct
*p
,
111 struct pt_regs
*childregs
;
113 childregs
= task_pt_regs(p
);
115 if (unlikely(p
->flags
& PF_KTHREAD
)) {
116 /* case of __kernel_thread: we return to supervisor space */
117 memset(childregs
, 0, sizeof(struct pt_regs
));
118 childregs
->sp
= (unsigned long)(childregs
+ 1);
119 p
->thread
.pc
= (unsigned long) ret_from_kernel_thread
;
120 childregs
->a0
= usp
; /* function */
121 childregs
->a1
= ustk_size
; /* argument */
123 /* Otherwise use the given stack */
124 *childregs
= *current_pt_regs();
127 p
->thread
.pc
= (unsigned long) ret_from_fork
;
131 p
->thread
.usp
= childregs
->sp
;
132 thread_saved_ksp(p
) = (unsigned long)childregs
- 8;
133 p
->thread
.wchan
= p
->thread
.pc
;
138 asm volatile ("mv .S2 b14,%0\n" : "=b"(dp
));
140 thread_saved_dp(p
) = dp
;
148 unsigned long get_wchan(struct task_struct
*p
)
150 return p
->thread
.wchan
;