]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - include/linux/percpu.h
Linux 4.14-rc6
[mirror_ubuntu-focal-kernel.git] / include / linux / percpu.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_PERCPU_H
2#define __LINUX_PERCPU_H
7ff6f082 3
309381fe 4#include <linux/mmdebug.h>
0a3021f4 5#include <linux/preempt.h>
1da177e4 6#include <linux/smp.h>
7ff6f082 7#include <linux/cpumask.h>
04b74b27 8#include <linux/printk.h>
6a242909 9#include <linux/pfn.h>
de380b55 10#include <linux/init.h>
7ff6f082 11
1da177e4
LT
12#include <asm/percpu.h>
13
6a242909 14/* enough to cover all DEFINE_PER_CPUs in modules */
b00742d3 15#ifdef CONFIG_MODULES
6a242909 16#define PERCPU_MODULE_RESERVE (8 << 10)
b00742d3 17#else
6a242909 18#define PERCPU_MODULE_RESERVE 0
1da177e4
LT
19#endif
20
8d408b4b 21/* minimum unit size, also is the maximum supported allocation size */
6abad5ac 22#define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)
8d408b4b 23
d2f3c384
DZF
24/* minimum allocation size and shift in bytes */
25#define PCPU_MIN_ALLOC_SHIFT 2
26#define PCPU_MIN_ALLOC_SIZE (1 << PCPU_MIN_ALLOC_SHIFT)
27
b185cd0d
DZF
28/* number of bits per page, used to trigger a scan if blocks are > PAGE_SIZE */
29#define PCPU_BITS_PER_PAGE (PAGE_SIZE >> PCPU_MIN_ALLOC_SHIFT)
30
ca460b3c
DZF
31/*
32 * This determines the size of each metadata block. There are several subtle
33 * constraints around this constant. The reserved region must be a multiple of
34 * PCPU_BITMAP_BLOCK_SIZE. Additionally, PCPU_BITMAP_BLOCK_SIZE must be a
35 * multiple of PAGE_SIZE or PAGE_SIZE must be a multiple of
36 * PCPU_BITMAP_BLOCK_SIZE to align with the populated page map. The unit_size
37 * also has to be a multiple of PCPU_BITMAP_BLOCK_SIZE to ensure full blocks.
38 */
39#define PCPU_BITMAP_BLOCK_SIZE PAGE_SIZE
40#define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \
41 PCPU_MIN_ALLOC_SHIFT)
42
099a19d9
TH
43/*
44 * Percpu allocator can serve percpu allocations before slab is
45 * initialized which allows slab to depend on the percpu allocator.
46 * The following two parameters decide how much resource to
47 * preallocate for this. Keep PERCPU_DYNAMIC_RESERVE equal to or
48 * larger than PERCPU_DYNAMIC_EARLY_SIZE.
49 */
50#define PERCPU_DYNAMIC_EARLY_SLOTS 128
51#define PERCPU_DYNAMIC_EARLY_SIZE (12 << 10)
52
8d408b4b
TH
53/*
54 * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
6b19b0c2
TH
55 * back on the first chunk for dynamic percpu allocation if arch is
56 * manually allocating and mapping it for faster access (as a part of
57 * large page mapping for example).
8d408b4b 58 *
6b19b0c2
TH
59 * The following values give between one and two pages of free space
60 * after typical minimal boot (2-way SMP, single disk and NIC) with
61 * both defconfig and a distro config on x86_64 and 32. More
62 * intelligent way to determine this would be nice.
8d408b4b 63 */
6b19b0c2 64#if BITS_PER_LONG > 32
1a4d7607 65#define PERCPU_DYNAMIC_RESERVE (28 << 10)
6b19b0c2 66#else
1a4d7607 67#define PERCPU_DYNAMIC_RESERVE (20 << 10)
6b19b0c2 68#endif
8d408b4b 69
fbf59bc9 70extern void *pcpu_base_addr;
fb435d52 71extern const unsigned long *pcpu_unit_offsets;
1da177e4 72
fd1e8a1f
TH
73struct pcpu_group_info {
74 int nr_units; /* aligned # of units */
75 unsigned long base_offset; /* base address offset */
76 unsigned int *cpu_map; /* unit->cpu map, empty
77 * entries contain NR_CPUS */
78};
79
80struct pcpu_alloc_info {
81 size_t static_size;
82 size_t reserved_size;
83 size_t dyn_size;
84 size_t unit_size;
85 size_t atom_size;
86 size_t alloc_size;
87 size_t __ai_size; /* internal, don't use */
88 int nr_groups; /* 0 if grouping unnecessary */
89 struct pcpu_group_info groups[];
90};
91
f58dc01b
TH
92enum pcpu_fc {
93 PCPU_FC_AUTO,
94 PCPU_FC_EMBED,
95 PCPU_FC_PAGE,
f58dc01b
TH
96
97 PCPU_FC_NR,
98};
17f3609c 99extern const char * const pcpu_fc_names[PCPU_FC_NR];
f58dc01b
TH
100
101extern enum pcpu_fc pcpu_chosen_fc;
102
3cbc8565
TH
103typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int cpu, size_t size,
104 size_t align);
d4b95f80
TH
105typedef void (*pcpu_fc_free_fn_t)(void *ptr, size_t size);
106typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr);
a530b795 107typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
fbf59bc9 108
fd1e8a1f
TH
109extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
110 int nr_units);
111extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);
112
fb435d52
TH
113extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
114 void *base_addr);
8d408b4b 115
08fc4580 116#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
4ba6ce25 117extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
c8826dd5
TH
118 size_t atom_size,
119 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
120 pcpu_fc_alloc_fn_t alloc_fn,
121 pcpu_fc_free_fn_t free_fn);
08fc4580 122#endif
66c3a757 123
08fc4580 124#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
fb435d52 125extern int __init pcpu_page_first_chunk(size_t reserved_size,
d4b95f80
TH
126 pcpu_fc_alloc_fn_t alloc_fn,
127 pcpu_fc_free_fn_t free_fn,
128 pcpu_fc_populate_pte_fn_t populate_pte_fn);
08fc4580 129#endif
d4b95f80 130
e0fdb0e0 131extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align);
383776fa 132extern bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr);
10fad5e4 133extern bool is_kernel_percpu_address(unsigned long addr);
1da177e4 134
bbddff05 135#if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
e74e3962
TH
136extern void __init setup_per_cpu_areas(void);
137#endif
138
5835d96e 139extern void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp);
de380b55
TH
140extern void __percpu *__alloc_percpu(size_t size, size_t align);
141extern void free_percpu(void __percpu *__pdata);
142extern phys_addr_t per_cpu_ptr_to_phys(void *addr);
143
5835d96e
TH
144#define alloc_percpu_gfp(type, gfp) \
145 (typeof(type) __percpu *)__alloc_percpu_gfp(sizeof(type), \
146 __alignof__(type), gfp)
147#define alloc_percpu(type) \
148 (typeof(type) __percpu *)__alloc_percpu(sizeof(type), \
149 __alignof__(type))
1da177e4
LT
150
151#endif /* __LINUX_PERCPU_H */