blob: 37f87f069cbf1ba3b5e0d59fc74856ec0d914f7e [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
Michael Neulingc6e67712008-06-25 14:07:18 +100015#ifdef CONFIG_VSX
16#define TS_FPRWIDTH 2
17#else
Michael Neuling9c75a312008-06-26 17:07:48 +100018#define TS_FPRWIDTH 1
Michael Neulingc6e67712008-06-25 14:07:18 +100019#endif
Michael Neuling9c75a312008-06-26 17:07:48 +100020
Haren Myneni92779242012-12-06 21:49:56 +000021#ifdef CONFIG_PPC64
22/* Default SMT priority is set to 3. Use 11- 13bits to save priority. */
23#define PPR_PRIORITY 3
24#ifdef __ASSEMBLY__
25#define INIT_PPR (PPR_PRIORITY << 50)
26#else
27#define INIT_PPR ((u64)PPR_PRIORITY << 50)
28#endif /* __ASSEMBLY__ */
29#endif /* CONFIG_PPC64 */
30
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100031#ifndef __ASSEMBLY__
32#include <linux/compiler.h>
Ashish Kalra1325a682011-04-22 16:48:27 -050033#include <linux/cache.h>
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100034#include <asm/ptrace.h>
35#include <asm/types.h>
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100036
Paul Mackerras799d6042005-11-10 13:37:51 +110037/* We do _not_ want to define new machine types at all, those must die
38 * in favor of using the device-tree
39 * -- BenH.
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100040 */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100041
Paul Mackerras799d6042005-11-10 13:37:51 +110042/* PREP sub-platform types see residual.h for these */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100043#define _PREP_Motorola 0x01 /* motorola prep */
44#define _PREP_Firm 0x02 /* firmworks prep */
45#define _PREP_IBM 0x00 /* ibm prep */
46#define _PREP_Bull 0x03 /* bull prep */
47
Paul Mackerras799d6042005-11-10 13:37:51 +110048/* CHRP sub-platform types. These are arbitrary */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100049#define _CHRP_Motorola 0x04 /* motorola chrp, the cobra */
50#define _CHRP_IBM 0x05 /* IBM chrp, the longtrail and longtrail 2 */
51#define _CHRP_Pegasos 0x06 /* Genesi/bplan's Pegasos and Pegasos2 */
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +100052#define _CHRP_briq 0x07 /* TotalImpact's briQ */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100053
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110054#if defined(__KERNEL__) && defined(CONFIG_PPC32)
55
56extern int _chrp_type;
Paul Mackerras799d6042005-11-10 13:37:51 +110057
Paul Mackerras0a26b132006-03-28 10:22:10 +110058#ifdef CONFIG_PPC_PREP
Paul Mackerras799d6042005-11-10 13:37:51 +110059
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100060/* what kind of prep workstation we are */
61extern int _prep_type;
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100062
Paul Mackerras0a26b132006-03-28 10:22:10 +110063#endif /* CONFIG_PPC_PREP */
64
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110065#endif /* defined(__KERNEL__) && defined(CONFIG_PPC32) */
66
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100067/*
68 * Default implementation of macro that returns current
69 * instruction pointer ("program counter").
70 */
71#define current_text_addr() ({ __label__ _l; _l: &&_l;})
72
73/* Macros for adjusting thread priority (hardware multi-threading) */
74#define HMT_very_low() asm volatile("or 31,31,31 # very low priority")
75#define HMT_low() asm volatile("or 1,1,1 # low priority")
76#define HMT_medium_low() asm volatile("or 6,6,6 # medium low priority")
77#define HMT_medium() asm volatile("or 2,2,2 # medium priority")
78#define HMT_medium_high() asm volatile("or 5,5,5 # medium high priority")
79#define HMT_high() asm volatile("or 3,3,3 # high priority")
80
81#ifdef __KERNEL__
82
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100083struct task_struct;
84void start_thread(struct pt_regs *regs, unsigned long fdptr, unsigned long sp);
85void release_thread(struct task_struct *);
86
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100087/* Lazy FPU handling on uni-processor */
88extern struct task_struct *last_task_used_math;
89extern struct task_struct *last_task_used_altivec;
Michael Neulingc6e67712008-06-25 14:07:18 +100090extern struct task_struct *last_task_used_vsx;
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100091extern struct task_struct *last_task_used_spe;
92
93#ifdef CONFIG_PPC32
Rune Torgersen7c4f10b2008-05-24 01:59:15 +100094
95#if CONFIG_TASK_SIZE > CONFIG_KERNEL_START
96#error User TASK_SIZE overlaps with KERNEL_START address
97#endif
Paul Mackerras9f04b9e2005-10-10 14:19:43 +100098#define TASK_SIZE (CONFIG_TASK_SIZE)
99
100/* This decides where the kernel will search for a free chunk of vm
101 * space during mmap's.
102 */
103#define TASK_UNMAPPED_BASE (TASK_SIZE / 8 * 3)
104#endif
105
106#ifdef CONFIG_PPC64
Aneesh Kumar K.V048ee092012-09-10 02:52:55 +0000107/* 64-bit user address space is 46-bits (64TB user VM) */
108#define TASK_SIZE_USER64 (0x0000400000000000UL)
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000109
110/*
111 * 32-bit user address space is 4GB - 1 page
112 * (this 1 page is needed so referencing of 0xFFFFFFFF generates EFAULT
113 */
114#define TASK_SIZE_USER32 (0x0000000100000000UL - (1*PAGE_SIZE))
115
Dave Hansen82455252008-02-04 22:28:59 -0800116#define TASK_SIZE_OF(tsk) (test_tsk_thread_flag(tsk, TIF_32BIT) ? \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000117 TASK_SIZE_USER32 : TASK_SIZE_USER64)
Dave Hansen82455252008-02-04 22:28:59 -0800118#define TASK_SIZE TASK_SIZE_OF(current)
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000119
120/* This decides where the kernel will search for a free chunk of vm
121 * space during mmap's.
122 */
123#define TASK_UNMAPPED_BASE_USER32 (PAGE_ALIGN(TASK_SIZE_USER32 / 4))
124#define TASK_UNMAPPED_BASE_USER64 (PAGE_ALIGN(TASK_SIZE_USER64 / 4))
125
Denis Kirjanovcab175f2010-08-27 03:49:11 +0000126#define TASK_UNMAPPED_BASE ((is_32bit_task()) ? \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000127 TASK_UNMAPPED_BASE_USER32 : TASK_UNMAPPED_BASE_USER64 )
128#endif
129
David Howells922a70d2008-02-08 04:19:26 -0800130#ifdef __powerpc64__
131
132#define STACK_TOP_USER64 TASK_SIZE_USER64
133#define STACK_TOP_USER32 TASK_SIZE_USER32
134
Denis Kirjanovcab175f2010-08-27 03:49:11 +0000135#define STACK_TOP (is_32bit_task() ? \
David Howells922a70d2008-02-08 04:19:26 -0800136 STACK_TOP_USER32 : STACK_TOP_USER64)
137
138#define STACK_TOP_MAX STACK_TOP_USER64
139
140#else /* __powerpc64__ */
141
142#define STACK_TOP TASK_SIZE
143#define STACK_TOP_MAX STACK_TOP
144
145#endif /* __powerpc64__ */
David Howells922a70d2008-02-08 04:19:26 -0800146
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000147typedef struct {
148 unsigned long seg;
149} mm_segment_t;
150
Michael Neulingc6e67712008-06-25 14:07:18 +1000151#define TS_FPROFFSET 0
152#define TS_VSRLOWOFFSET 1
153#define TS_FPR(i) fpr[i][TS_FPROFFSET]
Michael Neuling9c75a312008-06-26 17:07:48 +1000154
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000155struct thread_struct {
156 unsigned long ksp; /* Kernel stack pointer */
Kumar Gala85218822008-04-28 16:21:22 +1000157 unsigned long ksp_limit; /* if ksp <= ksp_limit stack overflow */
158
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000159#ifdef CONFIG_PPC64
160 unsigned long ksp_vsid;
161#endif
162 struct pt_regs *regs; /* Pointer to saved register state */
163 mm_segment_t fs; /* for get_fs() validation */
Ashish Kalra1325a682011-04-22 16:48:27 -0500164#ifdef CONFIG_BOOKE
165 /* BookE base exception scratch space; align on cacheline */
166 unsigned long normsave[8] ____cacheline_aligned;
167#endif
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000168#ifdef CONFIG_PPC32
169 void *pgdir; /* root of page-table tree */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000170#endif
Dave Kleikamp99396ac2010-02-08 11:53:26 +0000171#ifdef CONFIG_PPC_ADV_DEBUG_REGS
172 /*
173 * The following help to manage the use of Debug Control Registers
174 * om the BookE platforms.
175 */
176 unsigned long dbcr0;
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000177 unsigned long dbcr1;
Dave Kleikamp99396ac2010-02-08 11:53:26 +0000178#ifdef CONFIG_BOOKE
179 unsigned long dbcr2;
180#endif
181 /*
182 * The stored value of the DBSR register will be the value at the
183 * last debug interrupt. This register can only be read from the
184 * user (will never be written to) and has value while helping to
185 * describe the reason for the last debug trap. Torez
186 */
187 unsigned long dbsr;
188 /*
189 * The following will contain addresses used by debug applications
190 * to help trace and trap on particular address locations.
191 * The bits in the Debug Control Registers above help define which
192 * of the following registers will contain valid data and/or addresses.
193 */
194 unsigned long iac1;
195 unsigned long iac2;
196#if CONFIG_PPC_ADV_DEBUG_IACS > 2
197 unsigned long iac3;
198 unsigned long iac4;
199#endif
200 unsigned long dac1;
201 unsigned long dac2;
202#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
203 unsigned long dvc1;
204 unsigned long dvc2;
205#endif
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000206#endif
Michael Neulingc6e67712008-06-25 14:07:18 +1000207 /* FP and VSX 0-31 register set */
208 double fpr[32][TS_FPRWIDTH];
209 struct {
David Gibson25c8a782005-10-27 16:27:25 +1000210
211 unsigned int pad;
212 unsigned int val; /* Floating point status */
213 } fpscr;
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000214 int fpexc_mode; /* floating-point exception mode */
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000215 unsigned int align_ctl; /* alignment handling control */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000216#ifdef CONFIG_PPC64
217 unsigned long start_tb; /* Start purr when proc switched in */
218 unsigned long accum_tb; /* Total accumilated purr for process */
K.Prasad5aae8a52010-06-15 11:35:19 +0530219#ifdef CONFIG_HAVE_HW_BREAKPOINT
220 struct perf_event *ptrace_bps[HBP_NUM];
221 /*
222 * Helps identify source of single-step exception and subsequent
223 * hw-breakpoint enablement
224 */
225 struct perf_event *last_hit_ubp;
226#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000227#endif
228 unsigned long dabr; /* Data address breakpoint register */
Michael Neuling4474ef02012-09-06 21:24:56 +0000229 unsigned long dabrx; /* ... extension */
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000230 unsigned long trap_nr; /* last trap # on this thread */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000231#ifdef CONFIG_ALTIVEC
232 /* Complete AltiVec register set */
Mike Frysingerfc624ea2007-07-15 13:36:09 +1000233 vector128 vr[32] __attribute__((aligned(16)));
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000234 /* AltiVec status */
Mike Frysingerfc624ea2007-07-15 13:36:09 +1000235 vector128 vscr __attribute__((aligned(16)));
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000236 unsigned long vrsave;
237 int used_vr; /* set if process has used altivec */
238#endif /* CONFIG_ALTIVEC */
Michael Neulingc6e67712008-06-25 14:07:18 +1000239#ifdef CONFIG_VSX
240 /* VSR status */
241 int used_vsr; /* set if process has used altivec */
242#endif /* CONFIG_VSX */
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000243#ifdef CONFIG_SPE
244 unsigned long evr[32]; /* upper 32-bits of SPE regs */
245 u64 acc; /* Accumulator */
246 unsigned long spefscr; /* SPE & eFP status */
247 int used_spe; /* set if process has used spe */
248#endif /* CONFIG_SPE */
Alexander Graf97e49252010-04-16 00:11:51 +0200249#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
250 void* kvm_shadow_vcpu; /* KVM internal data */
251#endif /* CONFIG_KVM_BOOK3S_32_HANDLER */
Scott Woodd30f6e42011-12-20 15:34:43 +0000252#if defined(CONFIG_KVM) && defined(CONFIG_BOOKE)
253 struct kvm_vcpu *kvm_vcpu;
254#endif
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000255#ifdef CONFIG_PPC64
256 unsigned long dscr;
257 int dscr_inherit;
Haren Myneni92779242012-12-06 21:49:56 +0000258 unsigned long ppr; /* used to save/restore SMT priority */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000259#endif
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000260};
261
262#define ARCH_MIN_TASKALIGN 16
263
264#define INIT_SP (sizeof(init_stack) + (unsigned long) &init_stack)
Kumar Gala85218822008-04-28 16:21:22 +1000265#define INIT_SP_LIMIT \
266 (_ALIGN_UP(sizeof(init_thread_info), 16) + (unsigned long) &init_stack)
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000267
Liu Yu6a800f32008-10-28 11:50:21 +0800268#ifdef CONFIG_SPE
269#define SPEFSCR_INIT .spefscr = SPEFSCR_FINVE | SPEFSCR_FDBZE | SPEFSCR_FUNFE | SPEFSCR_FOVFE,
270#else
271#define SPEFSCR_INIT
272#endif
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000273
274#ifdef CONFIG_PPC32
275#define INIT_THREAD { \
276 .ksp = INIT_SP, \
Kumar Gala85218822008-04-28 16:21:22 +1000277 .ksp_limit = INIT_SP_LIMIT, \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000278 .fs = KERNEL_DS, \
279 .pgdir = swapper_pg_dir, \
280 .fpexc_mode = MSR_FE0 | MSR_FE1, \
Liu Yu6a800f32008-10-28 11:50:21 +0800281 SPEFSCR_INIT \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000282}
283#else
284#define INIT_THREAD { \
285 .ksp = INIT_SP, \
Kumar Gala85218822008-04-28 16:21:22 +1000286 .ksp_limit = INIT_SP_LIMIT, \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000287 .regs = (struct pt_regs *)INIT_SP - 1, /* XXX bogus, I think */ \
288 .fs = KERNEL_DS, \
Michael Neulinge17a2562008-07-01 17:00:39 +1000289 .fpr = {{0}}, \
David Gibson25c8a782005-10-27 16:27:25 +1000290 .fpscr = { .val = 0, }, \
Arnd Bergmannddf5f752006-06-20 02:30:33 +0200291 .fpexc_mode = 0, \
Haren Myneni92779242012-12-06 21:49:56 +0000292 .ppr = INIT_PPR, \
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000293}
294#endif
295
296/*
297 * Return saved PC of a blocked thread. For now, this is the "user" PC
298 */
299#define thread_saved_pc(tsk) \
300 ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0)
301
Srinivasa Dse5093ff2008-07-08 00:22:27 +1000302#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.regs)
303
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000304unsigned long get_wchan(struct task_struct *p);
305
306#define KSTK_EIP(tsk) ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0)
307#define KSTK_ESP(tsk) ((tsk)->thread.regs? (tsk)->thread.regs->gpr[1]: 0)
308
309/* Get/set floating-point exception mode */
310#define GET_FPEXC_CTL(tsk, adr) get_fpexc_mode((tsk), (adr))
311#define SET_FPEXC_CTL(tsk, val) set_fpexc_mode((tsk), (val))
312
313extern int get_fpexc_mode(struct task_struct *tsk, unsigned long adr);
314extern int set_fpexc_mode(struct task_struct *tsk, unsigned int val);
315
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000316#define GET_ENDIAN(tsk, adr) get_endian((tsk), (adr))
317#define SET_ENDIAN(tsk, val) set_endian((tsk), (val))
318
319extern int get_endian(struct task_struct *tsk, unsigned long adr);
320extern int set_endian(struct task_struct *tsk, unsigned int val);
321
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000322#define GET_UNALIGN_CTL(tsk, adr) get_unalign_ctl((tsk), (adr))
323#define SET_UNALIGN_CTL(tsk, val) set_unalign_ctl((tsk), (val))
324
325extern int get_unalign_ctl(struct task_struct *tsk, unsigned long adr);
326extern int set_unalign_ctl(struct task_struct *tsk, unsigned int val);
327
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000328static inline unsigned int __unpack_fe01(unsigned long msr_bits)
329{
330 return ((msr_bits & MSR_FE0) >> 10) | ((msr_bits & MSR_FE1) >> 8);
331}
332
333static inline unsigned long __pack_fe01(unsigned int fpmode)
334{
335 return ((fpmode << 10) & MSR_FE0) | ((fpmode << 8) & MSR_FE1);
336}
337
338#ifdef CONFIG_PPC64
339#define cpu_relax() do { HMT_low(); HMT_medium(); barrier(); } while (0)
340#else
341#define cpu_relax() barrier()
342#endif
343
Anton Blanchard2f251942006-03-27 11:46:18 +1100344/* Check that a certain kernel stack pointer is valid in task_struct p */
345int validate_sp(unsigned long sp, struct task_struct *p,
346 unsigned long nbytes);
347
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000348/*
349 * Prefetch macros.
350 */
351#define ARCH_HAS_PREFETCH
352#define ARCH_HAS_PREFETCHW
353#define ARCH_HAS_SPINLOCK_PREFETCH
354
355static inline void prefetch(const void *x)
356{
357 if (unlikely(!x))
358 return;
359
360 __asm__ __volatile__ ("dcbt 0,%0" : : "r" (x));
361}
362
363static inline void prefetchw(const void *x)
364{
365 if (unlikely(!x))
366 return;
367
368 __asm__ __volatile__ ("dcbtst 0,%0" : : "r" (x));
369}
370
371#define spin_lock_prefetch(x) prefetchw(x)
372
373#ifdef CONFIG_PPC64
374#define HAVE_ARCH_PICK_MMAP_LAYOUT
375#endif
376
Josh Boyerefbda862009-03-25 06:23:59 +0000377#ifdef CONFIG_PPC64
378static inline unsigned long get_clean_sp(struct pt_regs *regs, int is_32)
379{
380 unsigned long sp;
381
382 if (is_32)
383 sp = regs->gpr[1] & 0x0ffffffffUL;
384 else
385 sp = regs->gpr[1];
386
387 return sp;
388}
389#else
390static inline unsigned long get_clean_sp(struct pt_regs *regs, int is_32)
391{
392 return regs->gpr[1];
393}
394#endif
395
Deepthi Dharware8bb3e02011-11-30 02:47:03 +0000396extern unsigned long cpuidle_disable;
Deepthi Dharwar771dae82011-11-30 02:46:31 +0000397enum idle_boot_override {IDLE_NO_OVERRIDE = 0, IDLE_POWERSAVE_OFF};
398
David Howellsae3a1972012-03-28 18:30:02 +0100399extern int powersave_nap; /* set if nap mode can be used in idle loop */
Paul Mackerras375f5612012-07-26 18:51:09 +0000400extern void power7_nap(void);
David Howellsae3a1972012-03-28 18:30:02 +0100401
402#ifdef CONFIG_PSERIES_IDLE
Deepthi Dharwar8ea959a2012-10-03 18:42:18 +0000403extern void update_smt_snooze_delay(int cpu, int residency);
David Howellsae3a1972012-03-28 18:30:02 +0100404#else
Deepthi Dharwar8ea959a2012-10-03 18:42:18 +0000405static inline void update_smt_snooze_delay(int cpu, int residency) {}
David Howellsae3a1972012-03-28 18:30:02 +0100406#endif
407
408extern void flush_instruction_cache(void);
409extern void hard_reset_now(void);
410extern void poweroff_now(void);
411extern int fix_alignment(struct pt_regs *);
412extern void cvt_fd(float *from, double *to);
413extern void cvt_df(double *from, float *to);
414extern void _nmask_and_or_msr(unsigned long nmask, unsigned long or_val);
415
416#ifdef CONFIG_PPC64
417/*
418 * We handle most unaligned accesses in hardware. On the other hand
419 * unaligned DMA can be very expensive on some ppc64 IO chips (it does
420 * powers of 2 writes until it reaches sufficient alignment).
421 *
422 * Based on this we disable the IP header alignment in network drivers.
423 */
424#define NET_IP_ALIGN 0
425#endif
426
Paul Mackerras9f04b9e2005-10-10 14:19:43 +1000427#endif /* __KERNEL__ */
428#endif /* __ASSEMBLY__ */
429#endif /* _ASM_POWERPC_PROCESSOR_H */