blob: 4b0ca49bb463ef65f497213df54b1fea6e970af8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-h8300/processor.h
3 *
4 * Copyright (C) 2002 Yoshinori Sato
5 *
6 * Based on: linux/asm-m68nommu/processor.h
7 *
8 * Copyright (C) 1995 Hamish Macdonald
9 */
10
11#ifndef __ASM_H8300_PROCESSOR_H
12#define __ASM_H8300_PROCESSOR_H
13
14/*
15 * Default implementation of macro that returns current
16 * instruction pointer ("program counter").
17 */
18#define current_text_addr() ({ __label__ _l; _l: &&_l;})
19
Chase Ventersf6dc8c52006-07-08 11:10:29 -050020#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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 * User space process size: 3.75GB. This is hardcoded into a few places,
38 * so don't change it unless you know what you are doing.
39 */
40#define TASK_SIZE (0xFFFFFFFFUL)
41
David Howells922a70d2008-02-08 04:19:26 -080042#ifdef __KERNEL__
43#define STACK_TOP TASK_SIZE
44#define STACK_TOP_MAX STACK_TOP
45#endif
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * This decides where the kernel will search for a free chunk of vm
49 * space during mmap's. We won't be using it
50 */
51#define TASK_UNMAPPED_BASE 0
52
53struct thread_struct {
54 unsigned long ksp; /* kernel stack pointer */
55 unsigned long usp; /* user stack pointer */
56 unsigned long ccr; /* saved status register */
57 unsigned long esp0; /* points to SR of stack frame */
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 * Do necessary setup to start up a newly executed thread.
77 *
78 * pass the data segment into user programs if it exists,
79 * it can't hurt anything as far as I can tell
80 */
81#if defined(__H8300H__)
82#define start_thread(_regs, _pc, _usp) \
83do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 (_regs)->pc = (_pc); \
Yoshinori Sato8778beb2007-06-01 00:47:01 -070085 (_regs)->ccr = 0x00; /* clear all flags */ \
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 (_regs)->er5 = current->mm->start_data; /* GOT base */ \
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 { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 (_regs)->pc = (_pc); \
94 (_regs)->ccr = 0x00; /* clear kernel flag */ \
95 (_regs)->exr = 0x78; /* enable all interrupts */ \
96 (_regs)->er5 = current->mm->start_data; /* GOT base */ \
97 /* 14 = space for retaddr(4), vector(4), er0(4) and ext(2) on stack */ \
98 wrusp(((unsigned long)(_usp)) - 14); \
99} while(0)
100#endif
101
102/* Forward declaration, a strange C thing */
103struct task_struct;
104
105/* Free all resources held by a thread. */
106static inline void release_thread(struct task_struct *dead_task)
107{
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * Free current thread data structures etc..
112 */
113static inline void exit_thread(void)
114{
115}
116
117/*
118 * Return saved PC of a blocked thread.
119 */
120unsigned long thread_saved_pc(struct task_struct *tsk);
121unsigned long get_wchan(struct task_struct *p);
122
123#define KSTK_EIP(tsk) \
124 ({ \
125 unsigned long eip = 0; \
126 if ((tsk)->thread.esp0 > PAGE_SIZE && \
127 MAP_NR((tsk)->thread.esp0) < max_mapnr) \
128 eip = ((struct pt_regs *) (tsk)->thread.esp0)->pc; \
129 eip; })
130#define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
131
Chase Ventersf6dc8c52006-07-08 11:10:29 -0500132#define cpu_relax() barrier()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
David Howellsa5401ee2012-03-28 18:30:02 +0100134#define HARD_RESET_NOW() ({ \
135 local_irq_disable(); \
136 asm("jmp @@0"); \
137})
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#endif