2 * Copyright (C) 1995-1999 Gary Thomas, Paul Mackerras, Cort Dougan.
4 #ifndef _ASM_POWERPC_PPC_ASM_H
5 #define _ASM_POWERPC_PPC_ASM_H
7 #include <linux/stringify.h>
8 #include <linux/config.h>
9 #include <asm/asm-compat.h>
12 #error __FILE__ should only be used in assembler files
15 #define SZL (BITS_PER_LONG/8)
18 * Stuff for accurate CPU time accounting.
19 * These macros handle transitions between user and system state
20 * in exception entry and exit and accumulate time to the
21 * user_time and system_time fields in the paca.
24 #ifndef CONFIG_VIRT_CPU_ACCOUNTING
25 #define ACCOUNT_CPU_USER_ENTRY(ra, rb)
26 #define ACCOUNT_CPU_USER_EXIT(ra, rb)
28 #define ACCOUNT_CPU_USER_ENTRY(ra, rb) \
29 beq 2f; /* if from kernel mode */ \
31 mfspr ra,SPRN_PURR; /* get processor util. reg */ \
32 END_FTR_SECTION_IFSET(CPU_FTR_PURR); \
34 mftb ra; /* or get TB if no PURR */ \
35 END_FTR_SECTION_IFCLR(CPU_FTR_PURR); \
36 ld rb,PACA_STARTPURR(r13); \
37 std ra,PACA_STARTPURR(r13); \
38 subf rb,rb,ra; /* subtract start value */ \
39 ld ra,PACA_USER_TIME(r13); \
40 add ra,ra,rb; /* add on to user time */ \
41 std ra,PACA_USER_TIME(r13); \
44 #define ACCOUNT_CPU_USER_EXIT(ra, rb) \
46 mfspr ra,SPRN_PURR; /* get processor util. reg */ \
47 END_FTR_SECTION_IFSET(CPU_FTR_PURR); \
49 mftb ra; /* or get TB if no PURR */ \
50 END_FTR_SECTION_IFCLR(CPU_FTR_PURR); \
51 ld rb,PACA_STARTPURR(r13); \
52 std ra,PACA_STARTPURR(r13); \
53 subf rb,rb,ra; /* subtract start value */ \
54 ld ra,PACA_SYSTEM_TIME(r13); \
55 add ra,ra,rb; /* add on to user time */ \
56 std ra,PACA_SYSTEM_TIME(r13);
60 * Macros for storing registers into and loading registers from
64 #define SAVE_GPR(n, base) std n,GPR0+8*(n)(base)
65 #define REST_GPR(n, base) ld n,GPR0+8*(n)(base)
66 #define SAVE_NVGPRS(base) SAVE_8GPRS(14, base); SAVE_10GPRS(22, base)
67 #define REST_NVGPRS(base) REST_8GPRS(14, base); REST_10GPRS(22, base)
69 #define SAVE_GPR(n, base) stw n,GPR0+4*(n)(base)
70 #define REST_GPR(n, base) lwz n,GPR0+4*(n)(base)
71 #define SAVE_NVGPRS(base) SAVE_GPR(13, base); SAVE_8GPRS(14, base); \
73 #define REST_NVGPRS(base) REST_GPR(13, base); REST_8GPRS(14, base); \
78 #define SAVE_2GPRS(n, base) SAVE_GPR(n, base); SAVE_GPR(n+1, base)
79 #define SAVE_4GPRS(n, base) SAVE_2GPRS(n, base); SAVE_2GPRS(n+2, base)
80 #define SAVE_8GPRS(n, base) SAVE_4GPRS(n, base); SAVE_4GPRS(n+4, base)
81 #define SAVE_10GPRS(n, base) SAVE_8GPRS(n, base); SAVE_2GPRS(n+8, base)
82 #define REST_2GPRS(n, base) REST_GPR(n, base); REST_GPR(n+1, base)
83 #define REST_4GPRS(n, base) REST_2GPRS(n, base); REST_2GPRS(n+2, base)
84 #define REST_8GPRS(n, base) REST_4GPRS(n, base); REST_4GPRS(n+4, base)
85 #define REST_10GPRS(n, base) REST_8GPRS(n, base); REST_2GPRS(n+8, base)
87 #define SAVE_FPR(n, base) stfd n,THREAD_FPR0+8*(n)(base)
88 #define SAVE_2FPRS(n, base) SAVE_FPR(n, base); SAVE_FPR(n+1, base)
89 #define SAVE_4FPRS(n, base) SAVE_2FPRS(n, base); SAVE_2FPRS(n+2, base)
90 #define SAVE_8FPRS(n, base) SAVE_4FPRS(n, base); SAVE_4FPRS(n+4, base)
91 #define SAVE_16FPRS(n, base) SAVE_8FPRS(n, base); SAVE_8FPRS(n+8, base)
92 #define SAVE_32FPRS(n, base) SAVE_16FPRS(n, base); SAVE_16FPRS(n+16, base)
93 #define REST_FPR(n, base) lfd n,THREAD_FPR0+8*(n)(base)
94 #define REST_2FPRS(n, base) REST_FPR(n, base); REST_FPR(n+1, base)
95 #define REST_4FPRS(n, base) REST_2FPRS(n, base); REST_2FPRS(n+2, base)
96 #define REST_8FPRS(n, base) REST_4FPRS(n, base); REST_4FPRS(n+4, base)
97 #define REST_16FPRS(n, base) REST_8FPRS(n, base); REST_8FPRS(n+8, base)
98 #define REST_32FPRS(n, base) REST_16FPRS(n, base); REST_16FPRS(n+16, base)
100 #define SAVE_VR(n,b,base) li b,THREAD_VR0+(16*(n)); stvx n,b,base
101 #define SAVE_2VRS(n,b,base) SAVE_VR(n,b,base); SAVE_VR(n+1,b,base)
102 #define SAVE_4VRS(n,b,base) SAVE_2VRS(n,b,base); SAVE_2VRS(n+2,b,base)
103 #define SAVE_8VRS(n,b,base) SAVE_4VRS(n,b,base); SAVE_4VRS(n+4,b,base)
104 #define SAVE_16VRS(n,b,base) SAVE_8VRS(n,b,base); SAVE_8VRS(n+8,b,base)
105 #define SAVE_32VRS(n,b,base) SAVE_16VRS(n,b,base); SAVE_16VRS(n+16,b,base)
106 #define REST_VR(n,b,base) li b,THREAD_VR0+(16*(n)); lvx n,b,base
107 #define REST_2VRS(n,b,base) REST_VR(n,b,base); REST_VR(n+1,b,base)
108 #define REST_4VRS(n,b,base) REST_2VRS(n,b,base); REST_2VRS(n+2,b,base)
109 #define REST_8VRS(n,b,base) REST_4VRS(n,b,base); REST_4VRS(n+4,b,base)
110 #define REST_16VRS(n,b,base) REST_8VRS(n,b,base); REST_8VRS(n+8,b,base)
111 #define REST_32VRS(n,b,base) REST_16VRS(n,b,base); REST_16VRS(n+16,b,base)
113 #define SAVE_EVR(n,s,base) evmergehi s,s,n; stw s,THREAD_EVR0+4*(n)(base)
114 #define SAVE_2EVRS(n,s,base) SAVE_EVR(n,s,base); SAVE_EVR(n+1,s,base)
115 #define SAVE_4EVRS(n,s,base) SAVE_2EVRS(n,s,base); SAVE_2EVRS(n+2,s,base)
116 #define SAVE_8EVRS(n,s,base) SAVE_4EVRS(n,s,base); SAVE_4EVRS(n+4,s,base)
117 #define SAVE_16EVRS(n,s,base) SAVE_8EVRS(n,s,base); SAVE_8EVRS(n+8,s,base)
118 #define SAVE_32EVRS(n,s,base) SAVE_16EVRS(n,s,base); SAVE_16EVRS(n+16,s,base)
119 #define REST_EVR(n,s,base) lwz s,THREAD_EVR0+4*(n)(base); evmergelo n,s,n
120 #define REST_2EVRS(n,s,base) REST_EVR(n,s,base); REST_EVR(n+1,s,base)
121 #define REST_4EVRS(n,s,base) REST_2EVRS(n,s,base); REST_2EVRS(n+2,s,base)
122 #define REST_8EVRS(n,s,base) REST_4EVRS(n,s,base); REST_4EVRS(n+4,s,base)
123 #define REST_16EVRS(n,s,base) REST_8EVRS(n,s,base); REST_8EVRS(n+8,s,base)
124 #define REST_32EVRS(n,s,base) REST_16EVRS(n,s,base); REST_16EVRS(n+16,s,base)
126 /* Macros to adjust thread priority for hardware multithreading */
127 #define HMT_VERY_LOW or 31,31,31 # very low priority
128 #define HMT_LOW or 1,1,1
129 #define HMT_MEDIUM_LOW or 6,6,6 # medium low priority
130 #define HMT_MEDIUM or 2,2,2
131 #define HMT_MEDIUM_HIGH or 5,5,5 # medium high priority
132 #define HMT_HIGH or 3,3,3
134 /* handle instructions that older assemblers may not know */
135 #define RFCI .long 0x4c000066 /* rfci instruction */
136 #define RFDI .long 0x4c00004e /* rfdi instruction */
137 #define RFMCI .long 0x4c00004c /* rfmci instruction */
142 #define XGLUE(a,b) a##b
143 #define GLUE(a,b) XGLUE(a,b)
145 #define _GLOBAL(name) \
149 .globl GLUE(.,name); \
150 .section ".opd","aw"; \
152 .quad GLUE(.,name); \
153 .quad .TOC.@tocbase; \
156 .type GLUE(.,name),@function; \
159 #define _KPROBE(name) \
160 .section ".kprobes.text","a"; \
163 .globl GLUE(.,name); \
164 .section ".opd","aw"; \
166 .quad GLUE(.,name); \
167 .quad .TOC.@tocbase; \
170 .type GLUE(.,name),@function; \
173 #define _STATIC(name) \
176 .section ".opd","aw"; \
178 .quad GLUE(.,name); \
179 .quad .TOC.@tocbase; \
182 .type GLUE(.,name),@function; \
189 .stabs __stringify(n:F-1),N_FUN,0,0,n;\
194 .section ".kprobes.text","a"; \
201 * LOAD_REG_IMMEDIATE(rn, expr)
202 * Loads the value of the constant expression 'expr' into register 'rn'
203 * using immediate instructions only. Use this when it's important not
204 * to reference other data (i.e. on ppc64 when the TOC pointer is not
207 * LOAD_REG_ADDR(rn, name)
208 * Loads the address of label 'name' into register 'rn'. Use this when
209 * you don't particularly need immediate instructions only, but you need
210 * the whole address in one register (e.g. it's a structure address and
211 * you want to access various offsets within it). On ppc32 this is
212 * identical to LOAD_REG_IMMEDIATE.
214 * LOAD_REG_ADDRBASE(rn, name)
216 * LOAD_REG_ADDRBASE loads part of the address of label 'name' into
217 * register 'rn'. ADDROFF(name) returns the remainder of the address as
218 * a constant expression. ADDROFF(name) is a signed expression < 16 bits
219 * in size, so is suitable for use directly as an offset in load and store
220 * instructions. Use this when loading/storing a single word or less as:
221 * LOAD_REG_ADDRBASE(rX, name)
222 * ld rY,ADDROFF(name)(rX)
225 #define LOAD_REG_IMMEDIATE(reg,expr) \
226 lis (reg),(expr)@highest; \
227 ori (reg),(reg),(expr)@higher; \
228 rldicr (reg),(reg),32,31; \
229 oris (reg),(reg),(expr)@h; \
230 ori (reg),(reg),(expr)@l;
232 #define LOAD_REG_ADDR(reg,name) \
233 ld (reg),name@got(r2)
235 #define LOAD_REG_ADDRBASE(reg,name) LOAD_REG_ADDR(reg,name)
236 #define ADDROFF(name) 0
238 /* offsets for stack frame layout */
243 #define LOAD_REG_IMMEDIATE(reg,expr) \
244 lis (reg),(expr)@ha; \
245 addi (reg),(reg),(expr)@l;
247 #define LOAD_REG_ADDR(reg,name) LOAD_REG_IMMEDIATE(reg, name)
249 #define LOAD_REG_ADDRBASE(reg, name) lis (reg),name@ha
250 #define ADDROFF(name) name@l
252 /* offsets for stack frame layout */
257 /* various errata or part fixups */
258 #ifdef CONFIG_PPC601_SYNC_FIX
263 END_FTR_SECTION_IFSET(CPU_FTR_601)
267 END_FTR_SECTION_IFSET(CPU_FTR_601)
271 END_FTR_SECTION_IFSET(CPU_FTR_601)
281 #else /* CONFIG_SMP */
282 /* tlbsync is not implemented on 601 */
287 END_FTR_SECTION_IFCLR(CPU_FTR_601)
292 * This instruction is not implemented on the PPC 603 or 601; however, on
293 * the 403GCX and 405GP tlbia IS defined and tlbie is not.
294 * All of these instructions exist in the 8xx, they have magical powers,
295 * and they must be used.
298 #if !defined(CONFIG_4xx) && !defined(CONFIG_8xx)
302 lis r4,KERNELBASE@h; \
309 #ifdef CONFIG_IBM440EP_ERR42
310 #define PPC440EP_ERR42 isync
312 #define PPC440EP_ERR42
316 #if defined(CONFIG_BOOKE)
320 #define tophys(rd,rs) \
323 #define tovirt(rd,rs) \
326 #elif defined(CONFIG_PPC64)
327 #define toreal(rd) /* we can access c000... in real mode */
330 #define tophys(rd,rs) \
333 #define tovirt(rd,rs) \
335 ori rd,rd,((KERNELBASE>>48)&0xFFFF);\
339 * On APUS (Amiga PowerPC cpu upgrade board), we don't know the
340 * physical base address of RAM at compile time.
342 #define toreal(rd) tophys(rd,rd)
343 #define fromreal(rd) tovirt(rd,rd)
345 #define tophys(rd,rs) \
346 0: addis rd,rs,-KERNELBASE@h; \
347 .section ".vtop_fixup","aw"; \
352 #define tovirt(rd,rs) \
353 0: addis rd,rs,KERNELBASE@h; \
354 .section ".ptov_fixup","aw"; \
362 #define MTMSRD(r) mtmsrd r
365 #define FIX_SRR1(ra, rb)
369 #define RFI rfi; b . /* Prevent prefetch past rfi */
371 #define MTMSRD(r) mtmsr r
375 #endif /* __KERNEL__ */
377 /* The boring bits... */
379 /* Condition Register Bit Fields */
391 /* General Purpose Registers (GPRs) */
427 /* Floating Point Registers (FPRs) */
462 /* AltiVec Registers (VPRs) */
497 /* SPE Registers (EVPRs) */
532 /* some stab codes */
538 #endif /* __ASSEMBLY__ */
540 #endif /* _ASM_POWERPC_PPC_ASM_H */