Merge tag 'wireless-next-2023-11-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / include / linux / percpu.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __LINUX_PERCPU_H
3#define __LINUX_PERCPU_H
7ff6f082 4
309381fe 5#include <linux/mmdebug.h>
0a3021f4 6#include <linux/preempt.h>
1da177e4 7#include <linux/smp.h>
7ff6f082 8#include <linux/cpumask.h>
6a242909 9#include <linux/pfn.h>
de380b55 10#include <linux/init.h>
54da6a09 11#include <linux/cleanup.h>
7ff6f082 12
1da177e4
LT
13#include <asm/percpu.h>
14
6a242909 15/* enough to cover all DEFINE_PER_CPUs in modules */
b00742d3 16#ifdef CONFIG_MODULES
6a242909 17#define PERCPU_MODULE_RESERVE (8 << 10)
b00742d3 18#else
6a242909 19#define PERCPU_MODULE_RESERVE 0
1da177e4
LT
20#endif
21
8d408b4b 22/* minimum unit size, also is the maximum supported allocation size */
6abad5ac 23#define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)
8d408b4b 24
d2f3c384
DZF
25/* minimum allocation size and shift in bytes */
26#define PCPU_MIN_ALLOC_SHIFT 2
27#define PCPU_MIN_ALLOC_SIZE (1 << PCPU_MIN_ALLOC_SHIFT)
28
ca460b3c 29/*
b239f7da
DZ
30 * The PCPU_BITMAP_BLOCK_SIZE must be the same size as PAGE_SIZE as the
31 * updating of hints is used to manage the nr_empty_pop_pages in both
32 * the chunk and globally.
ca460b3c
DZF
33 */
34#define PCPU_BITMAP_BLOCK_SIZE PAGE_SIZE
35#define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \
36 PCPU_MIN_ALLOC_SHIFT)
37
3c615294
GR
38#ifdef CONFIG_RANDOM_KMALLOC_CACHES
39#define PERCPU_DYNAMIC_SIZE_SHIFT 12
40#else
41#define PERCPU_DYNAMIC_SIZE_SHIFT 10
42#endif
43
099a19d9
TH
44/*
45 * Percpu allocator can serve percpu allocations before slab is
46 * initialized which allows slab to depend on the percpu allocator.
d667c949
BH
47 * The following parameter decide how much resource to preallocate
48 * for this. Keep PERCPU_DYNAMIC_RESERVE equal to or larger than
49 * PERCPU_DYNAMIC_EARLY_SIZE.
099a19d9 50 */
3c615294 51#define PERCPU_DYNAMIC_EARLY_SIZE (20 << PERCPU_DYNAMIC_SIZE_SHIFT)
099a19d9 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
3c615294 65#define PERCPU_DYNAMIC_RESERVE (28 << PERCPU_DYNAMIC_SIZE_SHIFT)
6b19b0c2 66#else
3c615294 67#define PERCPU_DYNAMIC_RESERVE (20 << PERCPU_DYNAMIC_SIZE_SHIFT)
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
1ca3fb3a 103typedef int (pcpu_fc_cpu_to_node_fn_t)(int cpu);
a530b795 104typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
fbf59bc9 105
fd1e8a1f
TH
106extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
107 int nr_units);
108extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);
109
163fa234 110extern void __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
fb435d52 111 void *base_addr);
8d408b4b 112
4ba6ce25 113extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
c8826dd5
TH
114 size_t atom_size,
115 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
23f91716 116 pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn);
66c3a757 117
08fc4580 118#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
20c03576 119void __init pcpu_populate_pte(unsigned long addr);
fb435d52 120extern int __init pcpu_page_first_chunk(size_t reserved_size,
20c03576 121 pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn);
08fc4580 122#endif
d4b95f80 123
17197dd4 124extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align) __alloc_size(1);
383776fa 125extern bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr);
10fad5e4 126extern bool is_kernel_percpu_address(unsigned long addr);
1da177e4 127
bbddff05 128#if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
e74e3962
TH
129extern void __init setup_per_cpu_areas(void);
130#endif
131
17197dd4
KC
132extern void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp) __alloc_size(1);
133extern void __percpu *__alloc_percpu(size_t size, size_t align) __alloc_size(1);
de380b55 134extern void free_percpu(void __percpu *__pdata);
b460bc83 135extern size_t pcpu_alloc_size(void __percpu *__pdata);
54da6a09
PZ
136
137DEFINE_FREE(free_percpu, void __percpu *, free_percpu(_T))
138
de380b55
TH
139extern phys_addr_t per_cpu_ptr_to_phys(void *addr);
140
5835d96e
TH
141#define alloc_percpu_gfp(type, gfp) \
142 (typeof(type) __percpu *)__alloc_percpu_gfp(sizeof(type), \
143 __alignof__(type), gfp)
144#define alloc_percpu(type) \
145 (typeof(type) __percpu *)__alloc_percpu(sizeof(type), \
146 __alignof__(type))
1da177e4 147
7e8a6304
DZF
148extern unsigned long pcpu_nr_pages(void);
149
1da177e4 150#endif /* __LINUX_PERCPU_H */