blob: b6311fd2d066a1db774409f1dac29f2b856290e4 [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 Mundt4352fc12010-01-05 19:06:45 +090016#include <asm/hw_breakpoint.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 Mundtaf3c7df2007-11-09 17:08:54 +090029/*
30 * User space process size: 2GB.
31 *
32 * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
33 */
34#define TASK_SIZE 0x7c000000UL
35
David Howells922a70d2008-02-08 04:19:26 -080036#define STACK_TOP TASK_SIZE
37#define STACK_TOP_MAX STACK_TOP
38
Paul Mundtaf3c7df2007-11-09 17:08:54 +090039/* This decides where the kernel will search for a free chunk of vm
40 * space during mmap's.
41 */
42#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
43
44/*
45 * Bit of SR register
46 *
47 * FD-bit:
48 * When it's set, it means the processor doesn't have right to use FPU,
49 * and it results exception when the floating operation is executed.
50 *
51 * IMASK-bit:
52 * Interrupt level mask
53 */
Paul Mundtaf3c7df2007-11-09 17:08:54 +090054#define SR_DSP 0x00001000
55#define SR_IMASK 0x000000f0
Paul Mundt9bbafce2008-03-26 19:02:47 +090056#define SR_FD 0x00008000
Stuart Menefyd3ea9fa2009-09-25 18:25:10 +010057#define SR_MD 0x40000000
Paul Mundtaf3c7df2007-11-09 17:08:54 +090058
59/*
Michael Trimarchi01ab1032009-04-03 17:32:33 +000060 * DSP structure and data
61 */
62struct sh_dsp_struct {
63 unsigned long dsp_regs[14];
64 long status;
65};
66
67/*
Paul Mundtaf3c7df2007-11-09 17:08:54 +090068 * FPU structure and data
69 */
70
71struct sh_fpu_hard_struct {
72 unsigned long fp_regs[16];
73 unsigned long xfp_regs[16];
74 unsigned long fpscr;
75 unsigned long fpul;
76
77 long status; /* software status information */
78};
79
80/* Dummy fpu emulator */
81struct sh_fpu_soft_struct {
82 unsigned long fp_regs[16];
83 unsigned long xfp_regs[16];
84 unsigned long fpscr;
85 unsigned long fpul;
86
87 unsigned char lookahead;
88 unsigned long entry_pc;
89};
90
Paul Mundt0ea820c2010-01-13 12:51:40 +090091union thread_xstate {
92 struct sh_fpu_hard_struct hardfpu;
93 struct sh_fpu_soft_struct softfpu;
Paul Mundtaf3c7df2007-11-09 17:08:54 +090094};
95
96struct thread_struct {
97 /* Saved registers when thread is descheduled */
98 unsigned long sp;
99 unsigned long pc;
100
Paul Mundt94ea5e42010-02-23 12:56:30 +0900101 /* Various thread flags, see SH_THREAD_xxx */
102 unsigned long flags;
103
Paul Mundt09a07292009-11-09 16:27:40 +0900104 /* Save middle states of ptrace breakpoints */
Paul Mundt94ea5e42010-02-23 12:56:30 +0900105 struct perf_event *ptrace_bps[HBP_NUM];
Michael Trimarchi01ab1032009-04-03 17:32:33 +0000106
107#ifdef CONFIG_SH_DSP
108 /* Dsp status information */
109 struct sh_dsp_struct dsp_status;
110#endif
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900111
Paul Mundt0ea820c2010-01-13 12:51:40 +0900112 /* Extended processor state */
113 union thread_xstate *xstate;
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900114};
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900115
116#define INIT_THREAD { \
117 .sp = sizeof(init_stack) + (long) &init_stack, \
Paul Mundt94ea5e42010-02-23 12:56:30 +0900118 .flags = 0, \
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900119}
120
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900121/* Forward declaration, a strange C thing */
122struct task_struct;
Paul Mundt70e068e2010-01-12 18:52:00 +0900123
124extern void start_thread(struct pt_regs *regs, unsigned long new_pc, unsigned long new_sp);
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900125
126/* Free all resources held by a thread. */
127extern void release_thread(struct task_struct *);
128
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900129/*
130 * create a kernel thread without removing it from tasklists
131 */
132extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
133
134/* Copy and release all segment info associated with a VM */
135#define copy_segments(p, mm) do { } while(0)
136#define release_segments(mm) do { } while(0)
137
138/*
139 * FPU lazy state save handling.
140 */
141
142static __inline__ void disable_fpu(void)
143{
144 unsigned long __dummy;
145
146 /* Set FD flag in SR */
147 __asm__ __volatile__("stc sr, %0\n\t"
148 "or %1, %0\n\t"
149 "ldc %0, sr"
150 : "=&r" (__dummy)
151 : "r" (SR_FD));
152}
153
154static __inline__ void enable_fpu(void)
155{
156 unsigned long __dummy;
157
158 /* Clear out FD flag in SR */
159 __asm__ __volatile__("stc sr, %0\n\t"
160 "and %1, %0\n\t"
161 "ldc %0, sr"
162 : "=&r" (__dummy)
163 : "r" (~SR_FD));
164}
165
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900166/* Double presision, NANS as NANS, rounding to nearest, no exceptions */
167#define FPSCR_INIT 0x00080000
168
169#define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */
170#define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */
171
172/*
173 * Return saved PC of a blocked thread.
174 */
175#define thread_saved_pc(tsk) (tsk->thread.pc)
176
177void show_trace(struct task_struct *tsk, unsigned long *sp,
178 struct pt_regs *regs);
Paul Mundt5d2685d2008-12-17 15:56:06 +0900179
180#ifdef CONFIG_DUMP_CODE
Paul Mundt9cfc9a92008-11-26 14:31:03 +0900181void show_code(struct pt_regs *regs);
Paul Mundt5d2685d2008-12-17 15:56:06 +0900182#else
183static inline void show_code(struct pt_regs *regs)
184{
185}
186#endif
187
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900188extern unsigned long get_wchan(struct task_struct *p);
189
190#define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
191#define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[15])
192
Paul Mundta73090ff2009-02-27 16:42:05 +0900193#if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH4)
Paul Mundtc81fc382011-01-11 14:39:35 +0900194
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900195#define PREFETCH_STRIDE L1_CACHE_BYTES
196#define ARCH_HAS_PREFETCH
197#define ARCH_HAS_PREFETCHW
Paul Mundtc81fc382011-01-11 14:39:35 +0900198
199static inline void prefetch(const void *x)
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900200{
Giuseppe CAVALLAROd53e4302010-11-17 06:50:17 +0000201 __builtin_prefetch(x, 0, 3);
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900202}
203
Paul Mundtc81fc382011-01-11 14:39:35 +0900204static inline void prefetchw(const void *x)
Giuseppe CAVALLAROd53e4302010-11-17 06:50:17 +0000205{
206 __builtin_prefetch(x, 1, 3);
207}
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900208#endif
209
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900210#endif /* __KERNEL__ */
211#endif /* __ASM_SH_PROCESSOR_32_H */