1
2
3
4
5
6
7
8
9
10
11#ifndef __ASM_H8300_PROCESSOR_H
12#define __ASM_H8300_PROCESSOR_H
13
14
15
16
17
18#define current_text_addr() ({ __label__ _l; _l: &&_l;})
19
20#include <linux/compiler.h>
21#include <asm/segment.h>
22#include <asm/fpu.h>
23#include <asm/ptrace.h>
24#include <asm/current.h>
25
26static inline unsigned long rdusp(void) {
27 extern unsigned int sw_usp;
28 return(sw_usp);
29}
30
31static inline void wrusp(unsigned long usp) {
32 extern unsigned int sw_usp;
33 sw_usp = usp;
34}
35
36
37
38
39
40#define TASK_SIZE (0xFFFFFFFFUL)
41
42#ifdef __KERNEL__
43#define STACK_TOP TASK_SIZE
44#define STACK_TOP_MAX STACK_TOP
45#endif
46
47
48
49
50
51#define TASK_UNMAPPED_BASE 0
52
53struct thread_struct {
54 unsigned long ksp;
55 unsigned long usp;
56 unsigned long ccr;
57 unsigned long esp0;
58 struct {
59 unsigned short *addr;
60 unsigned short inst;
61 } breakinfo;
62};
63
64#define INIT_THREAD { \
65 .ksp = sizeof(init_stack) + (unsigned long)init_stack, \
66 .usp = 0, \
67 .ccr = PS_S, \
68 .esp0 = 0, \
69 .breakinfo = { \
70 .addr = (unsigned short *)-1, \
71 .inst = 0 \
72 } \
73}
74
75
76
77
78
79
80
81#if defined(__H8300H__)
82#define start_thread(_regs, _pc, _usp) \
83do { \
84 (_regs)->pc = (_pc); \
85 (_regs)->ccr = 0x00; \
86 (_regs)->er5 = current->mm->start_data; \
87 wrusp((unsigned long)(_usp) - sizeof(unsigned long)*3); \
88} while(0)
89#endif
90#if defined(__H8300S__)
91#define start_thread(_regs, _pc, _usp) \
92do { \
93 (_regs)->pc = (_pc); \
94 (_regs)->ccr = 0x00; \
95 (_regs)->exr = 0x78; \
96 (_regs)->er5 = current->mm->start_data; \
97 \
98 wrusp(((unsigned long)(_usp)) - 14); \
99} while(0)
100#endif
101
102
103struct task_struct;
104
105
106static inline void release_thread(struct task_struct *dead_task)
107{
108}
109
110extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
111
112
113
114
115static inline void exit_thread(void)
116{
117}
118
119
120
121
122unsigned long thread_saved_pc(struct task_struct *tsk);
123unsigned long get_wchan(struct task_struct *p);
124
125#define KSTK_EIP(tsk) \
126 ({ \
127 unsigned long eip = 0; \
128 if ((tsk)->thread.esp0 > PAGE_SIZE && \
129 MAP_NR((tsk)->thread.esp0) < max_mapnr) \
130 eip = ((struct pt_regs *) (tsk)->thread.esp0)->pc; \
131 eip; })
132#define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
133
134#define cpu_relax() barrier()
135
136#define HARD_RESET_NOW() ({ \
137 local_irq_disable(); \
138 asm("jmp @@0"); \
139})
140
141#endif
142