blob: a359898206e84603eca41bdf54ff3cae2c81d0ce [file] [log] [blame]
Paul Mundtaf3c7df2007-11-09 17:08:54 +09001/*
2 * include/asm-sh/processor.h
3 *
4 * Copyright (C) 1999, 2000 Niibe Yutaka
5 * Copyright (C) 2002, 2003 Paul Mundt
6 */
7
8#ifndef __ASM_SH_PROCESSOR_32_H
9#define __ASM_SH_PROCESSOR_32_H
10#ifdef __KERNEL__
11
12#include <linux/compiler.h>
Paul Mundtfa439722008-09-04 18:53:58 +090013#include <linux/linkage.h>
Paul Mundtaf3c7df2007-11-09 17:08:54 +090014#include <asm/page.h>
15#include <asm/types.h>
Paul Mundtaf3c7df2007-11-09 17:08:54 +090016#include <asm/ptrace.h>
Paul Mundtaf3c7df2007-11-09 17:08:54 +090017
18/*
19 * Default implementation of macro that returns current
20 * instruction pointer ("program counter").
21 */
Paul Mundt103340c2008-07-28 22:32:03 +090022#define current_text_addr() ({ void *pc; __asm__("mova 1f, %0\n.align 2\n1:":"=z" (pc)); pc; })
Paul Mundtaf3c7df2007-11-09 17:08:54 +090023
24/* Core Processor Version Register */
25#define CCN_PVR 0xff000030
26#define CCN_CVR 0xff000040
27#define CCN_PRR 0xff000044
28
Paul Mundtfa439722008-09-04 18:53:58 +090029asmlinkage void __init sh_cpu_init(void);
30
Paul Mundtaf3c7df2007-11-09 17:08:54 +090031/*
32 * User space process size: 2GB.
33 *
34 * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
35 */
36#define TASK_SIZE 0x7c000000UL
37
David Howells922a70d2008-02-08 04:19:26 -080038#define STACK_TOP TASK_SIZE
39#define STACK_TOP_MAX STACK_TOP
40
Paul Mundtaf3c7df2007-11-09 17:08:54 +090041/* This decides where the kernel will search for a free chunk of vm
42 * space during mmap's.
43 */
44#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
45
46/*
47 * Bit of SR register
48 *
49 * FD-bit:
50 * When it's set, it means the processor doesn't have right to use FPU,
51 * and it results exception when the floating operation is executed.
52 *
53 * IMASK-bit:
54 * Interrupt level mask
55 */
Paul Mundtaf3c7df2007-11-09 17:08:54 +090056#define SR_DSP 0x00001000
57#define SR_IMASK 0x000000f0
Paul Mundt9bbafce2008-03-26 19:02:47 +090058#define SR_FD 0x00008000
Stuart Menefyd3ea9fa2009-09-25 18:25:10 +010059#define SR_MD 0x40000000
Paul Mundtaf3c7df2007-11-09 17:08:54 +090060
61/*
Michael Trimarchi01ab1032009-04-03 17:32:33 +000062 * DSP structure and data
63 */
64struct sh_dsp_struct {
65 unsigned long dsp_regs[14];
66 long status;
67};
68
69/*
Paul Mundtaf3c7df2007-11-09 17:08:54 +090070 * FPU structure and data
71 */
72
73struct sh_fpu_hard_struct {
74 unsigned long fp_regs[16];
75 unsigned long xfp_regs[16];
76 unsigned long fpscr;
77 unsigned long fpul;
78
79 long status; /* software status information */
80};
81
82/* Dummy fpu emulator */
83struct sh_fpu_soft_struct {
84 unsigned long fp_regs[16];
85 unsigned long xfp_regs[16];
86 unsigned long fpscr;
87 unsigned long fpul;
88
89 unsigned char lookahead;
90 unsigned long entry_pc;
91};
92
Paul Mundt0ea820c2010-01-13 12:51:40 +090093union thread_xstate {
94 struct sh_fpu_hard_struct hardfpu;
95 struct sh_fpu_soft_struct softfpu;
Paul Mundtaf3c7df2007-11-09 17:08:54 +090096};
97
Paul Mundt0ea820c2010-01-13 12:51:40 +090098extern unsigned int xstate_size;
99extern void free_thread_xstate(struct task_struct *);
100extern struct kmem_cache *task_xstate_cachep;
101
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900102struct thread_struct {
103 /* Saved registers when thread is descheduled */
104 unsigned long sp;
105 unsigned long pc;
106
107 /* Hardware debugging registers */
108 unsigned long ubc_pc;
109
Michael Trimarchi01ab1032009-04-03 17:32:33 +0000110#ifdef CONFIG_SH_DSP
111 /* Dsp status information */
112 struct sh_dsp_struct dsp_status;
113#endif
Paul Mundt0ea820c2010-01-13 12:51:40 +0900114
115 /* Extended processor state */
116 union thread_xstate *xstate;
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900117};
118
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900119/* Count of active tasks with UBC settings */
120extern int ubc_usercnt;
121
122#define INIT_THREAD { \
123 .sp = sizeof(init_stack) + (long) &init_stack, \
124}
125
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900126/* Forward declaration, a strange C thing */
127struct task_struct;
Paul Mundt70e068e2010-01-12 18:52:00 +0900128
129extern void start_thread(struct pt_regs *regs, unsigned long new_pc, unsigned long new_sp);
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900130
131/* Free all resources held by a thread. */
132extern void release_thread(struct task_struct *);
133
134/* Prepare to copy thread state - unlazy all lazy status */
Stuart Menefyd3ea9fa2009-09-25 18:25:10 +0100135void prepare_to_copy(struct task_struct *tsk);
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900136
137/*
138 * create a kernel thread without removing it from tasklists
139 */
140extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
141
142/* Copy and release all segment info associated with a VM */
143#define copy_segments(p, mm) do { } while(0)
144#define release_segments(mm) do { } while(0)
145
146/*
147 * FPU lazy state save handling.
148 */
149
150static __inline__ void disable_fpu(void)
151{
152 unsigned long __dummy;
153
154 /* Set FD flag in SR */
155 __asm__ __volatile__("stc sr, %0\n\t"
156 "or %1, %0\n\t"
157 "ldc %0, sr"
158 : "=&r" (__dummy)
159 : "r" (SR_FD));
160}
161
162static __inline__ void enable_fpu(void)
163{
164 unsigned long __dummy;
165
166 /* Clear out FD flag in SR */
167 __asm__ __volatile__("stc sr, %0\n\t"
168 "and %1, %0\n\t"
169 "ldc %0, sr"
170 : "=&r" (__dummy)
171 : "r" (~SR_FD));
172}
173
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900174/* Double presision, NANS as NANS, rounding to nearest, no exceptions */
175#define FPSCR_INIT 0x00080000
176
177#define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */
178#define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */
179
180/*
181 * Return saved PC of a blocked thread.
182 */
183#define thread_saved_pc(tsk) (tsk->thread.pc)
184
185void show_trace(struct task_struct *tsk, unsigned long *sp,
186 struct pt_regs *regs);
Paul Mundt5d2685d2008-12-17 15:56:06 +0900187
188#ifdef CONFIG_DUMP_CODE
Paul Mundt9cfc9a92008-11-26 14:31:03 +0900189void show_code(struct pt_regs *regs);
Paul Mundt5d2685d2008-12-17 15:56:06 +0900190#else
191static inline void show_code(struct pt_regs *regs)
192{
193}
194#endif
195
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900196extern unsigned long get_wchan(struct task_struct *p);
197
198#define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
199#define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[15])
200
Roel Kluindc66ff62009-01-22 15:16:14 +0000201#define user_stack_pointer(_regs) ((_regs)->regs[15])
Paul Mundt9996b422008-09-12 22:11:36 +0900202
Paul Mundta73090ff2009-02-27 16:42:05 +0900203#if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH4)
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900204#define PREFETCH_STRIDE L1_CACHE_BYTES
205#define ARCH_HAS_PREFETCH
206#define ARCH_HAS_PREFETCHW
207static inline void prefetch(void *x)
208{
209 __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
210}
211
212#define prefetchw(x) prefetch(x)
213#endif
214
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900215#endif /* __KERNEL__ */
216#endif /* __ASM_SH_PROCESSOR_32_H */