blob: a1deed85f31d087dd87f9f2bc8b8269e73c2d308 [file] [log] [blame]
Paul Mackerras9f04b9e2005-10-10 14:19:43 +10001#ifndef _ASM_POWERPC_PROCESSOR_H
2#define _ASM_POWERPC_PROCESSOR_H
3
4/*
5 * Copyright (C) 2001 PPC 64 Team, IBM Corp
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100013#include <asm/reg.h>
14
15#ifndef __ASSEMBLY__
16#include <linux/compiler.h>
17#include <asm/ptrace.h>
18#include <asm/types.h>
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100019
Paul Mackerras799d6042005-11-10 13:37:51 +110020/* We do _not_ want to define new machine types at all, those must die
21 * in favor of using the device-tree
22 * -- BenH.
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100023 */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100024
Paul Mackerras799d6042005-11-10 13:37:51 +110025/* PREP sub-platform types see residual.h for these */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100026#define _PREP_Motorola 0x01 /* motorola prep */
27#define _PREP_Firm 0x02 /* firmworks prep */
28#define _PREP_IBM 0x00 /* ibm prep */
29#define _PREP_Bull 0x03 /* bull prep */
30
Paul Mackerras799d6042005-11-10 13:37:51 +110031/* CHRP sub-platform types. These are arbitrary */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100032#define _CHRP_Motorola 0x04 /* motorola chrp, the cobra */
33#define _CHRP_IBM 0x05 /* IBM chrp, the longtrail and longtrail 2 */
34#define _CHRP_Pegasos 0x06 /* Genesi/bplan's Pegasos and Pegasos2 */
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +100035#define _CHRP_briq 0x07 /* TotalImpact's briQ */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100036
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110037#if defined(__KERNEL__) && defined(CONFIG_PPC32)
38
39extern int _chrp_type;
Paul Mackerras799d6042005-11-10 13:37:51 +110040
Paul Mackerras0a26b132006-03-28 10:22:10 +110041#ifdef CONFIG_PPC_PREP
Paul Mackerras799d6042005-11-10 13:37:51 +110042
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100043/* what kind of prep workstation we are */
44extern int _prep_type;
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100045
Paul Mackerras0a26b132006-03-28 10:22:10 +110046#endif /* CONFIG_PPC_PREP */
47
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110048#endif /* defined(__KERNEL__) && defined(CONFIG_PPC32) */
49
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100050/*
51 * Default implementation of macro that returns current
52 * instruction pointer ("program counter").
53 */
54#define current_text_addr() ({ __label__ _l; _l: &&_l;})
55
56/* Macros for adjusting thread priority (hardware multi-threading) */
57#define HMT_very_low() asm volatile("or 31,31,31 # very low priority")
58#define HMT_low() asm volatile("or 1,1,1 # low priority")
59#define HMT_medium_low() asm volatile("or 6,6,6 # medium low priority")
60#define HMT_medium() asm volatile("or 2,2,2 # medium priority")
61#define HMT_medium_high() asm volatile("or 5,5,5 # medium high priority")
62#define HMT_high() asm volatile("or 3,3,3 # high priority")
63
64#ifdef __KERNEL__
65
66extern int have_of;
67
68struct task_struct;
69void start_thread(struct pt_regs *regs, unsigned long fdptr, unsigned long sp);
70void release_thread(struct task_struct *);
71
72/* Prepare to copy thread state - unlazy all lazy status */
73extern void prepare_to_copy(struct task_struct *tsk);
74
75/* Create a new kernel thread. */
76extern long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
77
78/* Lazy FPU handling on uni-processor */
79extern struct task_struct *last_task_used_math;
80extern struct task_struct *last_task_used_altivec;
81extern struct task_struct *last_task_used_spe;
82
83#ifdef CONFIG_PPC32
Rune Torgersen7c4f10b2008-05-24 01:59:15 +100084
85#if CONFIG_TASK_SIZE > CONFIG_KERNEL_START
86#error User TASK_SIZE overlaps with KERNEL_START address
87#endif
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100088#define TASK_SIZE (CONFIG_TASK_SIZE)
89
90/* This decides where the kernel will search for a free chunk of vm
91 * space during mmap's.
92 */
93#define TASK_UNMAPPED_BASE (TASK_SIZE / 8 * 3)
94#endif
95
96#ifdef CONFIG_PPC64
97/* 64-bit user address space is 44-bits (16TB user VM) */
98#define TASK_SIZE_USER64 (0x0000100000000000UL)
99
100/*
101 * 32-bit user address space is 4GB - 1 page
102 * (this 1 page is needed so referencing of 0xFFFFFFFF generates EFAULT
103 */
104#define TASK_SIZE_USER32 (0x0000000100000000UL - (1*PAGE_SIZE))
105
Dave Hansen82455252008-02-04 22:28:59 -0800106#define TASK_SIZE_OF(tsk) (test_tsk_thread_flag(tsk, TIF_32BIT) ? \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000107 TASK_SIZE_USER32 : TASK_SIZE_USER64)
Dave Hansen82455252008-02-04 22:28:59 -0800108#define TASK_SIZE TASK_SIZE_OF(current)
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000109
110/* This decides where the kernel will search for a free chunk of vm
111 * space during mmap's.
112 */
113#define TASK_UNMAPPED_BASE_USER32 (PAGE_ALIGN(TASK_SIZE_USER32 / 4))
114#define TASK_UNMAPPED_BASE_USER64 (PAGE_ALIGN(TASK_SIZE_USER64 / 4))
115
116#define TASK_UNMAPPED_BASE ((test_thread_flag(TIF_32BIT)) ? \
117 TASK_UNMAPPED_BASE_USER32 : TASK_UNMAPPED_BASE_USER64 )
118#endif
119
David Howells922a70d2008-02-08 04:19:26 -0800120#ifdef __KERNEL__
121#ifdef __powerpc64__
122
123#define STACK_TOP_USER64 TASK_SIZE_USER64
124#define STACK_TOP_USER32 TASK_SIZE_USER32
125
126#define STACK_TOP (test_thread_flag(TIF_32BIT) ? \
127 STACK_TOP_USER32 : STACK_TOP_USER64)
128
129#define STACK_TOP_MAX STACK_TOP_USER64
130
131#else /* __powerpc64__ */
132
133#define STACK_TOP TASK_SIZE
134#define STACK_TOP_MAX STACK_TOP
135
136#endif /* __powerpc64__ */
137#endif /* __KERNEL__ */
138
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000139typedef struct {
140 unsigned long seg;
141} mm_segment_t;
142
143struct thread_struct {
144 unsigned long ksp; /* Kernel stack pointer */
Kumar Gala85218822008-04-28 16:21:22 +1000145 unsigned long ksp_limit; /* if ksp <= ksp_limit stack overflow */
146
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000147#ifdef CONFIG_PPC64
148 unsigned long ksp_vsid;
149#endif
150 struct pt_regs *regs; /* Pointer to saved register state */
151 mm_segment_t fs; /* for get_fs() validation */
152#ifdef CONFIG_PPC32
153 void *pgdir; /* root of page-table tree */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000154#endif
155#if defined(CONFIG_4xx) || defined (CONFIG_BOOKE)
156 unsigned long dbcr0; /* debug control register values */
157 unsigned long dbcr1;
158#endif
159 double fpr[32]; /* Complete floating point set */
David Gibson25c8a782005-10-27 16:27:25 +1000160 struct { /* fpr ... fpscr must be contiguous */
161
162 unsigned int pad;
163 unsigned int val; /* Floating point status */
164 } fpscr;
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000165 int fpexc_mode; /* floating-point exception mode */
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000166 unsigned int align_ctl; /* alignment handling control */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000167#ifdef CONFIG_PPC64
168 unsigned long start_tb; /* Start purr when proc switched in */
169 unsigned long accum_tb; /* Total accumilated purr for process */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000170#endif
171 unsigned long dabr; /* Data address breakpoint register */
172#ifdef CONFIG_ALTIVEC
173 /* Complete AltiVec register set */
Mike Frysingerfc624ea2007-07-15 13:36:09 +1000174 vector128 vr[32] __attribute__((aligned(16)));
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000175 /* AltiVec status */
Mike Frysingerfc624ea2007-07-15 13:36:09 +1000176 vector128 vscr __attribute__((aligned(16)));
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000177 unsigned long vrsave;
178 int used_vr; /* set if process has used altivec */
179#endif /* CONFIG_ALTIVEC */
180#ifdef CONFIG_SPE
181 unsigned long evr[32]; /* upper 32-bits of SPE regs */
182 u64 acc; /* Accumulator */
183 unsigned long spefscr; /* SPE & eFP status */
184 int used_spe; /* set if process has used spe */
185#endif /* CONFIG_SPE */
186};
187
188#define ARCH_MIN_TASKALIGN 16
189
190#define INIT_SP (sizeof(init_stack) + (unsigned long) &init_stack)
Kumar Gala85218822008-04-28 16:21:22 +1000191#define INIT_SP_LIMIT \
192 (_ALIGN_UP(sizeof(init_thread_info), 16) + (unsigned long) &init_stack)
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000193
194
195#ifdef CONFIG_PPC32
196#define INIT_THREAD { \
197 .ksp = INIT_SP, \
Kumar Gala85218822008-04-28 16:21:22 +1000198 .ksp_limit = INIT_SP_LIMIT, \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000199 .fs = KERNEL_DS, \
200 .pgdir = swapper_pg_dir, \
201 .fpexc_mode = MSR_FE0 | MSR_FE1, \
202}
203#else
204#define INIT_THREAD { \
205 .ksp = INIT_SP, \
Kumar Gala85218822008-04-28 16:21:22 +1000206 .ksp_limit = INIT_SP_LIMIT, \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000207 .regs = (struct pt_regs *)INIT_SP - 1, /* XXX bogus, I think */ \
208 .fs = KERNEL_DS, \
209 .fpr = {0}, \
David Gibson25c8a782005-10-27 16:27:25 +1000210 .fpscr = { .val = 0, }, \
Arnd Bergmannddf5f752006-06-20 02:30:33 +0200211 .fpexc_mode = 0, \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000212}
213#endif
214
215/*
216 * Return saved PC of a blocked thread. For now, this is the "user" PC
217 */
218#define thread_saved_pc(tsk) \
219 ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0)
220
221unsigned long get_wchan(struct task_struct *p);
222
223#define KSTK_EIP(tsk) ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0)
224#define KSTK_ESP(tsk) ((tsk)->thread.regs? (tsk)->thread.regs->gpr[1]: 0)
225
226/* Get/set floating-point exception mode */
227#define GET_FPEXC_CTL(tsk, adr) get_fpexc_mode((tsk), (adr))
228#define SET_FPEXC_CTL(tsk, val) set_fpexc_mode((tsk), (val))
229
230extern int get_fpexc_mode(struct task_struct *tsk, unsigned long adr);
231extern int set_fpexc_mode(struct task_struct *tsk, unsigned int val);
232
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000233#define GET_ENDIAN(tsk, adr) get_endian((tsk), (adr))
234#define SET_ENDIAN(tsk, val) set_endian((tsk), (val))
235
236extern int get_endian(struct task_struct *tsk, unsigned long adr);
237extern int set_endian(struct task_struct *tsk, unsigned int val);
238
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000239#define GET_UNALIGN_CTL(tsk, adr) get_unalign_ctl((tsk), (adr))
240#define SET_UNALIGN_CTL(tsk, val) set_unalign_ctl((tsk), (val))
241
242extern int get_unalign_ctl(struct task_struct *tsk, unsigned long adr);
243extern int set_unalign_ctl(struct task_struct *tsk, unsigned int val);
244
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000245static inline unsigned int __unpack_fe01(unsigned long msr_bits)
246{
247 return ((msr_bits & MSR_FE0) >> 10) | ((msr_bits & MSR_FE1) >> 8);
248}
249
250static inline unsigned long __pack_fe01(unsigned int fpmode)
251{
252 return ((fpmode << 10) & MSR_FE0) | ((fpmode << 8) & MSR_FE1);
253}
254
255#ifdef CONFIG_PPC64
256#define cpu_relax() do { HMT_low(); HMT_medium(); barrier(); } while (0)
257#else
258#define cpu_relax() barrier()
259#endif
260
Anton Blanchard2f251942006-03-27 11:46:18 +1100261/* Check that a certain kernel stack pointer is valid in task_struct p */
262int validate_sp(unsigned long sp, struct task_struct *p,
263 unsigned long nbytes);
264
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000265/*
266 * Prefetch macros.
267 */
268#define ARCH_HAS_PREFETCH
269#define ARCH_HAS_PREFETCHW
270#define ARCH_HAS_SPINLOCK_PREFETCH
271
272static inline void prefetch(const void *x)
273{
274 if (unlikely(!x))
275 return;
276
277 __asm__ __volatile__ ("dcbt 0,%0" : : "r" (x));
278}
279
280static inline void prefetchw(const void *x)
281{
282 if (unlikely(!x))
283 return;
284
285 __asm__ __volatile__ ("dcbtst 0,%0" : : "r" (x));
286}
287
288#define spin_lock_prefetch(x) prefetchw(x)
289
290#ifdef CONFIG_PPC64
291#define HAVE_ARCH_PICK_MMAP_LAYOUT
292#endif
293
294#endif /* __KERNEL__ */
295#endif /* __ASSEMBLY__ */
296#endif /* _ASM_POWERPC_PROCESSOR_H */