blob: fded453fd25cd20e01dbfeb8bfda2d58baedce55 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_GENERIC_PERCPU_H_
2#define _ASM_GENERIC_PERCPU_H_
David Howells5028eaa2009-04-21 23:00:29 +01003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/compiler.h>
Rusty Russellae1ee112007-05-02 19:27:10 +02005#include <linux/threads.h>
David Howells5028eaa2009-04-21 23:00:29 +01006#include <linux/percpu-defs.h>
travis@sgi.comacdac872008-01-30 13:32:52 +01007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#ifdef CONFIG_SMP
9
travis@sgi.comacdac872008-01-30 13:32:52 +010010/*
11 * per_cpu_offset() is the offset that has to be added to a
12 * percpu variable to get to the instance for a certain processor.
13 *
14 * Most arches use the __per_cpu_offset array for those offsets but
15 * some arches have their own ways of determining the offset (x86_64, s390).
16 */
17#ifndef __per_cpu_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -070018extern unsigned long __per_cpu_offset[NR_CPUS];
19
Ingo Molnara875a692006-07-03 00:24:26 -070020#define per_cpu_offset(x) (__per_cpu_offset[x])
travis@sgi.comacdac872008-01-30 13:32:52 +010021#endif
Ingo Molnara875a692006-07-03 00:24:26 -070022
travis@sgi.comacdac872008-01-30 13:32:52 +010023/*
24 * Determine the offset for the currently active processor.
25 * An arch may define __my_cpu_offset to provide a more effective
26 * means of obtaining the offset to the per cpu variables of the
27 * current processor.
28 */
29#ifndef __my_cpu_offset
30#define __my_cpu_offset per_cpu_offset(raw_smp_processor_id())
Hugh Dickins1e835272008-02-23 19:40:17 +000031#endif
32#ifdef CONFIG_DEBUG_PREEMPT
travis@sgi.comacdac872008-01-30 13:32:52 +010033#define my_cpu_offset per_cpu_offset(smp_processor_id())
34#else
35#define my_cpu_offset __my_cpu_offset
36#endif
37
38/*
39 * Add a offset to a pointer but keep the pointer as is.
40 *
41 * Only S390 provides its own means of moving the pointer.
42 */
43#ifndef SHIFT_PERCPU_PTR
Rusty Russelle0fdb0e2009-10-29 22:34:15 +090044/* Weird cast keeps both GCC and sparse happy. */
45#define SHIFT_PERCPU_PTR(__p, __offset) \
46 RELOC_HIDE((typeof(*(__p)) __kernel __force *)(__p), (__offset))
travis@sgi.comacdac872008-01-30 13:32:52 +010047#endif
48
49/*
Mike Travisdd5af902008-01-30 13:33:32 +010050 * A percpu variable may point to a discarded regions. The following are
travis@sgi.comacdac872008-01-30 13:32:52 +010051 * established ways to produce a usable pointer from the percpu variable
52 * offset.
53 */
54#define per_cpu(var, cpu) \
Rusty Russelldd17c8f2009-10-29 22:34:15 +090055 (*SHIFT_PERCPU_PTR(&(var), per_cpu_offset(cpu)))
travis@sgi.comacdac872008-01-30 13:32:52 +010056#define __get_cpu_var(var) \
Rusty Russelldd17c8f2009-10-29 22:34:15 +090057 (*SHIFT_PERCPU_PTR(&(var), my_cpu_offset))
travis@sgi.comacdac872008-01-30 13:32:52 +010058#define __raw_get_cpu_var(var) \
Rusty Russelldd17c8f2009-10-29 22:34:15 +090059 (*SHIFT_PERCPU_PTR(&(var), __my_cpu_offset))
travis@sgi.comacdac872008-01-30 13:32:52 +010060
Christoph Lameter7340a0b2009-10-03 19:48:22 +090061#define this_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, my_cpu_offset)
62#define __this_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, __my_cpu_offset)
63
travis@sgi.comacdac872008-01-30 13:32:52 +010064
Mike Travisdd5af902008-01-30 13:33:32 +010065#ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
travis@sgi.comacdac872008-01-30 13:32:52 +010066extern void setup_per_cpu_areas(void);
67#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#else /* ! SMP */
70
Rusty Russelldd17c8f2009-10-29 22:34:15 +090071#define per_cpu(var, cpu) (*((void)(cpu), &(var)))
72#define __get_cpu_var(var) (var)
73#define __raw_get_cpu_var(var) (var)
Christoph Lameter7340a0b2009-10-03 19:48:22 +090074#define this_cpu_ptr(ptr) per_cpu_ptr(ptr, 0)
75#define __this_cpu_ptr(ptr) this_cpu_ptr(ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#endif /* SMP */
78
David Howells9b8de742009-04-21 23:00:24 +010079#ifndef PER_CPU_BASE_SECTION
80#ifdef CONFIG_SMP
81#define PER_CPU_BASE_SECTION ".data.percpu"
82#else
83#define PER_CPU_BASE_SECTION ".data"
84#endif
85#endif
86
87#ifdef CONFIG_SMP
88
89#ifdef MODULE
90#define PER_CPU_SHARED_ALIGNED_SECTION ""
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -070091#define PER_CPU_ALIGNED_SECTION ""
David Howells9b8de742009-04-21 23:00:24 +010092#else
93#define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned"
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -070094#define PER_CPU_ALIGNED_SECTION ".shared_aligned"
David Howells9b8de742009-04-21 23:00:24 +010095#endif
96#define PER_CPU_FIRST_SECTION ".first"
97
98#else
99
100#define PER_CPU_SHARED_ALIGNED_SECTION ""
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -0700101#define PER_CPU_ALIGNED_SECTION ".shared_aligned"
David Howells9b8de742009-04-21 23:00:24 +0100102#define PER_CPU_FIRST_SECTION ""
103
104#endif
105
travis@sgi.comacdac872008-01-30 13:32:52 +0100106#ifndef PER_CPU_ATTRIBUTES
107#define PER_CPU_ATTRIBUTES
108#endif
109
Tejun Heob01e8dc2009-06-30 11:41:18 -0700110#ifndef PER_CPU_DEF_ATTRIBUTES
111#define PER_CPU_DEF_ATTRIBUTES
112#endif
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif /* _ASM_GENERIC_PERCPU_H_ */