blob: 296bbe49d5d18368737e89203cf96d6937f8f016 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __LINUX_PERCPU_H
3#define __LINUX_PERCPU_H
Martin Peschke7ff6f082006-09-25 23:31:21 -07004
Sasha Levin309381fea2014-01-23 15:52:54 -08005#include <linux/mmdebug.h>
Robert P. J. Day0a3021f2007-07-15 23:39:57 -07006#include <linux/preempt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/smp.h>
Martin Peschke7ff6f082006-09-25 23:31:21 -07008#include <linux/cpumask.h>
Steven Rostedt (Red Hat)04b74b22014-11-21 09:16:58 -05009#include <linux/printk.h>
Tejun Heo6a242902009-03-06 14:33:58 +090010#include <linux/pfn.h>
Tejun Heode380b52010-03-24 17:06:43 +090011#include <linux/init.h>
Martin Peschke7ff6f082006-09-25 23:31:21 -070012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/percpu.h>
14
Tejun Heo6a242902009-03-06 14:33:58 +090015/* enough to cover all DEFINE_PER_CPUs in modules */
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020016#ifdef CONFIG_MODULES
Tejun Heo6a242902009-03-06 14:33:58 +090017#define PERCPU_MODULE_RESERVE (8 << 10)
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020018#else
Tejun Heo6a242902009-03-06 14:33:58 +090019#define PERCPU_MODULE_RESERVE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#endif
21
Tejun Heo8d408b42009-02-24 11:57:21 +090022/* minimum unit size, also is the maximum supported allocation size */
Tejun Heo6abad5a2010-09-03 18:22:47 +020023#define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)
Tejun Heo8d408b42009-02-24 11:57:21 +090024
Dennis Zhou (Facebook)d2f3c382017-07-24 19:02:09 -040025/* 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
Dennis Zhou (Facebook)b185cd02017-07-24 19:02:17 -040029/* number of bits per page, used to trigger a scan if blocks are > PAGE_SIZE */
30#define PCPU_BITS_PER_PAGE (PAGE_SIZE >> PCPU_MIN_ALLOC_SHIFT)
31
Tejun Heo8d408b42009-02-24 11:57:21 +090032/*
Dennis Zhou (Facebook)ca460b32017-07-24 19:02:12 -040033 * This determines the size of each metadata block. There are several subtle
34 * constraints around this constant. The reserved region must be a multiple of
35 * PCPU_BITMAP_BLOCK_SIZE. Additionally, PCPU_BITMAP_BLOCK_SIZE must be a
36 * multiple of PAGE_SIZE or PAGE_SIZE must be a multiple of
37 * PCPU_BITMAP_BLOCK_SIZE to align with the populated page map. The unit_size
38 * also has to be a multiple of PCPU_BITMAP_BLOCK_SIZE to ensure full blocks.
39 */
40#define PCPU_BITMAP_BLOCK_SIZE PAGE_SIZE
41#define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \
42 PCPU_MIN_ALLOC_SHIFT)
43
44/*
Tejun Heo099a19d2010-06-27 18:50:00 +020045 * Percpu allocator can serve percpu allocations before slab is
46 * initialized which allows slab to depend on the percpu allocator.
47 * The following two parameters decide how much resource to
48 * preallocate for this. Keep PERCPU_DYNAMIC_RESERVE equal to or
49 * larger than PERCPU_DYNAMIC_EARLY_SIZE.
50 */
51#define PERCPU_DYNAMIC_EARLY_SLOTS 128
52#define PERCPU_DYNAMIC_EARLY_SIZE (12 << 10)
53
54/*
Tejun Heo8d408b42009-02-24 11:57:21 +090055 * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
Tejun Heo6b19b0c2009-03-06 14:33:59 +090056 * back on the first chunk for dynamic percpu allocation if arch is
57 * manually allocating and mapping it for faster access (as a part of
58 * large page mapping for example).
Tejun Heo8d408b42009-02-24 11:57:21 +090059 *
Tejun Heo6b19b0c2009-03-06 14:33:59 +090060 * The following values give between one and two pages of free space
61 * after typical minimal boot (2-way SMP, single disk and NIC) with
62 * both defconfig and a distro config on x86_64 and 32. More
63 * intelligent way to determine this would be nice.
Tejun Heo8d408b42009-02-24 11:57:21 +090064 */
Tejun Heo6b19b0c2009-03-06 14:33:59 +090065#if BITS_PER_LONG > 32
Tejun Heo1a4d7602014-09-02 14:46:05 -040066#define PERCPU_DYNAMIC_RESERVE (28 << 10)
Tejun Heo6b19b0c2009-03-06 14:33:59 +090067#else
Tejun Heo1a4d7602014-09-02 14:46:05 -040068#define PERCPU_DYNAMIC_RESERVE (20 << 10)
Tejun Heo6b19b0c2009-03-06 14:33:59 +090069#endif
Tejun Heo8d408b42009-02-24 11:57:21 +090070
Tejun Heofbf59bc2009-02-20 16:29:08 +090071extern void *pcpu_base_addr;
Tejun Heofb435d52009-08-14 15:00:51 +090072extern const unsigned long *pcpu_unit_offsets;
Tejun Heofbf59bc2009-02-20 16:29:08 +090073
Tejun Heofd1e8a12009-08-14 15:00:51 +090074struct pcpu_group_info {
75 int nr_units; /* aligned # of units */
76 unsigned long base_offset; /* base address offset */
77 unsigned int *cpu_map; /* unit->cpu map, empty
78 * entries contain NR_CPUS */
79};
80
81struct pcpu_alloc_info {
82 size_t static_size;
83 size_t reserved_size;
84 size_t dyn_size;
85 size_t unit_size;
86 size_t atom_size;
87 size_t alloc_size;
88 size_t __ai_size; /* internal, don't use */
89 int nr_groups; /* 0 if grouping unnecessary */
90 struct pcpu_group_info groups[];
91};
92
Tejun Heof58dc012009-08-14 15:00:50 +090093enum pcpu_fc {
94 PCPU_FC_AUTO,
95 PCPU_FC_EMBED,
96 PCPU_FC_PAGE,
Tejun Heof58dc012009-08-14 15:00:50 +090097
98 PCPU_FC_NR,
99};
Andi Kleen17f36092012-10-04 17:12:07 -0700100extern const char * const pcpu_fc_names[PCPU_FC_NR];
Tejun Heof58dc012009-08-14 15:00:50 +0900101
102extern enum pcpu_fc pcpu_chosen_fc;
103
Tejun Heo3cbc8562009-08-14 15:00:50 +0900104typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int cpu, size_t size,
105 size_t align);
Tejun Heod4b95f82009-07-04 08:10:59 +0900106typedef void (*pcpu_fc_free_fn_t)(void *ptr, size_t size);
107typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr);
Tejun Heoa530b792009-07-04 08:11:00 +0900108typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900109
Tejun Heofd1e8a12009-08-14 15:00:51 +0900110extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
111 int nr_units);
112extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);
Tejun Heo033e48f2009-08-14 15:00:51 +0900113
Tejun Heofb435d52009-08-14 15:00:51 +0900114extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
115 void *base_addr);
Tejun Heo8d408b42009-02-24 11:57:21 +0900116
Tejun Heo08fc4582009-08-14 15:00:49 +0900117#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
Tejun Heo4ba6ce22010-06-27 18:49:59 +0200118extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
Tejun Heoc8826dd2009-08-14 15:00:52 +0900119 size_t atom_size,
120 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
121 pcpu_fc_alloc_fn_t alloc_fn,
122 pcpu_fc_free_fn_t free_fn);
Tejun Heo08fc4582009-08-14 15:00:49 +0900123#endif
Tejun Heo66c3a752009-03-10 16:27:48 +0900124
Tejun Heo08fc4582009-08-14 15:00:49 +0900125#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
Tejun Heofb435d52009-08-14 15:00:51 +0900126extern int __init pcpu_page_first_chunk(size_t reserved_size,
Tejun Heod4b95f82009-07-04 08:10:59 +0900127 pcpu_fc_alloc_fn_t alloc_fn,
128 pcpu_fc_free_fn_t free_fn,
129 pcpu_fc_populate_pte_fn_t populate_pte_fn);
Tejun Heo08fc4582009-08-14 15:00:49 +0900130#endif
Tejun Heod4b95f82009-07-04 08:10:59 +0900131
Rusty Russelle0fdb0e2009-10-29 22:34:15 +0900132extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align);
Thomas Gleixner383776f2017-02-27 15:37:36 +0100133extern bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr);
Tejun Heo10fad5e2010-03-10 18:57:54 +0900134extern bool is_kernel_percpu_address(unsigned long addr);
Tejun Heof2a82052009-02-20 16:29:08 +0900135
Tejun Heobbddff02010-09-03 18:22:48 +0200136#if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
Tejun Heoe74e3962009-03-30 19:07:44 +0900137extern void __init setup_per_cpu_areas(void);
138#endif
139
Tejun Heo5835d962014-09-02 14:46:04 -0400140extern void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp);
Tejun Heode380b52010-03-24 17:06:43 +0900141extern void __percpu *__alloc_percpu(size_t size, size_t align);
142extern void free_percpu(void __percpu *__pdata);
143extern phys_addr_t per_cpu_ptr_to_phys(void *addr);
144
Tejun Heo5835d962014-09-02 14:46:04 -0400145#define alloc_percpu_gfp(type, gfp) \
146 (typeof(type) __percpu *)__alloc_percpu_gfp(sizeof(type), \
147 __alignof__(type), gfp)
148#define alloc_percpu(type) \
149 (typeof(type) __percpu *)__alloc_percpu(sizeof(type), \
150 __alignof__(type))
Tejun Heof2a82052009-02-20 16:29:08 +0900151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#endif /* __LINUX_PERCPU_H */