1 #ifndef _ASM_SCORE_PROCESSOR_H
2 #define _ASM_SCORE_PROCESSOR_H
4 #include <linux/cpumask.h>
5 #include <linux/threads.h>
7 #include <asm/segment.h>
12 * System setup and hardware flags..
14 extern void (*cpu_wait
)(void);
16 extern unsigned long thread_saved_pc(struct task_struct
*tsk
);
17 extern void start_thread(struct pt_regs
*regs
,
18 unsigned long pc
, unsigned long sp
);
19 extern unsigned long get_wchan(struct task_struct
*p
);
22 * Return current * instruction pointer ("program counter").
24 #define current_text_addr() ({ __label__ _l; _l: &&_l; })
26 #define cpu_relax() barrier()
27 #define release_thread(thread) do {} while (0)
30 * User space process size: 2GB. This is hardcoded into a few places,
31 * so don't change it unless you know what you are doing.
33 #define TASK_SIZE 0x7fff8000UL
36 * This decides where the kernel will search for a free chunk of vm
37 * space during mmap's.
39 #define TASK_UNMAPPED_BASE ((TASK_SIZE / 3) & ~(PAGE_SIZE))
42 #define STACK_TOP TASK_SIZE
43 #define STACK_TOP_MAX TASK_SIZE
47 * If you change thread_struct remember to change the #defines below too!
49 struct thread_struct
{
50 unsigned long reg0
, reg2
, reg3
;
51 unsigned long reg12
, reg13
, reg14
, reg15
, reg16
;
52 unsigned long reg17
, reg18
, reg19
, reg20
, reg21
;
54 unsigned long cp0_psr
;
55 unsigned long cp0_ema
; /* Last user fault */
56 unsigned long cp0_badvaddr
; /* Last user fault */
57 unsigned long cp0_baduaddr
; /* Last kernel fault accessing USEG */
58 unsigned long error_code
;
59 unsigned long trap_no
;
64 unsigned long single_step
;
65 unsigned long ss_nextcnt
;
67 unsigned long insn1_type
;
71 unsigned long insn2_type
;
75 mm_segment_t current_ds
;
78 #define INIT_THREAD { \
97 #define kstk_tos(tsk) \
98 ((unsigned long)task_stack_page(tsk) + THREAD_SIZE - 32)
99 #define task_pt_regs(tsk) ((struct pt_regs *)kstk_tos(tsk) - 1)
101 #define KSTK_EIP(tsk) (task_pt_regs(tsk)->cp0_epc)
102 #define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[29])
104 #endif /* _ASM_SCORE_PROCESSOR_H */