percpu.h 4.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
#ifndef __LINUX_PERCPU_H
#define __LINUX_PERCPU_H
3

4
#include <linux/mmdebug.h>
5
#include <linux/preempt.h>
L
Linus Torvalds 已提交
6
#include <linux/smp.h>
7
#include <linux/cpumask.h>
8
#include <linux/printk.h>
T
Tejun Heo 已提交
9
#include <linux/pfn.h>
10
#include <linux/init.h>
11

L
Linus Torvalds 已提交
12 13
#include <asm/percpu.h>

T
Tejun Heo 已提交
14
/* enough to cover all DEFINE_PER_CPUs in modules */
15
#ifdef CONFIG_MODULES
T
Tejun Heo 已提交
16
#define PERCPU_MODULE_RESERVE		(8 << 10)
17
#else
T
Tejun Heo 已提交
18
#define PERCPU_MODULE_RESERVE		0
L
Linus Torvalds 已提交
19 20
#endif

21
/* minimum unit size, also is the maximum supported allocation size */
22
#define PCPU_MIN_UNIT_SIZE		PFN_ALIGN(32 << 10)
23

24 25 26 27
/* minimum allocation size and shift in bytes */
#define PCPU_MIN_ALLOC_SHIFT		2
#define PCPU_MIN_ALLOC_SIZE		(1 << PCPU_MIN_ALLOC_SHIFT)

28 29 30 31 32 33 34 35 36 37 38 39
/*
 * This determines the size of each metadata block.  There are several subtle
 * constraints around this constant.  The reserved region must be a multiple of
 * PCPU_BITMAP_BLOCK_SIZE.  Additionally, PCPU_BITMAP_BLOCK_SIZE must be a
 * multiple of PAGE_SIZE or PAGE_SIZE must be a multiple of
 * PCPU_BITMAP_BLOCK_SIZE to align with the populated page map. The unit_size
 * also has to be a multiple of PCPU_BITMAP_BLOCK_SIZE to ensure full blocks.
 */
#define PCPU_BITMAP_BLOCK_SIZE		PAGE_SIZE
#define PCPU_BITMAP_BLOCK_BITS		(PCPU_BITMAP_BLOCK_SIZE >>	\
					 PCPU_MIN_ALLOC_SHIFT)

40 41 42 43 44 45 46 47 48 49
/*
 * Percpu allocator can serve percpu allocations before slab is
 * initialized which allows slab to depend on the percpu allocator.
 * The following two parameters decide how much resource to
 * preallocate for this.  Keep PERCPU_DYNAMIC_RESERVE equal to or
 * larger than PERCPU_DYNAMIC_EARLY_SIZE.
 */
#define PERCPU_DYNAMIC_EARLY_SLOTS	128
#define PERCPU_DYNAMIC_EARLY_SIZE	(12 << 10)

50 51
/*
 * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
52 53 54
 * back on the first chunk for dynamic percpu allocation if arch is
 * manually allocating and mapping it for faster access (as a part of
 * large page mapping for example).
55
 *
56 57 58 59
 * The following values give between one and two pages of free space
 * after typical minimal boot (2-way SMP, single disk and NIC) with
 * both defconfig and a distro config on x86_64 and 32.  More
 * intelligent way to determine this would be nice.
60
 */
61
#if BITS_PER_LONG > 32
62
#define PERCPU_DYNAMIC_RESERVE		(28 << 10)
63
#else
64
#define PERCPU_DYNAMIC_RESERVE		(20 << 10)
65
#endif
66

67
extern void *pcpu_base_addr;
T
Tejun Heo 已提交
68
extern const unsigned long *pcpu_unit_offsets;
L
Linus Torvalds 已提交
69

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
struct pcpu_group_info {
	int			nr_units;	/* aligned # of units */
	unsigned long		base_offset;	/* base address offset */
	unsigned int		*cpu_map;	/* unit->cpu map, empty
						 * entries contain NR_CPUS */
};

struct pcpu_alloc_info {
	size_t			static_size;
	size_t			reserved_size;
	size_t			dyn_size;
	size_t			unit_size;
	size_t			atom_size;
	size_t			alloc_size;
	size_t			__ai_size;	/* internal, don't use */
	int			nr_groups;	/* 0 if grouping unnecessary */
	struct pcpu_group_info	groups[];
};

89 90 91 92 93 94 95
enum pcpu_fc {
	PCPU_FC_AUTO,
	PCPU_FC_EMBED,
	PCPU_FC_PAGE,

	PCPU_FC_NR,
};
96
extern const char * const pcpu_fc_names[PCPU_FC_NR];
97 98 99

extern enum pcpu_fc pcpu_chosen_fc;

100 101
typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int cpu, size_t size,
				     size_t align);
102 103
typedef void (*pcpu_fc_free_fn_t)(void *ptr, size_t size);
typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr);
104
typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
105

106 107 108 109
extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
							     int nr_units);
extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);

T
Tejun Heo 已提交
110 111
extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
					 void *base_addr);
112

113
#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
114
extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
115 116 117 118
				size_t atom_size,
				pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
				pcpu_fc_alloc_fn_t alloc_fn,
				pcpu_fc_free_fn_t free_fn);
119
#endif
120

121
#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
T
Tejun Heo 已提交
122
extern int __init pcpu_page_first_chunk(size_t reserved_size,
123 124 125
				pcpu_fc_alloc_fn_t alloc_fn,
				pcpu_fc_free_fn_t free_fn,
				pcpu_fc_populate_pte_fn_t populate_pte_fn);
126
#endif
127

R
Rusty Russell 已提交
128
extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align);
129
extern bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr);
130
extern bool is_kernel_percpu_address(unsigned long addr);
L
Linus Torvalds 已提交
131

132
#if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
133 134 135
extern void __init setup_per_cpu_areas(void);
#endif

136
extern void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp);
137 138 139 140
extern void __percpu *__alloc_percpu(size_t size, size_t align);
extern void free_percpu(void __percpu *__pdata);
extern phys_addr_t per_cpu_ptr_to_phys(void *addr);

141 142 143 144 145 146
#define alloc_percpu_gfp(type, gfp)					\
	(typeof(type) __percpu *)__alloc_percpu_gfp(sizeof(type),	\
						__alignof__(type), gfp)
#define alloc_percpu(type)						\
	(typeof(type) __percpu *)__alloc_percpu(sizeof(type),		\
						__alignof__(type))
L
Linus Torvalds 已提交
147 148

#endif /* __LINUX_PERCPU_H */