blob: 77f30b664b4eade81ca0985be35d97825fe0a3a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_IA64_PERCPU_H
2#define _ASM_IA64_PERCPU_H
3
4/*
5 * Copyright (C) 2002-2003 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
7 */
8
9#define PERCPU_ENOUGH_ROOM PERCPU_PAGE_SIZE
10
11#ifdef __ASSEMBLY__
12# define THIS_CPU(var) (per_cpu__##var) /* use this to mark accesses to per-CPU variables... */
13#else /* !__ASSEMBLY__ */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <linux/threads.h>
17
Ingo Molnarab6e14b2008-01-30 23:27:58 +010018#ifdef CONFIG_SMP
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#ifdef HAVE_MODEL_SMALL_ATTRIBUTE
travis@sgi.com5280e002008-01-30 13:32:52 +010021# define PER_CPU_ATTRIBUTES __attribute__((__model__ (__small__)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#endif
23
travis@sgi.com05991be2008-01-30 23:27:58 +010024#define __my_cpu_offset __ia64_per_cpu_var(local_per_cpu_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026extern void *per_cpu_init(void);
27
28#else /* ! SMP */
29
Ingo Molnarab6e14b2008-01-30 23:27:58 +010030#define PER_CPU_ATTRIBUTES __attribute__((__section__(".data.percpu")))
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define per_cpu_init() (__phys_per_cpu_start)
33
34#endif /* SMP */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
37 * Be extremely careful when taking the address of this variable! Due to virtual
38 * remapping, it is different from the canonical address returned by __get_cpu_var(var)!
39 * On the positive side, using __ia64_per_cpu_var() instead of __get_cpu_var() is slightly
40 * more efficient.
41 */
travis@sgi.com05991be2008-01-30 23:27:58 +010042#define __ia64_per_cpu_var(var) per_cpu__##var
43
44#include <asm-generic/percpu.h>
45
46/* Equal to __per_cpu_offset[smp_processor_id()], but faster to access: */
47DECLARE_PER_CPU(unsigned long, local_per_cpu_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#endif /* !__ASSEMBLY__ */
50
51#endif /* _ASM_IA64_PERCPU_H */