1 #ifndef __ASM_BFIN_PROCESSOR_H
2 #define __ASM_BFIN_PROCESSOR_H
5 * Default implementation of macro that returns current
6 * instruction pointer ("program counter").
8 #define current_text_addr() ({ __label__ _l; _l: &&_l;})
10 #include <asm/blackfin.h>
11 #include <asm/segment.h>
12 #include <linux/compiler.h>
14 static inline unsigned long rdusp(void)
18 __asm__
__volatile__("%0 = usp;\n\t":"=da"(usp
));
22 static inline void wrusp(unsigned long usp
)
24 __asm__
__volatile__("usp = %0;\n\t"::"da"(usp
));
28 * User space process size: 1st byte beyond user address space.
29 * Fairly meaningless on nommu. Parts of user programs can be scattered
30 * in a lot of places, so just disable this by setting it to 0xFFFFFFFF.
32 #define TASK_SIZE 0xFFFFFFFF
35 #define STACK_TOP TASK_SIZE
38 #define TASK_UNMAPPED_BASE 0
40 struct thread_struct
{
41 unsigned long ksp
; /* kernel stack pointer */
42 unsigned long usp
; /* user stack pointer */
43 unsigned short seqstat
; /* saved status register */
44 unsigned long esp0
; /* points to SR of stack frame pt_regs */
45 unsigned long pc
; /* instruction pointer */
49 #define INIT_THREAD { \
50 sizeof(init_stack) + (unsigned long) init_stack, 0, \
55 * Do necessary setup to start up a newly executed thread.
57 * pass the data segment into user programs if it exists,
58 * it can't hurt anything as far as I can tell
60 #define start_thread(_regs, _pc, _usp) \
63 (_regs)->pc = (_pc); \
65 (_regs)->p5 = current->mm->start_data; \
66 task_thread_info(current)->l1_task_info.stack_start \
67 = (void *)current->mm->context.stack_start; \
68 task_thread_info(current)->l1_task_info.lowest_sp = (void *)(_usp); \
69 memcpy(L1_SCRATCH_TASK_INFO, &task_thread_info(current)->l1_task_info, \
70 sizeof(*L1_SCRATCH_TASK_INFO)); \
74 /* Forward declaration, a strange C thing */
77 /* Free all resources held by a thread. */
78 static inline void release_thread(struct task_struct
*dead_task
)
82 #define prepare_to_copy(tsk) do { } while (0)
84 extern int kernel_thread(int (*fn
) (void *), void *arg
, unsigned long flags
);
87 * Free current thread data structures etc..
89 static inline void exit_thread(void)
94 * Return saved PC of a blocked thread.
96 #define thread_saved_pc(tsk) (tsk->thread.pc)
98 unsigned long get_wchan(struct task_struct
*p
);
100 #define KSTK_EIP(tsk) \
102 unsigned long eip = 0; \
103 if ((tsk)->thread.esp0 > PAGE_SIZE && \
104 MAP_NR((tsk)->thread.esp0) < max_mapnr) \
105 eip = ((struct pt_regs *) (tsk)->thread.esp0)->pc; \
107 #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
109 #define cpu_relax() barrier()
111 /* Get the Silicon Revision of the chip */
112 static inline uint32_t __pure
bfin_revid(void)
114 /* stored in the upper 4 bits */
115 uint32_t revid
= bfin_read_CHIPID() >> 28;
119 * Incorrect Revision Number in DSPID Register
122 switch (bfin_read16(_BOOTROM_GET_DXE_ADDRESS_TWI
)) {
137 static inline uint32_t __pure
bfin_compiled_revid(void)
139 #if defined(CONFIG_BF_REV_0_0)
141 #elif defined(CONFIG_BF_REV_0_1)
143 #elif defined(CONFIG_BF_REV_0_2)
145 #elif defined(CONFIG_BF_REV_0_3)
147 #elif defined(CONFIG_BF_REV_0_4)
149 #elif defined(CONFIG_BF_REV_0_5)
151 #elif defined(CONFIG_BF_REV_ANY)