processor.h 27.7 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4
#ifndef _ASM_IA64_PROCESSOR_H
#define _ASM_IA64_PROCESSOR_H

/*
David Mosberger's avatar
David Mosberger committed
5 6 7
 * Copyright (C) 1998-2002 Hewlett-Packard Co
 *	David Mosberger-Tang <davidm@hpl.hp.com>
 *	Stephane Eranian <eranian@hpl.hp.com>
Linus Torvalds's avatar
Linus Torvalds committed
8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 1999 Asit Mallick <asit.k.mallick@intel.com>
 * Copyright (C) 1999 Don Dugger <don.dugger@intel.com>
 *
 * 11/24/98	S.Eranian	added ia64_set_iva()
 * 12/03/99	D. Mosberger	implement thread_saved_pc() via kernel unwind API
 * 06/16/00	A. Mallick	added csd/ssd/tssd for ia32 support
 */

#include <linux/config.h>

18 19
#include <linux/compiler.h>

Linus Torvalds's avatar
Linus Torvalds committed
20
#include <asm/ptrace.h>
Linus Torvalds's avatar
Linus Torvalds committed
21 22
#include <asm/kregs.h>
#include <asm/system.h>
Linus Torvalds's avatar
Linus Torvalds committed
23 24 25 26 27 28 29 30 31 32
#include <asm/types.h>

#define IA64_NUM_DBG_REGS	8
/*
 * Limits for PMC and PMD are set to less than maximum architected values
 * but should be sufficient for a while
 */
#define IA64_NUM_PMC_REGS	32
#define IA64_NUM_PMD_REGS	32

Linus Torvalds's avatar
Linus Torvalds committed
33 34 35
#define DEFAULT_MAP_BASE	0x2000000000000000
#define DEFAULT_TASK_SIZE	0xa000000000000000

Linus Torvalds's avatar
Linus Torvalds committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
/*
 * TASK_SIZE really is a mis-named.  It really is the maximum user
 * space address (plus one).  On IA-64, there are five regions of 2TB
 * each (assuming 8KB page size), for a total of 8TB of user virtual
 * address space.
 */
#define TASK_SIZE		(current->thread.task_size)

/*
 * This decides where the kernel will search for a free chunk of vm
 * space during mmap's.
 */
#define TASK_UNMAPPED_BASE	(current->thread.map_base)

/*
 * Bus types
 */
#define EISA_bus 0
#define EISA_bus__is_a_macro /* for versions in ksyms.c */
#define MCA_bus 0
#define MCA_bus__is_a_macro /* for versions in ksyms.c */

/* Processor status register bits: */
#define IA64_PSR_BE_BIT		1
#define IA64_PSR_UP_BIT		2
#define IA64_PSR_AC_BIT		3
#define IA64_PSR_MFL_BIT	4
#define IA64_PSR_MFH_BIT	5
#define IA64_PSR_IC_BIT		13
#define IA64_PSR_I_BIT		14
#define IA64_PSR_PK_BIT		15
#define IA64_PSR_DT_BIT		17
#define IA64_PSR_DFL_BIT	18
#define IA64_PSR_DFH_BIT	19
#define IA64_PSR_SP_BIT		20
#define IA64_PSR_PP_BIT		21
#define IA64_PSR_DI_BIT		22
#define IA64_PSR_SI_BIT		23
#define IA64_PSR_DB_BIT		24
#define IA64_PSR_LP_BIT		25
#define IA64_PSR_TB_BIT		26
#define IA64_PSR_RT_BIT		27
/* The following are not affected by save_flags()/restore_flags(): */
#define IA64_PSR_CPL0_BIT	32
#define IA64_PSR_CPL1_BIT	33
#define IA64_PSR_IS_BIT		34
#define IA64_PSR_MC_BIT		35
#define IA64_PSR_IT_BIT		36
#define IA64_PSR_ID_BIT		37
#define IA64_PSR_DA_BIT		38
#define IA64_PSR_DD_BIT		39
#define IA64_PSR_SS_BIT		40
#define IA64_PSR_RI_BIT		41
#define IA64_PSR_ED_BIT		43
#define IA64_PSR_BN_BIT		44

#define IA64_PSR_BE	(__IA64_UL(1) << IA64_PSR_BE_BIT)
#define IA64_PSR_UP	(__IA64_UL(1) << IA64_PSR_UP_BIT)
#define IA64_PSR_AC	(__IA64_UL(1) << IA64_PSR_AC_BIT)
#define IA64_PSR_MFL	(__IA64_UL(1) << IA64_PSR_MFL_BIT)
#define IA64_PSR_MFH	(__IA64_UL(1) << IA64_PSR_MFH_BIT)
#define IA64_PSR_IC	(__IA64_UL(1) << IA64_PSR_IC_BIT)
#define IA64_PSR_I	(__IA64_UL(1) << IA64_PSR_I_BIT)
#define IA64_PSR_PK	(__IA64_UL(1) << IA64_PSR_PK_BIT)
#define IA64_PSR_DT	(__IA64_UL(1) << IA64_PSR_DT_BIT)
#define IA64_PSR_DFL	(__IA64_UL(1) << IA64_PSR_DFL_BIT)
#define IA64_PSR_DFH	(__IA64_UL(1) << IA64_PSR_DFH_BIT)
#define IA64_PSR_SP	(__IA64_UL(1) << IA64_PSR_SP_BIT)
#define IA64_PSR_PP	(__IA64_UL(1) << IA64_PSR_PP_BIT)
#define IA64_PSR_DI	(__IA64_UL(1) << IA64_PSR_DI_BIT)
#define IA64_PSR_SI	(__IA64_UL(1) << IA64_PSR_SI_BIT)
#define IA64_PSR_DB	(__IA64_UL(1) << IA64_PSR_DB_BIT)
#define IA64_PSR_LP	(__IA64_UL(1) << IA64_PSR_LP_BIT)
#define IA64_PSR_TB	(__IA64_UL(1) << IA64_PSR_TB_BIT)
#define IA64_PSR_RT	(__IA64_UL(1) << IA64_PSR_RT_BIT)
/* The following are not affected by save_flags()/restore_flags(): */
#define IA64_PSR_IS	(__IA64_UL(1) << IA64_PSR_IS_BIT)
#define IA64_PSR_MC	(__IA64_UL(1) << IA64_PSR_MC_BIT)
#define IA64_PSR_IT	(__IA64_UL(1) << IA64_PSR_IT_BIT)
#define IA64_PSR_ID	(__IA64_UL(1) << IA64_PSR_ID_BIT)
#define IA64_PSR_DA	(__IA64_UL(1) << IA64_PSR_DA_BIT)
#define IA64_PSR_DD	(__IA64_UL(1) << IA64_PSR_DD_BIT)
#define IA64_PSR_SS	(__IA64_UL(1) << IA64_PSR_SS_BIT)
#define IA64_PSR_RI	(__IA64_UL(3) << IA64_PSR_RI_BIT)
#define IA64_PSR_ED	(__IA64_UL(1) << IA64_PSR_ED_BIT)
#define IA64_PSR_BN	(__IA64_UL(1) << IA64_PSR_BN_BIT)

/* User mask bits: */
#define IA64_PSR_UM	(IA64_PSR_BE | IA64_PSR_UP | IA64_PSR_AC | IA64_PSR_MFL | IA64_PSR_MFH)

/* Default Control Register */
#define IA64_DCR_PP_BIT		 0	/* privileged performance monitor default */
#define IA64_DCR_BE_BIT		 1	/* big-endian default */
#define IA64_DCR_LC_BIT		 2	/* ia32 lock-check enable */
#define IA64_DCR_DM_BIT		 8	/* defer TLB miss faults */
#define IA64_DCR_DP_BIT		 9	/* defer page-not-present faults */
#define IA64_DCR_DK_BIT		10	/* defer key miss faults */
#define IA64_DCR_DX_BIT		11	/* defer key permission faults */
#define IA64_DCR_DR_BIT		12	/* defer access right faults */
#define IA64_DCR_DA_BIT		13	/* defer access bit faults */
#define IA64_DCR_DD_BIT		14	/* defer debug faults */

#define IA64_DCR_PP	(__IA64_UL(1) << IA64_DCR_PP_BIT)
#define IA64_DCR_BE	(__IA64_UL(1) << IA64_DCR_BE_BIT)
#define IA64_DCR_LC	(__IA64_UL(1) << IA64_DCR_LC_BIT)
#define IA64_DCR_DM	(__IA64_UL(1) << IA64_DCR_DM_BIT)
#define IA64_DCR_DP	(__IA64_UL(1) << IA64_DCR_DP_BIT)
#define IA64_DCR_DK	(__IA64_UL(1) << IA64_DCR_DK_BIT)
#define IA64_DCR_DX	(__IA64_UL(1) << IA64_DCR_DX_BIT)
#define IA64_DCR_DR	(__IA64_UL(1) << IA64_DCR_DR_BIT)
#define IA64_DCR_DA	(__IA64_UL(1) << IA64_DCR_DA_BIT)
#define IA64_DCR_DD	(__IA64_UL(1) << IA64_DCR_DD_BIT)

/* Interrupt Status Register */
#define IA64_ISR_X_BIT		32	/* execute access */
#define IA64_ISR_W_BIT		33	/* write access */
#define IA64_ISR_R_BIT		34	/* read access */
#define IA64_ISR_NA_BIT		35	/* non-access */
#define IA64_ISR_SP_BIT		36	/* speculative load exception */
#define IA64_ISR_RS_BIT		37	/* mandatory register-stack exception */
#define IA64_ISR_IR_BIT		38	/* invalid register frame exception */

#define IA64_ISR_X	(__IA64_UL(1) << IA64_ISR_X_BIT)
#define IA64_ISR_W	(__IA64_UL(1) << IA64_ISR_W_BIT)
#define IA64_ISR_R	(__IA64_UL(1) << IA64_ISR_R_BIT)
#define IA64_ISR_NA	(__IA64_UL(1) << IA64_ISR_NA_BIT)
#define IA64_ISR_SP	(__IA64_UL(1) << IA64_ISR_SP_BIT)
#define IA64_ISR_RS	(__IA64_UL(1) << IA64_ISR_RS_BIT)
#define IA64_ISR_IR	(__IA64_UL(1) << IA64_ISR_IR_BIT)

#define IA64_THREAD_FPH_VALID	(__IA64_UL(1) << 0)	/* floating-point high state valid? */
#define IA64_THREAD_DBG_VALID	(__IA64_UL(1) << 1)	/* debug registers valid? */
#define IA64_THREAD_PM_VALID	(__IA64_UL(1) << 2)	/* performance registers valid? */
#define IA64_THREAD_UAC_NOPRINT	(__IA64_UL(1) << 3)	/* don't log unaligned accesses */
#define IA64_THREAD_UAC_SIGBUS	(__IA64_UL(1) << 4)	/* generate SIGBUS on unaligned acc. */
#define IA64_THREAD_KRBS_SYNCED	(__IA64_UL(1) << 5)	/* krbs synced with process vm? */
Linus Torvalds's avatar
Linus Torvalds committed
172 173
#define IA64_THREAD_FPEMU_NOPRINT (__IA64_UL(1) << 6)	/* don't log any fpswa faults */
#define IA64_THREAD_FPEMU_SIGFPE  (__IA64_UL(1) << 7)	/* send a SIGFPE for fpswa faults */
David Mosberger's avatar
David Mosberger committed
174
#define IA64_THREAD_XSTACK	(__IA64_UL(1) << 8)	/* stack executable by default? */
Linus Torvalds's avatar
Linus Torvalds committed
175 176 177

#define IA64_THREAD_UAC_SHIFT	3
#define IA64_THREAD_UAC_MASK	(IA64_THREAD_UAC_NOPRINT | IA64_THREAD_UAC_SIGBUS)
Linus Torvalds's avatar
Linus Torvalds committed
178 179
#define IA64_THREAD_FPEMU_SHIFT	6
#define IA64_THREAD_FPEMU_MASK	(IA64_THREAD_FPEMU_NOPRINT | IA64_THREAD_FPEMU_SIGFPE)
Linus Torvalds's avatar
Linus Torvalds committed
180

Linus Torvalds's avatar
Linus Torvalds committed
181 182 183 184 185 186 187 188

/*
 * This shift should be large enough to be able to represent
 * 1000000/itc_freq with good accuracy while being small enough to fit
 * 1000000<<IA64_USEC_PER_CYC_SHIFT in 64 bits.
 */
#define IA64_USEC_PER_CYC_SHIFT	41

189 190 191 192
#define __HAVE_ARCH_PER_CPU

#define THIS_CPU(var)	(var)

Linus Torvalds's avatar
Linus Torvalds committed
193 194 195
#ifndef __ASSEMBLY__

#include <linux/threads.h>
David Mosberger's avatar
David Mosberger committed
196
#include <linux/cache.h>
Linus Torvalds's avatar
Linus Torvalds committed
197 198 199 200 201 202

#include <asm/fpu.h>
#include <asm/offsets.h>
#include <asm/page.h>
#include <asm/rse.h>
#include <asm/unwind.h>
Linus Torvalds's avatar
Linus Torvalds committed
203
#include <asm/atomic.h>
Linus Torvalds's avatar
Linus Torvalds committed
204

205 206 207 208 209
extern unsigned long __per_cpu_offset[NR_CPUS];

#define per_cpu(var, cpu)	(*(__typeof__(&(var))) ((void *) &(var) + __per_cpu_offset[cpu]))
#define this_cpu(var)		(var)

Linus Torvalds's avatar
Linus Torvalds committed
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
/* like above but expressed as bitfields for more efficient access: */
struct ia64_psr {
	__u64 reserved0 : 1;
	__u64 be : 1;
	__u64 up : 1;
	__u64 ac : 1;
	__u64 mfl : 1;
	__u64 mfh : 1;
	__u64 reserved1 : 7;
	__u64 ic : 1;
	__u64 i : 1;
	__u64 pk : 1;
	__u64 reserved2 : 1;
	__u64 dt : 1;
	__u64 dfl : 1;
	__u64 dfh : 1;
	__u64 sp : 1;
	__u64 pp : 1;
	__u64 di : 1;
	__u64 si : 1;
	__u64 db : 1;
	__u64 lp : 1;
	__u64 tb : 1;
	__u64 rt : 1;
	__u64 reserved3 : 4;
	__u64 cpl : 2;
	__u64 is : 1;
	__u64 mc : 1;
	__u64 it : 1;
	__u64 id : 1;
	__u64 da : 1;
	__u64 dd : 1;
	__u64 ss : 1;
	__u64 ri : 2;
	__u64 ed : 1;
	__u64 bn : 1;
	__u64 reserved4 : 19;
};

/*
Linus Torvalds's avatar
Linus Torvalds committed
250 251
 * CPU type, hardware bug flags, and per-CPU state.  Frequently used
 * state comes earlier:
Linus Torvalds's avatar
Linus Torvalds committed
252
 */
253
extern struct cpuinfo_ia64 {
Linus Torvalds's avatar
Linus Torvalds committed
254
	/* irq_stat must be 64-bit aligned */
Linus Torvalds's avatar
Linus Torvalds committed
255 256 257 258 259 260 261
	union {
		struct {
			__u32 irq_count;
			__u32 bh_count;
		} f;
		__u64 irq_and_bh_counts;
	} irq_stat;
Linus Torvalds's avatar
Linus Torvalds committed
262
	__u32 softirq_pending;
Linus Torvalds's avatar
Linus Torvalds committed
263 264
	__u64 itm_delta;	/* # of clock cycles between clock ticks */
	__u64 itm_next;		/* interval timer mask value to use for next clock tick */
Linus Torvalds's avatar
Linus Torvalds committed
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
	__u64 *pgd_quick;
	__u64 *pmd_quick;
	__u64 pgtable_cache_sz;
	/* CPUID-derived information: */
	__u64 ppn;
	__u64 features;
	__u8 number;
	__u8 revision;
	__u8 model;
	__u8 family;
	__u8 archrev;
	char vendor[16];
	__u64 itc_freq;		/* frequency of ITC counter */
	__u64 proc_freq;	/* frequency of processor */
	__u64 cyc_per_usec;	/* itc_freq/1000000 */
	__u64 usec_per_cyc;	/* 2^IA64_USEC_PER_CYC_SHIFT*1000000/itc_freq */
	__u64 unimpl_va_mask;	/* mask of unimplemented virtual address bits (from PAL) */
	__u64 unimpl_pa_mask;	/* mask of unimplemented physical address bits (from PAL) */
	__u64 ptce_base;
	__u32 ptce_count[2];
	__u32 ptce_stride[2];
Linus Torvalds's avatar
Linus Torvalds committed
286
	struct task_struct *ksoftirqd;	/* kernel softirq daemon for this CPU */
Linus Torvalds's avatar
Linus Torvalds committed
287
#ifdef CONFIG_SMP
David Mosberger's avatar
David Mosberger committed
288
	int cpu;
Linus Torvalds's avatar
Linus Torvalds committed
289 290 291 292
	__u64 loops_per_jiffy;
	__u64 ipi_count;
	__u64 prof_counter;
	__u64 prof_multiplier;
David Mosberger's avatar
David Mosberger committed
293 294
	__u32 pfm_syst_wide;
	__u32 pfm_dcr_pp;
Linus Torvalds's avatar
Linus Torvalds committed
295
#endif
296
} cpu_info __per_cpu_data;
Linus Torvalds's avatar
Linus Torvalds committed
297

Linus Torvalds's avatar
Linus Torvalds committed
298 299 300 301
/*
 * The "local" data pointer.  It points to the per-CPU data of the currently executing
 * CPU, much like "current" points to the per-task data of the currently executing task.
 */
302 303
#define local_cpu_data		(&this_cpu(cpu_info))
#define cpu_data(cpu)		(&per_cpu(cpu_info, cpu))
Linus Torvalds's avatar
Linus Torvalds committed
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323

extern void identify_cpu (struct cpuinfo_ia64 *);
extern void print_cpu_info (struct cpuinfo_ia64 *);

typedef struct {
	unsigned long seg;
} mm_segment_t;

#define SET_UNALIGN_CTL(task,value)								\
({												\
	(task)->thread.flags = (((task)->thread.flags & ~IA64_THREAD_UAC_MASK)			\
				| (((value) << IA64_THREAD_UAC_SHIFT) & IA64_THREAD_UAC_MASK));	\
	0;											\
})
#define GET_UNALIGN_CTL(task,addr)								\
({												\
	put_user(((task)->thread.flags & IA64_THREAD_UAC_MASK) >> IA64_THREAD_UAC_SHIFT,	\
		 (int *) (addr));								\
})

Linus Torvalds's avatar
Linus Torvalds committed
324 325 326 327 328 329 330 331 332 333 334 335
#define SET_FPEMU_CTL(task,value)								\
({												\
	(task)->thread.flags = (((task)->thread.flags & ~IA64_THREAD_FPEMU_MASK)		\
			  | (((value) << IA64_THREAD_FPEMU_SHIFT) & IA64_THREAD_FPEMU_MASK));	\
	0;											\
})
#define GET_FPEMU_CTL(task,addr)								\
({												\
	put_user(((task)->thread.flags & IA64_THREAD_FPEMU_MASK) >> IA64_THREAD_FPEMU_SHIFT,	\
		 (int *) (addr));								\
})

Linus Torvalds's avatar
Linus Torvalds committed
336 337 338
struct siginfo;

struct thread_struct {
David Mosberger's avatar
David Mosberger committed
339
	__u64 flags;			/* various thread flags (see IA64_THREAD_*) */
Linus Torvalds's avatar
Linus Torvalds committed
340 341 342
	__u64 ksp;			/* kernel stack pointer */
	__u64 map_base;			/* base address for get_unmapped_area() */
	__u64 task_size;		/* limit for task size */
Linus Torvalds's avatar
Linus Torvalds committed
343 344
	struct siginfo *siginfo;	/* current siginfo struct for ptrace() */

Linus Torvalds's avatar
Linus Torvalds committed
345 346 347 348 349 350 351 352
#ifdef CONFIG_IA32_SUPPORT
	__u64 eflag;			/* IA32 EFLAGS reg */
	__u64 fsr;			/* IA32 floating pt status reg */
	__u64 fcr;			/* IA32 floating pt control reg */
	__u64 fir;			/* IA32 fp except. instr. reg */
	__u64 fdr;			/* IA32 fp except. data reg */
	__u64 csd;			/* IA32 code selector descriptor */
	__u64 ssd;			/* IA32 stack selector descriptor */
Linus Torvalds's avatar
Linus Torvalds committed
353
	__u64 old_k1;			/* old value of ar.k1 */
Linus Torvalds's avatar
Linus Torvalds committed
354
	__u64 old_iob;			/* old IOBase value */
Linus Torvalds's avatar
Linus Torvalds committed
355
# define INIT_THREAD_IA32	0, 0, 0x17800000037fULL, 0, 0, 0, 0, 0, 0,
Linus Torvalds's avatar
Linus Torvalds committed
356 357 358
#else
# define INIT_THREAD_IA32
#endif /* CONFIG_IA32_SUPPORT */
Linus Torvalds's avatar
Linus Torvalds committed
359 360 361
#ifdef CONFIG_PERFMON
	__u64 pmc[IA64_NUM_PMC_REGS];
	__u64 pmd[IA64_NUM_PMD_REGS];
David Mosberger's avatar
David Mosberger committed
362
	unsigned long pfm_ovfl_block_reset;/* non-zero if we need to block or reset regs on ovfl */
Linus Torvalds's avatar
Linus Torvalds committed
363
	void *pfm_context;		/* pointer to detailed PMU context */
David Mosberger's avatar
David Mosberger committed
364 365 366 367
	atomic_t pfm_notifiers_check;	/* when >0, will cleanup ctx_notify_task in tasklist */
	atomic_t pfm_owners_check;	/* when >0, will cleanup ctx_owner in tasklist */
	void *pfm_smpl_buf_list;	/* list of sampling buffers to vfree */
# define INIT_THREAD_PM		{0, }, {0, }, 0, NULL, {0}, {0}, NULL,
Linus Torvalds's avatar
Linus Torvalds committed
368 369 370 371 372 373
#else
# define INIT_THREAD_PM
#endif
	__u64 dbr[IA64_NUM_DBG_REGS];
	__u64 ibr[IA64_NUM_DBG_REGS];
	struct ia64_fpreg fph[96];	/* saved/loaded on demand */
Linus Torvalds's avatar
Linus Torvalds committed
374 375
};

David Mosberger's avatar
David Mosberger committed
376 377 378 379 380 381 382 383 384 385 386
#define INIT_THREAD {				\
	flags:		0,			\
	ksp:		0,			\
	map_base:	DEFAULT_MAP_BASE,	\
	task_size:	DEFAULT_TASK_SIZE,	\
	siginfo:	0,			\
	INIT_THREAD_IA32			\
	INIT_THREAD_PM				\
	dbr:		{0, },			\
	ibr:		{0, },			\
	fph:		{{{{0}}}, }		\
Linus Torvalds's avatar
Linus Torvalds committed
387 388
}

Linus Torvalds's avatar
Linus Torvalds committed
389 390 391 392 393 394 395
#define start_thread(regs,new_ip,new_sp) do {							\
	set_fs(USER_DS);									\
	ia64_psr(regs)->dfh = 1;	/* disable fph */					\
	ia64_psr(regs)->mfh = 0;	/* clear mfh */						\
	ia64_psr(regs)->cpl = 3;	/* set user mode */					\
	ia64_psr(regs)->ri = 0;		/* clear return slot number */				\
	ia64_psr(regs)->is = 0;		/* IA-64 instruction set */				\
David Mosberger's avatar
David Mosberger committed
396
	ia64_psr(regs)->sp = 1;		/* enforce secure perfmon */				\
Linus Torvalds's avatar
Linus Torvalds committed
397 398 399 400 401 402
	regs->cr_iip = new_ip;									\
	regs->ar_rsc = 0xf;		/* eager mode, privilege level 3 */			\
	regs->ar_rnat = 0;									\
	regs->ar_bspstore = IA64_RBS_BOT;							\
	regs->ar_fpsr = FPSR_DEFAULT;								\
	regs->loadrs = 0;									\
Linus Torvalds's avatar
Linus Torvalds committed
403
	regs->r8 = current->mm->dumpable;	/* set "don't zap registers" flag */		\
Linus Torvalds's avatar
Linus Torvalds committed
404
	regs->r12 = new_sp - 16;	/* allocate 16 byte scratch area */			\
Linus Torvalds's avatar
Linus Torvalds committed
405
	if (!__builtin_expect (current->mm->dumpable, 1)) {					\
Linus Torvalds's avatar
Linus Torvalds committed
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
		/*										\
		 * Zap scratch regs to avoid leaking bits between processes with different	\
		 * uid/privileges.								\
		 */										\
		regs->ar_pfs = 0;								\
		regs->pr = 0;									\
		/*										\
		 * XXX fix me: everything below can go away once we stop preserving scratch	\
		 * regs on a system call.							\
		 */										\
		regs->b6 = 0;									\
		regs->r1 = 0; regs->r2 = 0; regs->r3 = 0;					\
		regs->r13 = 0; regs->r14 = 0; regs->r15 = 0;					\
		regs->r9  = 0; regs->r11 = 0;							\
		regs->r16 = 0; regs->r17 = 0; regs->r18 = 0; regs->r19 = 0;			\
		regs->r20 = 0; regs->r21 = 0; regs->r22 = 0; regs->r23 = 0;			\
		regs->r24 = 0; regs->r25 = 0; regs->r26 = 0; regs->r27 = 0;			\
		regs->r28 = 0; regs->r29 = 0; regs->r30 = 0; regs->r31 = 0;			\
		regs->ar_ccv = 0;								\
		regs->b0 = 0; regs->b7 = 0;							\
		regs->f6.u.bits[0] = 0; regs->f6.u.bits[1] = 0;					\
		regs->f7.u.bits[0] = 0; regs->f7.u.bits[1] = 0;					\
		regs->f8.u.bits[0] = 0; regs->f8.u.bits[1] = 0;					\
		regs->f9.u.bits[0] = 0; regs->f9.u.bits[1] = 0;					\
	}											\
Linus Torvalds's avatar
Linus Torvalds committed
431 432 433 434 435 436 437 438 439
} while (0)

/* Forward declarations, a strange C thing... */
struct mm_struct;
struct task_struct;

/*
 * Free all resources held by a thread. This is called after the
 * parent of DEAD_TASK has collected the exist status of the task via
Linus Torvalds's avatar
Linus Torvalds committed
440
 * wait().
Linus Torvalds's avatar
Linus Torvalds committed
441
 */
Linus Torvalds's avatar
Linus Torvalds committed
442 443 444 445 446
#ifdef CONFIG_PERFMON
  extern void release_thread (struct task_struct *task);
#else
# define release_thread(dead_task)
#endif
Linus Torvalds's avatar
Linus Torvalds committed
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480

/*
 * This is the mechanism for creating a new kernel thread.
 *
 * NOTE 1: Only a kernel-only process (ie the swapper or direct
 * descendants who haven't done an "execve()") should use this: it
 * will work within a system call from a "real" process, but the
 * process memory space will not be free'd until both the parent and
 * the child have exited.
 *
 * NOTE 2: This MUST NOT be an inlined function.  Otherwise, we get
 * into trouble in init/main.c when the child thread returns to
 * do_basic_setup() and the timing is such that free_initmem() has
 * been called already.
 */
extern int kernel_thread (int (*fn)(void *), void *arg, unsigned long flags);

/* Copy and release all segment info associated with a VM */
#define copy_segments(tsk, mm)			do { } while (0)
#define release_segments(mm)			do { } while (0)

/* Get wait channel for task P.  */
extern unsigned long get_wchan (struct task_struct *p);

/* Return instruction pointer of blocked task TSK.  */
#define KSTK_EIP(tsk)					\
  ({							\
	struct pt_regs *_regs = ia64_task_regs(tsk);	\
	_regs->cr_iip + ia64_psr(_regs)->ri;		\
  })

/* Return stack pointer of blocked task TSK.  */
#define KSTK_ESP(tsk)  ((tsk)->thread.ksp)

Linus Torvalds's avatar
Linus Torvalds committed
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
static inline unsigned long
ia64_get_kr (unsigned long regnum)
{
	unsigned long r;

	switch (regnum) {
	      case 0: asm volatile ("mov %0=ar.k0" : "=r"(r)); break;
	      case 1: asm volatile ("mov %0=ar.k1" : "=r"(r)); break;
	      case 2: asm volatile ("mov %0=ar.k2" : "=r"(r)); break;
	      case 3: asm volatile ("mov %0=ar.k3" : "=r"(r)); break;
	      case 4: asm volatile ("mov %0=ar.k4" : "=r"(r)); break;
	      case 5: asm volatile ("mov %0=ar.k5" : "=r"(r)); break;
	      case 6: asm volatile ("mov %0=ar.k6" : "=r"(r)); break;
	      case 7: asm volatile ("mov %0=ar.k7" : "=r"(r)); break;
	}
	return r;
}

static inline void
ia64_set_kr (unsigned long regnum, unsigned long r)
{
	switch (regnum) {
	      case 0: asm volatile ("mov ar.k0=%0" :: "r"(r)); break;
	      case 1: asm volatile ("mov ar.k1=%0" :: "r"(r)); break;
	      case 2: asm volatile ("mov ar.k2=%0" :: "r"(r)); break;
	      case 3: asm volatile ("mov ar.k3=%0" :: "r"(r)); break;
	      case 4: asm volatile ("mov ar.k4=%0" :: "r"(r)); break;
	      case 5: asm volatile ("mov ar.k5=%0" :: "r"(r)); break;
	      case 6: asm volatile ("mov ar.k6=%0" :: "r"(r)); break;
	      case 7: asm volatile ("mov ar.k7=%0" :: "r"(r)); break;
	}
}

Linus Torvalds's avatar
Linus Torvalds committed
514 515 516 517 518
#ifndef CONFIG_SMP

static inline struct task_struct *
ia64_get_fpu_owner (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
519
	return (struct task_struct *) ia64_get_kr(IA64_KR_FPU_OWNER);
Linus Torvalds's avatar
Linus Torvalds committed
520 521 522 523 524
}

static inline void
ia64_set_fpu_owner (struct task_struct *t)
{
Linus Torvalds's avatar
Linus Torvalds committed
525
	ia64_set_kr(IA64_KR_FPU_OWNER, (unsigned long) t);
Linus Torvalds's avatar
Linus Torvalds committed
526 527 528 529 530 531 532 533 534 535 536
}

#endif /* !CONFIG_SMP */

extern void __ia64_init_fpu (void);
extern void __ia64_save_fpu (struct ia64_fpreg *fph);
extern void __ia64_load_fpu (struct ia64_fpreg *fph);
extern void ia64_save_debug_regs (unsigned long *save_area);
extern void ia64_load_debug_regs (unsigned long *save_area);

#ifdef CONFIG_IA32_SUPPORT
Linus Torvalds's avatar
Linus Torvalds committed
537 538
extern void ia32_save_state (struct task_struct *task);
extern void ia32_load_state (struct task_struct *task);
Linus Torvalds's avatar
Linus Torvalds committed
539 540
#endif

Linus Torvalds's avatar
Linus Torvalds committed
541 542
#define ia64_fph_enable()	asm volatile (";; rsm psr.dfh;; srlz.d;;" ::: "memory");
#define ia64_fph_disable()	asm volatile (";; ssm psr.dfh;; srlz.d;;" ::: "memory");
Linus Torvalds's avatar
Linus Torvalds committed
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570

/* load fp 0.0 into fph */
static inline void
ia64_init_fpu (void) {
	ia64_fph_enable();
	__ia64_init_fpu();
	ia64_fph_disable();
}

/* save f32-f127 at FPH */
static inline void
ia64_save_fpu (struct ia64_fpreg *fph) {
	ia64_fph_enable();
	__ia64_save_fpu(fph);
	ia64_fph_disable();
}

/* load f32-f127 from FPH */
static inline void
ia64_load_fpu (struct ia64_fpreg *fph) {
	ia64_fph_enable();
	__ia64_load_fpu(fph);
	ia64_fph_disable();
}

static inline void
ia64_fc (void *addr)
{
Linus Torvalds's avatar
Linus Torvalds committed
571
	asm volatile ("fc %0" :: "r"(addr) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
572 573 574 575 576
}

static inline void
ia64_sync_i (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
577
	asm volatile (";; sync.i" ::: "memory");
Linus Torvalds's avatar
Linus Torvalds committed
578 579 580 581 582
}

static inline void
ia64_srlz_i (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
583
	asm volatile (";; srlz.i ;;" ::: "memory");
Linus Torvalds's avatar
Linus Torvalds committed
584 585 586 587 588
}

static inline void
ia64_srlz_d (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
589
	asm volatile (";; srlz.d" ::: "memory");
Linus Torvalds's avatar
Linus Torvalds committed
590 591 592 593 594 595
}

static inline __u64
ia64_get_rr (__u64 reg_bits)
{
	__u64 r;
Linus Torvalds's avatar
Linus Torvalds committed
596
	asm volatile ("mov %0=rr[%1]" : "=r"(r) : "r"(reg_bits) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
597 598 599 600 601 602
	return r;
}

static inline void
ia64_set_rr (__u64 reg_bits, __u64 rr_val)
{
Linus Torvalds's avatar
Linus Torvalds committed
603
	asm volatile ("mov rr[%0]=%1" :: "r"(reg_bits), "r"(rr_val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
604 605 606 607 608 609
}

static inline __u64
ia64_get_dcr (void)
{
	__u64 r;
Linus Torvalds's avatar
Linus Torvalds committed
610
	asm volatile ("mov %0=cr.dcr" : "=r"(r));
Linus Torvalds's avatar
Linus Torvalds committed
611 612 613 614 615 616
	return r;
}

static inline void
ia64_set_dcr (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
617
	asm volatile ("mov cr.dcr=%0;;" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
618 619 620 621 622 623 624
	ia64_srlz_d();
}

static inline __u64
ia64_get_lid (void)
{
	__u64 r;
Linus Torvalds's avatar
Linus Torvalds committed
625
	asm volatile ("mov %0=cr.lid" : "=r"(r));
Linus Torvalds's avatar
Linus Torvalds committed
626 627 628 629 630 631
	return r;
}

static inline void
ia64_invala (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
632
	asm volatile ("invala" ::: "memory");
Linus Torvalds's avatar
Linus Torvalds committed
633 634 635
}

/*
Linus Torvalds's avatar
Linus Torvalds committed
636 637 638
 * Save the processor status flags in FLAGS and then clear the interrupt collection and
 * interrupt enable bits.  Don't trigger any mandatory RSE references while this bit is
 * off!
Linus Torvalds's avatar
Linus Torvalds committed
639
 */
Linus Torvalds's avatar
Linus Torvalds committed
640
#define ia64_clear_ic(flags)						\
Linus Torvalds's avatar
Linus Torvalds committed
641
	asm volatile ("mov %0=psr;; rsm psr.i | psr.ic;; srlz.i;;"	\
Linus Torvalds's avatar
Linus Torvalds committed
642 643 644 645 646 647 648 649 650 651 652
			      : "=r"(flags) :: "memory");

/*
 * Insert a translation into an instruction and/or data translation
 * register.
 */
static inline void
ia64_itr (__u64 target_mask, __u64 tr_num,
	  __u64 vmaddr, __u64 pte,
	  __u64 log_page_size)
{
Linus Torvalds's avatar
Linus Torvalds committed
653 654
	asm volatile ("mov cr.itir=%0" :: "r"(log_page_size << 2) : "memory");
	asm volatile ("mov cr.ifa=%0;;" :: "r"(vmaddr) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
655
	if (target_mask & 0x1)
Linus Torvalds's avatar
Linus Torvalds committed
656
		asm volatile ("itr.i itr[%0]=%1"
Linus Torvalds's avatar
Linus Torvalds committed
657 658
				      :: "r"(tr_num), "r"(pte) : "memory");
	if (target_mask & 0x2)
Linus Torvalds's avatar
Linus Torvalds committed
659
		asm volatile (";;itr.d dtr[%0]=%1"
Linus Torvalds's avatar
Linus Torvalds committed
660 661 662 663 664 665 666 667 668 669 670
				      :: "r"(tr_num), "r"(pte) : "memory");
}

/*
 * Insert a translation into the instruction and/or data translation
 * cache.
 */
static inline void
ia64_itc (__u64 target_mask, __u64 vmaddr, __u64 pte,
	  __u64 log_page_size)
{
Linus Torvalds's avatar
Linus Torvalds committed
671 672
	asm volatile ("mov cr.itir=%0" :: "r"(log_page_size << 2) : "memory");
	asm volatile ("mov cr.ifa=%0;;" :: "r"(vmaddr) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
673 674
	/* as per EAS2.6, itc must be the last instruction in an instruction group */
	if (target_mask & 0x1)
Linus Torvalds's avatar
Linus Torvalds committed
675
		asm volatile ("itc.i %0;;" :: "r"(pte) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
676
	if (target_mask & 0x2)
Linus Torvalds's avatar
Linus Torvalds committed
677
		asm volatile (";;itc.d %0;;" :: "r"(pte) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
678 679 680 681 682 683 684 685 686 687
}

/*
 * Purge a range of addresses from instruction and/or data translation
 * register(s).
 */
static inline void
ia64_ptr (__u64 target_mask, __u64 vmaddr, __u64 log_size)
{
	if (target_mask & 0x1)
Linus Torvalds's avatar
Linus Torvalds committed
688
		asm volatile ("ptr.i %0,%1" :: "r"(vmaddr), "r"(log_size << 2));
Linus Torvalds's avatar
Linus Torvalds committed
689
	if (target_mask & 0x2)
Linus Torvalds's avatar
Linus Torvalds committed
690
		asm volatile ("ptr.d %0,%1" :: "r"(vmaddr), "r"(log_size << 2));
Linus Torvalds's avatar
Linus Torvalds committed
691 692 693 694 695 696
}

/* Set the interrupt vector address.  The address must be suitably aligned (32KB).  */
static inline void
ia64_set_iva (void *ivt_addr)
{
Linus Torvalds's avatar
Linus Torvalds committed
697
	asm volatile ("mov cr.iva=%0;; srlz.i;;" :: "r"(ivt_addr) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
698 699 700 701 702 703 704
}

/* Set the page table address and control bits.  */
static inline void
ia64_set_pta (__u64 pta)
{
	/* Note: srlz.i implies srlz.d */
Linus Torvalds's avatar
Linus Torvalds committed
705
	asm volatile ("mov cr.pta=%0;; srlz.i;;" :: "r"(pta) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
706 707 708 709 710 711 712
}

static inline __u64
ia64_get_cpuid (__u64 regnum)
{
	__u64 r;

Linus Torvalds's avatar
Linus Torvalds committed
713
	asm ("mov %0=cpuid[%r1]" : "=r"(r) : "rO"(regnum));
Linus Torvalds's avatar
Linus Torvalds committed
714 715 716 717 718 719
	return r;
}

static inline void
ia64_eoi (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
720
	asm ("mov cr.eoi=r0;; srlz.d;;" ::: "memory");
Linus Torvalds's avatar
Linus Torvalds committed
721 722 723
}

static inline void
Linus Torvalds's avatar
Linus Torvalds committed
724
ia64_set_lrr0 (unsigned long val)
Linus Torvalds's avatar
Linus Torvalds committed
725
{
Linus Torvalds's avatar
Linus Torvalds committed
726
	asm volatile ("mov cr.lrr0=%0;; srlz.d" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
727 728
}

Linus Torvalds's avatar
Linus Torvalds committed
729 730
#define cpu_relax()	do { } while (0)

Linus Torvalds's avatar
Linus Torvalds committed
731 732

static inline void
Linus Torvalds's avatar
Linus Torvalds committed
733
ia64_set_lrr1 (unsigned long val)
Linus Torvalds's avatar
Linus Torvalds committed
734
{
Linus Torvalds's avatar
Linus Torvalds committed
735
	asm volatile ("mov cr.lrr1=%0;; srlz.d" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
736 737 738 739 740
}

static inline void
ia64_set_pmv (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
741
	asm volatile ("mov cr.pmv=%0" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
742 743 744 745 746 747 748
}

static inline __u64
ia64_get_pmc (__u64 regnum)
{
	__u64 retval;

Linus Torvalds's avatar
Linus Torvalds committed
749
	asm volatile ("mov %0=pmc[%1]" : "=r"(retval) : "r"(regnum));
Linus Torvalds's avatar
Linus Torvalds committed
750 751 752 753 754 755
	return retval;
}

static inline void
ia64_set_pmc (__u64 regnum, __u64 value)
{
Linus Torvalds's avatar
Linus Torvalds committed
756
	asm volatile ("mov pmc[%0]=%1" :: "r"(regnum), "r"(value));
Linus Torvalds's avatar
Linus Torvalds committed
757 758 759 760 761 762 763
}

static inline __u64
ia64_get_pmd (__u64 regnum)
{
	__u64 retval;

Linus Torvalds's avatar
Linus Torvalds committed
764
	asm volatile ("mov %0=pmd[%1]" : "=r"(retval) : "r"(regnum));
Linus Torvalds's avatar
Linus Torvalds committed
765 766 767 768 769 770
	return retval;
}

static inline void
ia64_set_pmd (__u64 regnum, __u64 value)
{
Linus Torvalds's avatar
Linus Torvalds committed
771
	asm volatile ("mov pmd[%0]=%1" :: "r"(regnum), "r"(value));
Linus Torvalds's avatar
Linus Torvalds committed
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
}

/*
 * Given the address to which a spill occurred, return the unat bit
 * number that corresponds to this address.
 */
static inline __u64
ia64_unat_pos (void *spill_addr)
{
	return ((__u64) spill_addr >> 3) & 0x3f;
}

/*
 * Set the NaT bit of an integer register which was spilled at address
 * SPILL_ADDR.  UNAT is the mask to be updated.
 */
static inline void
ia64_set_unat (__u64 *unat, void *spill_addr, unsigned long nat)
{
	__u64 bit = ia64_unat_pos(spill_addr);
	__u64 mask = 1UL << bit;

	*unat = (*unat & ~mask) | (nat << bit);
}

/*
 * Return saved PC of a blocked thread.
 * Note that the only way T can block is through a call to schedule() -> switch_to().
 */
static inline unsigned long
David Mosberger's avatar
David Mosberger committed
802
thread_saved_pc (struct task_struct *t)
Linus Torvalds's avatar
Linus Torvalds committed
803 804 805 806
{
	struct unw_frame_info info;
	unsigned long ip;

David Mosberger's avatar
David Mosberger committed
807
	unw_init_from_blocked_task(&info, t);
Linus Torvalds's avatar
Linus Torvalds committed
808 809 810 811 812 813 814 815 816 817
	if (unw_unwind(&info) < 0)
		return 0;
	unw_get_ip(&info, &ip);
	return ip;
}

/*
 * Get the current instruction/program counter value.
 */
#define current_text_addr() \
Linus Torvalds's avatar
Linus Torvalds committed
818
	({ void *_pc; asm volatile ("mov %0=ip" : "=r" (_pc)); _pc; })
Linus Torvalds's avatar
Linus Torvalds committed
819 820 821 822 823 824 825

/*
 * Set the correctable machine check vector register
 */
static inline void
ia64_set_cmcv (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
826
	asm volatile ("mov cr.cmcv=%0" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
827 828 829 830 831 832 833 834 835 836
}

/*
 * Read the correctable machine check vector register
 */
static inline __u64
ia64_get_cmcv (void)
{
	__u64 val;

Linus Torvalds's avatar
Linus Torvalds committed
837
	asm volatile ("mov %0=cr.cmcv" : "=r"(val) :: "memory");
Linus Torvalds's avatar
Linus Torvalds committed
838 839 840 841 842 843 844
	return val;
}

static inline __u64
ia64_get_ivr (void)
{
	__u64 r;
Linus Torvalds's avatar
Linus Torvalds committed
845
	asm volatile ("srlz.d;; mov %0=cr.ivr;; srlz.d;;" : "=r"(r));
Linus Torvalds's avatar
Linus Torvalds committed
846 847 848 849 850 851
	return r;
}

static inline void
ia64_set_tpr (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
852
	asm volatile ("mov cr.tpr=%0" :: "r"(val));
Linus Torvalds's avatar
Linus Torvalds committed
853 854 855 856 857 858
}

static inline __u64
ia64_get_tpr (void)
{
	__u64 r;
Linus Torvalds's avatar
Linus Torvalds committed
859
	asm volatile ("mov %0=cr.tpr" : "=r"(r));
Linus Torvalds's avatar
Linus Torvalds committed
860 861 862 863 864 865
	return r;
}

static inline void
ia64_set_irr0 (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
866
	asm volatile("mov cr.irr0=%0;;" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
867 868 869 870 871 872 873 874 875
	ia64_srlz_d();
}

static inline __u64
ia64_get_irr0 (void)
{
	__u64 val;

	/* this is volatile because irr may change unbeknownst to gcc... */
Linus Torvalds's avatar
Linus Torvalds committed
876
	asm volatile("mov %0=cr.irr0" : "=r"(val));
Linus Torvalds's avatar
Linus Torvalds committed
877 878 879 880 881 882
	return val;
}

static inline void
ia64_set_irr1 (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
883
	asm volatile("mov cr.irr1=%0;;" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
884 885 886 887 888 889 890 891 892
	ia64_srlz_d();
}

static inline __u64
ia64_get_irr1 (void)
{
	__u64 val;

	/* this is volatile because irr may change unbeknownst to gcc... */
Linus Torvalds's avatar
Linus Torvalds committed
893
	asm volatile("mov %0=cr.irr1" : "=r"(val));
Linus Torvalds's avatar
Linus Torvalds committed
894 895 896 897 898 899
	return val;
}

static inline void
ia64_set_irr2 (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
900
	asm volatile("mov cr.irr2=%0;;" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
901 902 903 904 905 906 907 908 909
	ia64_srlz_d();
}

static inline __u64
ia64_get_irr2 (void)
{
	__u64 val;

	/* this is volatile because irr may change unbeknownst to gcc... */
Linus Torvalds's avatar
Linus Torvalds committed
910
	asm volatile("mov %0=cr.irr2" : "=r"(val));
Linus Torvalds's avatar
Linus Torvalds committed
911 912 913 914 915 916
	return val;
}

static inline void
ia64_set_irr3 (__u64 val)
{
Linus Torvalds's avatar
Linus Torvalds committed
917
	asm volatile("mov cr.irr3=%0;;" :: "r"(val) : "memory");
Linus Torvalds's avatar
Linus Torvalds committed
918 919 920 921 922 923 924 925 926
	ia64_srlz_d();
}

static inline __u64
ia64_get_irr3 (void)
{
	__u64 val;

	/* this is volatile because irr may change unbeknownst to gcc... */
Linus Torvalds's avatar
Linus Torvalds committed
927
	asm volatile ("mov %0=cr.irr3" : "=r"(val));
Linus Torvalds's avatar
Linus Torvalds committed
928 929 930 931 932 933 934 935
	return val;
}

static inline __u64
ia64_get_gp(void)
{
	__u64 val;

Linus Torvalds's avatar
Linus Torvalds committed
936
	asm ("mov %0=gp" : "=r"(val));
Linus Torvalds's avatar
Linus Torvalds committed
937 938 939
	return val;
}

Linus Torvalds's avatar
Linus Torvalds committed
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
static inline void
ia64_set_ibr (__u64 regnum, __u64 value)
{
	asm volatile ("mov ibr[%0]=%1" :: "r"(regnum), "r"(value));
}

static inline void
ia64_set_dbr (__u64 regnum, __u64 value)
{
	asm volatile ("mov dbr[%0]=%1" :: "r"(regnum), "r"(value));
#ifdef CONFIG_ITANIUM
	asm volatile (";; srlz.d");
#endif
}

static inline __u64
ia64_get_ibr (__u64 regnum)
{
	__u64 retval;

	asm volatile ("mov %0=ibr[%1]" : "=r"(retval) : "r"(regnum));
	return retval;
}

static inline __u64
ia64_get_dbr (__u64 regnum)
{
	__u64 retval;

	asm volatile ("mov %0=dbr[%1]" : "=r"(retval) : "r"(regnum));
#ifdef CONFIG_ITANIUM
	asm volatile (";; srlz.d");
#endif
	return retval;
}

Linus Torvalds's avatar
Linus Torvalds committed
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
/* XXX remove the handcoded version once we have a sufficiently clever compiler... */
#ifdef SMART_COMPILER
# define ia64_rotr(w,n)				\
  ({						\
	__u64 _w = (w), _n = (n);		\
						\
	(_w >> _n) | (_w << (64 - _n));		\
  })
#else
# define ia64_rotr(w,n)							\
  ({									\
	__u64 result;							\
	asm ("shrp %0=%1,%1,%2" : "=r"(result) : "r"(w), "i"(n));	\
	result;								\
  })
#endif

#define ia64_rotl(w,n)	ia64_rotr((w),(64)-(n))

static inline __u64
ia64_thash (__u64 addr)
{
	__u64 result;
	asm ("thash %0=%1" : "=r"(result) : "r" (addr));
	return result;
}

Linus Torvalds's avatar
Linus Torvalds committed
1003 1004 1005 1006 1007 1008 1009
static inline __u64
ia64_tpa (__u64 addr)
{
	__u64 result;
	asm ("tpa %0=%1" : "=r"(result) : "r"(addr));
	return result;
}
Linus Torvalds's avatar
Linus Torvalds committed
1010 1011 1012 1013 1014 1015

#define ARCH_HAS_PREFETCH
#define ARCH_HAS_PREFETCHW
#define ARCH_HAS_SPINLOCK_PREFETCH
#define PREFETCH_STRIDE 256

Linus Torvalds's avatar
Linus Torvalds committed
1016 1017
extern inline void
prefetch (const void *x)
Linus Torvalds's avatar
Linus Torvalds committed
1018 1019 1020
{
         __asm__ __volatile__ ("lfetch [%0]" : : "r"(x));
}
Linus Torvalds's avatar
Linus Torvalds committed
1021 1022 1023

extern inline void
prefetchw (const void *x)
Linus Torvalds's avatar
Linus Torvalds committed
1024 1025 1026 1027
{
	__asm__ __volatile__ ("lfetch.excl [%0]" : : "r"(x));
}

Linus Torvalds's avatar
Linus Torvalds committed
1028
#define spin_lock_prefetch(x)	prefetchw(x)
Linus Torvalds's avatar
Linus Torvalds committed
1029

Linus Torvalds's avatar
Linus Torvalds committed
1030 1031 1032
#endif /* !__ASSEMBLY__ */

#endif /* _ASM_IA64_PROCESSOR_H */