xref: /linux/mm/percpu.c (revision a16037c8dfc2734c1a2c8e3ffd4766ed25f2a41d)
1fbf59bc9STejun Heo /*
288999a89STejun Heo  * mm/percpu.c - percpu memory allocator
3fbf59bc9STejun Heo  *
4fbf59bc9STejun Heo  * Copyright (C) 2009		SUSE Linux Products GmbH
5fbf59bc9STejun Heo  * Copyright (C) 2009		Tejun Heo <tj@kernel.org>
6fbf59bc9STejun Heo  *
7fbf59bc9STejun Heo  * This file is released under the GPLv2.
8fbf59bc9STejun Heo  *
9fbf59bc9STejun Heo  * This is percpu allocator which can handle both static and dynamic
1088999a89STejun Heo  * areas.  Percpu areas are allocated in chunks.  Each chunk is
1188999a89STejun Heo  * consisted of boot-time determined number of units and the first
1288999a89STejun Heo  * chunk is used for static percpu variables in the kernel image
132f39e637STejun Heo  * (special boot time alloc/init handling necessary as these areas
142f39e637STejun Heo  * need to be brought up before allocation services are running).
152f39e637STejun Heo  * Unit grows as necessary and all units grow or shrink in unison.
1688999a89STejun Heo  * When a chunk is filled up, another chunk is allocated.
17fbf59bc9STejun Heo  *
18fbf59bc9STejun Heo  *  c0                           c1                         c2
19fbf59bc9STejun Heo  *  -------------------          -------------------        ------------
20fbf59bc9STejun Heo  * | u0 | u1 | u2 | u3 |        | u0 | u1 | u2 | u3 |      | u0 | u1 | u
21fbf59bc9STejun Heo  *  -------------------  ......  -------------------  ....  ------------
22fbf59bc9STejun Heo  *
23fbf59bc9STejun Heo  * Allocation is done in offset-size areas of single unit space.  Ie,
24fbf59bc9STejun Heo  * an area of 512 bytes at 6k in c1 occupies 512 bytes at 6k of c1:u0,
252f39e637STejun Heo  * c1:u1, c1:u2 and c1:u3.  On UMA, units corresponds directly to
262f39e637STejun Heo  * cpus.  On NUMA, the mapping can be non-linear and even sparse.
272f39e637STejun Heo  * Percpu access can be done by configuring percpu base registers
282f39e637STejun Heo  * according to cpu to unit mapping and pcpu_unit_size.
29fbf59bc9STejun Heo  *
302f39e637STejun Heo  * There are usually many small percpu allocations many of them being
312f39e637STejun Heo  * as small as 4 bytes.  The allocator organizes chunks into lists
32fbf59bc9STejun Heo  * according to free size and tries to allocate from the fullest one.
33fbf59bc9STejun Heo  * Each chunk keeps the maximum contiguous area size hint which is
344785879eSNamhyung Kim  * guaranteed to be equal to or larger than the maximum contiguous
35fbf59bc9STejun Heo  * area in the chunk.  This helps the allocator not to iterate the
36fbf59bc9STejun Heo  * chunk maps unnecessarily.
37fbf59bc9STejun Heo  *
38fbf59bc9STejun Heo  * Allocation state in each chunk is kept using an array of integers
39fbf59bc9STejun Heo  * on chunk->map.  A positive value in the map represents a free
40fbf59bc9STejun Heo  * region and negative allocated.  Allocation inside a chunk is done
41fbf59bc9STejun Heo  * by scanning this map sequentially and serving the first matching
42fbf59bc9STejun Heo  * entry.  This is mostly copied from the percpu_modalloc() allocator.
43e1b9aa3fSChristoph Lameter  * Chunks can be determined from the address using the index field
44e1b9aa3fSChristoph Lameter  * in the page struct. The index field contains a pointer to the chunk.
45fbf59bc9STejun Heo  *
46fbf59bc9STejun Heo  * To use this allocator, arch code should do the followings.
47fbf59bc9STejun Heo  *
48fbf59bc9STejun Heo  * - define __addr_to_pcpu_ptr() and __pcpu_ptr_to_addr() to translate
49e0100983STejun Heo  *   regular address to percpu pointer and back if they need to be
50e0100983STejun Heo  *   different from the default
51fbf59bc9STejun Heo  *
528d408b4bSTejun Heo  * - use pcpu_setup_first_chunk() during percpu area initialization to
538d408b4bSTejun Heo  *   setup the first chunk containing the kernel static percpu area
54fbf59bc9STejun Heo  */
55fbf59bc9STejun Heo 
56fbf59bc9STejun Heo #include <linux/bitmap.h>
57fbf59bc9STejun Heo #include <linux/bootmem.h>
58fd1e8a1fSTejun Heo #include <linux/err.h>
59fbf59bc9STejun Heo #include <linux/list.h>
60a530b795STejun Heo #include <linux/log2.h>
61fbf59bc9STejun Heo #include <linux/mm.h>
62fbf59bc9STejun Heo #include <linux/module.h>
63fbf59bc9STejun Heo #include <linux/mutex.h>
64fbf59bc9STejun Heo #include <linux/percpu.h>
65fbf59bc9STejun Heo #include <linux/pfn.h>
66fbf59bc9STejun Heo #include <linux/slab.h>
67ccea34b5STejun Heo #include <linux/spinlock.h>
68fbf59bc9STejun Heo #include <linux/vmalloc.h>
69a56dbddfSTejun Heo #include <linux/workqueue.h>
70f528f0b8SCatalin Marinas #include <linux/kmemleak.h>
71fbf59bc9STejun Heo 
72fbf59bc9STejun Heo #include <asm/cacheflush.h>
73e0100983STejun Heo #include <asm/sections.h>
74fbf59bc9STejun Heo #include <asm/tlbflush.h>
753b034b0dSVivek Goyal #include <asm/io.h>
76fbf59bc9STejun Heo 
77fbf59bc9STejun Heo #define PCPU_SLOT_BASE_SHIFT		5	/* 1-31 shares the same slot */
78fbf59bc9STejun Heo #define PCPU_DFL_MAP_ALLOC		16	/* start a map with 16 ents */
79fbf59bc9STejun Heo 
80bbddff05STejun Heo #ifdef CONFIG_SMP
81e0100983STejun Heo /* default addr <-> pcpu_ptr mapping, override in asm/percpu.h if necessary */
82e0100983STejun Heo #ifndef __addr_to_pcpu_ptr
83e0100983STejun Heo #define __addr_to_pcpu_ptr(addr)					\
8443cf38ebSTejun Heo 	(void __percpu *)((unsigned long)(addr) -			\
8543cf38ebSTejun Heo 			  (unsigned long)pcpu_base_addr	+		\
8643cf38ebSTejun Heo 			  (unsigned long)__per_cpu_start)
87e0100983STejun Heo #endif
88e0100983STejun Heo #ifndef __pcpu_ptr_to_addr
89e0100983STejun Heo #define __pcpu_ptr_to_addr(ptr)						\
9043cf38ebSTejun Heo 	(void __force *)((unsigned long)(ptr) +				\
9143cf38ebSTejun Heo 			 (unsigned long)pcpu_base_addr -		\
9243cf38ebSTejun Heo 			 (unsigned long)__per_cpu_start)
93e0100983STejun Heo #endif
94bbddff05STejun Heo #else	/* CONFIG_SMP */
95bbddff05STejun Heo /* on UP, it's always identity mapped */
96bbddff05STejun Heo #define __addr_to_pcpu_ptr(addr)	(void __percpu *)(addr)
97bbddff05STejun Heo #define __pcpu_ptr_to_addr(ptr)		(void __force *)(ptr)
98bbddff05STejun Heo #endif	/* CONFIG_SMP */
99e0100983STejun Heo 
100fbf59bc9STejun Heo struct pcpu_chunk {
101fbf59bc9STejun Heo 	struct list_head	list;		/* linked to pcpu_slot lists */
102fbf59bc9STejun Heo 	int			free_size;	/* free bytes in the chunk */
103fbf59bc9STejun Heo 	int			contig_hint;	/* max contiguous size hint */
104bba174f5STejun Heo 	void			*base_addr;	/* base address of this chunk */
105723ad1d9SAl Viro 	int			map_used;	/* # of map entries used before the sentry */
106fbf59bc9STejun Heo 	int			map_alloc;	/* # of map entries allocated */
107fbf59bc9STejun Heo 	int			*map;		/* allocation map */
10888999a89STejun Heo 	void			*data;		/* chunk data */
1093d331ad7SAl Viro 	int			first_free;	/* no free below this */
1108d408b4bSTejun Heo 	bool			immutable;	/* no [de]population allowed */
111ce3141a2STejun Heo 	unsigned long		populated[];	/* populated bitmap */
112fbf59bc9STejun Heo };
113fbf59bc9STejun Heo 
11440150d37STejun Heo static int pcpu_unit_pages __read_mostly;
11540150d37STejun Heo static int pcpu_unit_size __read_mostly;
1162f39e637STejun Heo static int pcpu_nr_units __read_mostly;
1176563297cSTejun Heo static int pcpu_atom_size __read_mostly;
11840150d37STejun Heo static int pcpu_nr_slots __read_mostly;
11940150d37STejun Heo static size_t pcpu_chunk_struct_size __read_mostly;
120fbf59bc9STejun Heo 
121a855b84cSTejun Heo /* cpus with the lowest and highest unit addresses */
122a855b84cSTejun Heo static unsigned int pcpu_low_unit_cpu __read_mostly;
123a855b84cSTejun Heo static unsigned int pcpu_high_unit_cpu __read_mostly;
1242f39e637STejun Heo 
125fbf59bc9STejun Heo /* the address of the first chunk which starts with the kernel static area */
12640150d37STejun Heo void *pcpu_base_addr __read_mostly;
127fbf59bc9STejun Heo EXPORT_SYMBOL_GPL(pcpu_base_addr);
128fbf59bc9STejun Heo 
129fb435d52STejun Heo static const int *pcpu_unit_map __read_mostly;		/* cpu -> unit */
130fb435d52STejun Heo const unsigned long *pcpu_unit_offsets __read_mostly;	/* cpu -> unit offset */
1312f39e637STejun Heo 
1326563297cSTejun Heo /* group information, used for vm allocation */
1336563297cSTejun Heo static int pcpu_nr_groups __read_mostly;
1346563297cSTejun Heo static const unsigned long *pcpu_group_offsets __read_mostly;
1356563297cSTejun Heo static const size_t *pcpu_group_sizes __read_mostly;
1366563297cSTejun Heo 
137ae9e6bc9STejun Heo /*
138ae9e6bc9STejun Heo  * The first chunk which always exists.  Note that unlike other
139ae9e6bc9STejun Heo  * chunks, this one can be allocated and mapped in several different
140ae9e6bc9STejun Heo  * ways and thus often doesn't live in the vmalloc area.
141ae9e6bc9STejun Heo  */
142ae9e6bc9STejun Heo static struct pcpu_chunk *pcpu_first_chunk;
143ae9e6bc9STejun Heo 
144ae9e6bc9STejun Heo /*
145ae9e6bc9STejun Heo  * Optional reserved chunk.  This chunk reserves part of the first
146ae9e6bc9STejun Heo  * chunk and serves it for reserved allocations.  The amount of
147ae9e6bc9STejun Heo  * reserved offset is in pcpu_reserved_chunk_limit.  When reserved
148ae9e6bc9STejun Heo  * area doesn't exist, the following variables contain NULL and 0
149ae9e6bc9STejun Heo  * respectively.
150ae9e6bc9STejun Heo  */
151edcb4639STejun Heo static struct pcpu_chunk *pcpu_reserved_chunk;
152edcb4639STejun Heo static int pcpu_reserved_chunk_limit;
153edcb4639STejun Heo 
154fbf59bc9STejun Heo /*
155b38d08f3STejun Heo  * Free path accesses and alters only the index data structures and can be
156b38d08f3STejun Heo  * safely called from atomic context.  When memory needs to be returned to
157b38d08f3STejun Heo  * the system, free path schedules reclaim_work.
158fbf59bc9STejun Heo  */
159b38d08f3STejun Heo static DEFINE_SPINLOCK(pcpu_lock);	/* all internal data structures */
160b38d08f3STejun Heo static DEFINE_MUTEX(pcpu_alloc_mutex);	/* chunk create/destroy, [de]pop */
161fbf59bc9STejun Heo 
16240150d37STejun Heo static struct list_head *pcpu_slot __read_mostly; /* chunk list slots */
163fbf59bc9STejun Heo 
164a56dbddfSTejun Heo /* reclaim work to release fully free chunks, scheduled from free path */
165a56dbddfSTejun Heo static void pcpu_reclaim(struct work_struct *work);
166a56dbddfSTejun Heo static DECLARE_WORK(pcpu_reclaim_work, pcpu_reclaim);
167a56dbddfSTejun Heo 
168020ec653STejun Heo static bool pcpu_addr_in_first_chunk(void *addr)
169020ec653STejun Heo {
170020ec653STejun Heo 	void *first_start = pcpu_first_chunk->base_addr;
171020ec653STejun Heo 
172020ec653STejun Heo 	return addr >= first_start && addr < first_start + pcpu_unit_size;
173020ec653STejun Heo }
174020ec653STejun Heo 
175020ec653STejun Heo static bool pcpu_addr_in_reserved_chunk(void *addr)
176020ec653STejun Heo {
177020ec653STejun Heo 	void *first_start = pcpu_first_chunk->base_addr;
178020ec653STejun Heo 
179020ec653STejun Heo 	return addr >= first_start &&
180020ec653STejun Heo 		addr < first_start + pcpu_reserved_chunk_limit;
181020ec653STejun Heo }
182020ec653STejun Heo 
183d9b55eebSTejun Heo static int __pcpu_size_to_slot(int size)
184fbf59bc9STejun Heo {
185cae3aeb8STejun Heo 	int highbit = fls(size);	/* size is in bytes */
186fbf59bc9STejun Heo 	return max(highbit - PCPU_SLOT_BASE_SHIFT + 2, 1);
187fbf59bc9STejun Heo }
188fbf59bc9STejun Heo 
189d9b55eebSTejun Heo static int pcpu_size_to_slot(int size)
190d9b55eebSTejun Heo {
191d9b55eebSTejun Heo 	if (size == pcpu_unit_size)
192d9b55eebSTejun Heo 		return pcpu_nr_slots - 1;
193d9b55eebSTejun Heo 	return __pcpu_size_to_slot(size);
194d9b55eebSTejun Heo }
195d9b55eebSTejun Heo 
196fbf59bc9STejun Heo static int pcpu_chunk_slot(const struct pcpu_chunk *chunk)
197fbf59bc9STejun Heo {
198fbf59bc9STejun Heo 	if (chunk->free_size < sizeof(int) || chunk->contig_hint < sizeof(int))
199fbf59bc9STejun Heo 		return 0;
200fbf59bc9STejun Heo 
201fbf59bc9STejun Heo 	return pcpu_size_to_slot(chunk->free_size);
202fbf59bc9STejun Heo }
203fbf59bc9STejun Heo 
20488999a89STejun Heo /* set the pointer to a chunk in a page struct */
20588999a89STejun Heo static void pcpu_set_page_chunk(struct page *page, struct pcpu_chunk *pcpu)
20688999a89STejun Heo {
20788999a89STejun Heo 	page->index = (unsigned long)pcpu;
20888999a89STejun Heo }
20988999a89STejun Heo 
21088999a89STejun Heo /* obtain pointer to a chunk from a page struct */
21188999a89STejun Heo static struct pcpu_chunk *pcpu_get_page_chunk(struct page *page)
21288999a89STejun Heo {
21388999a89STejun Heo 	return (struct pcpu_chunk *)page->index;
21488999a89STejun Heo }
21588999a89STejun Heo 
21688999a89STejun Heo static int __maybe_unused pcpu_page_idx(unsigned int cpu, int page_idx)
217fbf59bc9STejun Heo {
2182f39e637STejun Heo 	return pcpu_unit_map[cpu] * pcpu_unit_pages + page_idx;
219fbf59bc9STejun Heo }
220fbf59bc9STejun Heo 
2219983b6f0STejun Heo static unsigned long pcpu_chunk_addr(struct pcpu_chunk *chunk,
222fbf59bc9STejun Heo 				     unsigned int cpu, int page_idx)
223fbf59bc9STejun Heo {
224bba174f5STejun Heo 	return (unsigned long)chunk->base_addr + pcpu_unit_offsets[cpu] +
225fb435d52STejun Heo 		(page_idx << PAGE_SHIFT);
226fbf59bc9STejun Heo }
227fbf59bc9STejun Heo 
22888999a89STejun Heo static void __maybe_unused pcpu_next_unpop(struct pcpu_chunk *chunk,
22988999a89STejun Heo 					   int *rs, int *re, int end)
230ce3141a2STejun Heo {
231ce3141a2STejun Heo 	*rs = find_next_zero_bit(chunk->populated, end, *rs);
232ce3141a2STejun Heo 	*re = find_next_bit(chunk->populated, end, *rs + 1);
233ce3141a2STejun Heo }
234ce3141a2STejun Heo 
23588999a89STejun Heo static void __maybe_unused pcpu_next_pop(struct pcpu_chunk *chunk,
23688999a89STejun Heo 					 int *rs, int *re, int end)
237ce3141a2STejun Heo {
238ce3141a2STejun Heo 	*rs = find_next_bit(chunk->populated, end, *rs);
239ce3141a2STejun Heo 	*re = find_next_zero_bit(chunk->populated, end, *rs + 1);
240ce3141a2STejun Heo }
241ce3141a2STejun Heo 
242ce3141a2STejun Heo /*
243ce3141a2STejun Heo  * (Un)populated page region iterators.  Iterate over (un)populated
244b595076aSUwe Kleine-König  * page regions between @start and @end in @chunk.  @rs and @re should
245ce3141a2STejun Heo  * be integer variables and will be set to start and end page index of
246ce3141a2STejun Heo  * the current region.
247ce3141a2STejun Heo  */
248ce3141a2STejun Heo #define pcpu_for_each_unpop_region(chunk, rs, re, start, end)		    \
249ce3141a2STejun Heo 	for ((rs) = (start), pcpu_next_unpop((chunk), &(rs), &(re), (end)); \
250ce3141a2STejun Heo 	     (rs) < (re);						    \
251ce3141a2STejun Heo 	     (rs) = (re) + 1, pcpu_next_unpop((chunk), &(rs), &(re), (end)))
252ce3141a2STejun Heo 
253ce3141a2STejun Heo #define pcpu_for_each_pop_region(chunk, rs, re, start, end)		    \
254ce3141a2STejun Heo 	for ((rs) = (start), pcpu_next_pop((chunk), &(rs), &(re), (end));   \
255ce3141a2STejun Heo 	     (rs) < (re);						    \
256ce3141a2STejun Heo 	     (rs) = (re) + 1, pcpu_next_pop((chunk), &(rs), &(re), (end)))
257ce3141a2STejun Heo 
258fbf59bc9STejun Heo /**
25990459ce0SBob Liu  * pcpu_mem_zalloc - allocate memory
2601880d93bSTejun Heo  * @size: bytes to allocate
261fbf59bc9STejun Heo  *
2621880d93bSTejun Heo  * Allocate @size bytes.  If @size is smaller than PAGE_SIZE,
26390459ce0SBob Liu  * kzalloc() is used; otherwise, vzalloc() is used.  The returned
2641880d93bSTejun Heo  * memory is always zeroed.
265fbf59bc9STejun Heo  *
266ccea34b5STejun Heo  * CONTEXT:
267ccea34b5STejun Heo  * Does GFP_KERNEL allocation.
268ccea34b5STejun Heo  *
269fbf59bc9STejun Heo  * RETURNS:
2701880d93bSTejun Heo  * Pointer to the allocated area on success, NULL on failure.
271fbf59bc9STejun Heo  */
27290459ce0SBob Liu static void *pcpu_mem_zalloc(size_t size)
273fbf59bc9STejun Heo {
274099a19d9STejun Heo 	if (WARN_ON_ONCE(!slab_is_available()))
275099a19d9STejun Heo 		return NULL;
276099a19d9STejun Heo 
277fbf59bc9STejun Heo 	if (size <= PAGE_SIZE)
2781880d93bSTejun Heo 		return kzalloc(size, GFP_KERNEL);
2797af4c093SJesper Juhl 	else
2807af4c093SJesper Juhl 		return vzalloc(size);
2811880d93bSTejun Heo }
282fbf59bc9STejun Heo 
2831880d93bSTejun Heo /**
2841880d93bSTejun Heo  * pcpu_mem_free - free memory
2851880d93bSTejun Heo  * @ptr: memory to free
2861880d93bSTejun Heo  * @size: size of the area
2871880d93bSTejun Heo  *
28890459ce0SBob Liu  * Free @ptr.  @ptr should have been allocated using pcpu_mem_zalloc().
2891880d93bSTejun Heo  */
2901880d93bSTejun Heo static void pcpu_mem_free(void *ptr, size_t size)
2911880d93bSTejun Heo {
2921880d93bSTejun Heo 	if (size <= PAGE_SIZE)
2931880d93bSTejun Heo 		kfree(ptr);
2941880d93bSTejun Heo 	else
2951880d93bSTejun Heo 		vfree(ptr);
296fbf59bc9STejun Heo }
297fbf59bc9STejun Heo 
298fbf59bc9STejun Heo /**
299fbf59bc9STejun Heo  * pcpu_chunk_relocate - put chunk in the appropriate chunk slot
300fbf59bc9STejun Heo  * @chunk: chunk of interest
301fbf59bc9STejun Heo  * @oslot: the previous slot it was on
302fbf59bc9STejun Heo  *
303fbf59bc9STejun Heo  * This function is called after an allocation or free changed @chunk.
304fbf59bc9STejun Heo  * New slot according to the changed state is determined and @chunk is
305edcb4639STejun Heo  * moved to the slot.  Note that the reserved chunk is never put on
306edcb4639STejun Heo  * chunk slots.
307ccea34b5STejun Heo  *
308ccea34b5STejun Heo  * CONTEXT:
309ccea34b5STejun Heo  * pcpu_lock.
310fbf59bc9STejun Heo  */
311fbf59bc9STejun Heo static void pcpu_chunk_relocate(struct pcpu_chunk *chunk, int oslot)
312fbf59bc9STejun Heo {
313fbf59bc9STejun Heo 	int nslot = pcpu_chunk_slot(chunk);
314fbf59bc9STejun Heo 
315edcb4639STejun Heo 	if (chunk != pcpu_reserved_chunk && oslot != nslot) {
316fbf59bc9STejun Heo 		if (oslot < nslot)
317fbf59bc9STejun Heo 			list_move(&chunk->list, &pcpu_slot[nslot]);
318fbf59bc9STejun Heo 		else
319fbf59bc9STejun Heo 			list_move_tail(&chunk->list, &pcpu_slot[nslot]);
320fbf59bc9STejun Heo 	}
321fbf59bc9STejun Heo }
322fbf59bc9STejun Heo 
323fbf59bc9STejun Heo /**
324833af842STejun Heo  * pcpu_need_to_extend - determine whether chunk area map needs to be extended
325833af842STejun Heo  * @chunk: chunk of interest
3269f7dcf22STejun Heo  *
327833af842STejun Heo  * Determine whether area map of @chunk needs to be extended to
32825985edcSLucas De Marchi  * accommodate a new allocation.
3299f7dcf22STejun Heo  *
330ccea34b5STejun Heo  * CONTEXT:
331833af842STejun Heo  * pcpu_lock.
332ccea34b5STejun Heo  *
3339f7dcf22STejun Heo  * RETURNS:
334833af842STejun Heo  * New target map allocation length if extension is necessary, 0
335833af842STejun Heo  * otherwise.
3369f7dcf22STejun Heo  */
337833af842STejun Heo static int pcpu_need_to_extend(struct pcpu_chunk *chunk)
3389f7dcf22STejun Heo {
3399f7dcf22STejun Heo 	int new_alloc;
3409f7dcf22STejun Heo 
341723ad1d9SAl Viro 	if (chunk->map_alloc >= chunk->map_used + 3)
3429f7dcf22STejun Heo 		return 0;
3439f7dcf22STejun Heo 
3449f7dcf22STejun Heo 	new_alloc = PCPU_DFL_MAP_ALLOC;
345723ad1d9SAl Viro 	while (new_alloc < chunk->map_used + 3)
3469f7dcf22STejun Heo 		new_alloc *= 2;
3479f7dcf22STejun Heo 
348833af842STejun Heo 	return new_alloc;
349ccea34b5STejun Heo }
350ccea34b5STejun Heo 
351833af842STejun Heo /**
352833af842STejun Heo  * pcpu_extend_area_map - extend area map of a chunk
353833af842STejun Heo  * @chunk: chunk of interest
354833af842STejun Heo  * @new_alloc: new target allocation length of the area map
355833af842STejun Heo  *
356833af842STejun Heo  * Extend area map of @chunk to have @new_alloc entries.
357833af842STejun Heo  *
358833af842STejun Heo  * CONTEXT:
359833af842STejun Heo  * Does GFP_KERNEL allocation.  Grabs and releases pcpu_lock.
360833af842STejun Heo  *
361833af842STejun Heo  * RETURNS:
362833af842STejun Heo  * 0 on success, -errno on failure.
363ccea34b5STejun Heo  */
364833af842STejun Heo static int pcpu_extend_area_map(struct pcpu_chunk *chunk, int new_alloc)
365833af842STejun Heo {
366833af842STejun Heo 	int *old = NULL, *new = NULL;
367833af842STejun Heo 	size_t old_size = 0, new_size = new_alloc * sizeof(new[0]);
368833af842STejun Heo 	unsigned long flags;
3699f7dcf22STejun Heo 
37090459ce0SBob Liu 	new = pcpu_mem_zalloc(new_size);
371833af842STejun Heo 	if (!new)
372833af842STejun Heo 		return -ENOMEM;
373833af842STejun Heo 
374833af842STejun Heo 	/* acquire pcpu_lock and switch to new area map */
375833af842STejun Heo 	spin_lock_irqsave(&pcpu_lock, flags);
376833af842STejun Heo 
377833af842STejun Heo 	if (new_alloc <= chunk->map_alloc)
378833af842STejun Heo 		goto out_unlock;
379833af842STejun Heo 
380833af842STejun Heo 	old_size = chunk->map_alloc * sizeof(chunk->map[0]);
381a002d148SHuang Shijie 	old = chunk->map;
382a002d148SHuang Shijie 
383a002d148SHuang Shijie 	memcpy(new, old, old_size);
3849f7dcf22STejun Heo 
3859f7dcf22STejun Heo 	chunk->map_alloc = new_alloc;
3869f7dcf22STejun Heo 	chunk->map = new;
387833af842STejun Heo 	new = NULL;
388833af842STejun Heo 
389833af842STejun Heo out_unlock:
390833af842STejun Heo 	spin_unlock_irqrestore(&pcpu_lock, flags);
391833af842STejun Heo 
392833af842STejun Heo 	/*
393833af842STejun Heo 	 * pcpu_mem_free() might end up calling vfree() which uses
394833af842STejun Heo 	 * IRQ-unsafe lock and thus can't be called under pcpu_lock.
395833af842STejun Heo 	 */
396833af842STejun Heo 	pcpu_mem_free(old, old_size);
397833af842STejun Heo 	pcpu_mem_free(new, new_size);
398833af842STejun Heo 
3999f7dcf22STejun Heo 	return 0;
4009f7dcf22STejun Heo }
4019f7dcf22STejun Heo 
4029f7dcf22STejun Heo /**
403*a16037c8STejun Heo  * pcpu_fit_in_area - try to fit the requested allocation in a candidate area
404*a16037c8STejun Heo  * @chunk: chunk the candidate area belongs to
405*a16037c8STejun Heo  * @off: the offset to the start of the candidate area
406*a16037c8STejun Heo  * @this_size: the size of the candidate area
407*a16037c8STejun Heo  * @size: the size of the target allocation
408*a16037c8STejun Heo  * @align: the alignment of the target allocation
409*a16037c8STejun Heo  * @pop_only: only allocate from already populated region
410*a16037c8STejun Heo  *
411*a16037c8STejun Heo  * We're trying to allocate @size bytes aligned at @align.  @chunk's area
412*a16037c8STejun Heo  * at @off sized @this_size is a candidate.  This function determines
413*a16037c8STejun Heo  * whether the target allocation fits in the candidate area and returns the
414*a16037c8STejun Heo  * number of bytes to pad after @off.  If the target area doesn't fit, -1
415*a16037c8STejun Heo  * is returned.
416*a16037c8STejun Heo  *
417*a16037c8STejun Heo  * If @pop_only is %true, this function only considers the already
418*a16037c8STejun Heo  * populated part of the candidate area.
419*a16037c8STejun Heo  */
420*a16037c8STejun Heo static int pcpu_fit_in_area(struct pcpu_chunk *chunk, int off, int this_size,
421*a16037c8STejun Heo 			    int size, int align, bool pop_only)
422*a16037c8STejun Heo {
423*a16037c8STejun Heo 	int cand_off = off;
424*a16037c8STejun Heo 
425*a16037c8STejun Heo 	while (true) {
426*a16037c8STejun Heo 		int head = ALIGN(cand_off, align) - off;
427*a16037c8STejun Heo 		int page_start, page_end, rs, re;
428*a16037c8STejun Heo 
429*a16037c8STejun Heo 		if (this_size < head + size)
430*a16037c8STejun Heo 			return -1;
431*a16037c8STejun Heo 
432*a16037c8STejun Heo 		if (!pop_only)
433*a16037c8STejun Heo 			return head;
434*a16037c8STejun Heo 
435*a16037c8STejun Heo 		/*
436*a16037c8STejun Heo 		 * If the first unpopulated page is beyond the end of the
437*a16037c8STejun Heo 		 * allocation, the whole allocation is populated;
438*a16037c8STejun Heo 		 * otherwise, retry from the end of the unpopulated area.
439*a16037c8STejun Heo 		 */
440*a16037c8STejun Heo 		page_start = PFN_DOWN(head + off);
441*a16037c8STejun Heo 		page_end = PFN_UP(head + off + size);
442*a16037c8STejun Heo 
443*a16037c8STejun Heo 		rs = page_start;
444*a16037c8STejun Heo 		pcpu_next_unpop(chunk, &rs, &re, PFN_UP(off + this_size));
445*a16037c8STejun Heo 		if (rs >= page_end)
446*a16037c8STejun Heo 			return head;
447*a16037c8STejun Heo 		cand_off = re * PAGE_SIZE;
448*a16037c8STejun Heo 	}
449*a16037c8STejun Heo }
450*a16037c8STejun Heo 
451*a16037c8STejun Heo /**
452fbf59bc9STejun Heo  * pcpu_alloc_area - allocate area from a pcpu_chunk
453fbf59bc9STejun Heo  * @chunk: chunk of interest
454cae3aeb8STejun Heo  * @size: wanted size in bytes
455fbf59bc9STejun Heo  * @align: wanted align
456*a16037c8STejun Heo  * @pop_only: allocate only from the populated area
457fbf59bc9STejun Heo  *
458fbf59bc9STejun Heo  * Try to allocate @size bytes area aligned at @align from @chunk.
459fbf59bc9STejun Heo  * Note that this function only allocates the offset.  It doesn't
460fbf59bc9STejun Heo  * populate or map the area.
461fbf59bc9STejun Heo  *
4629f7dcf22STejun Heo  * @chunk->map must have at least two free slots.
4639f7dcf22STejun Heo  *
464ccea34b5STejun Heo  * CONTEXT:
465ccea34b5STejun Heo  * pcpu_lock.
466ccea34b5STejun Heo  *
467fbf59bc9STejun Heo  * RETURNS:
4689f7dcf22STejun Heo  * Allocated offset in @chunk on success, -1 if no matching area is
4699f7dcf22STejun Heo  * found.
470fbf59bc9STejun Heo  */
471*a16037c8STejun Heo static int pcpu_alloc_area(struct pcpu_chunk *chunk, int size, int align,
472*a16037c8STejun Heo 			   bool pop_only)
473fbf59bc9STejun Heo {
474fbf59bc9STejun Heo 	int oslot = pcpu_chunk_slot(chunk);
475fbf59bc9STejun Heo 	int max_contig = 0;
476fbf59bc9STejun Heo 	int i, off;
4773d331ad7SAl Viro 	bool seen_free = false;
478723ad1d9SAl Viro 	int *p;
479fbf59bc9STejun Heo 
4803d331ad7SAl Viro 	for (i = chunk->first_free, p = chunk->map + i; i < chunk->map_used; i++, p++) {
481fbf59bc9STejun Heo 		int head, tail;
482723ad1d9SAl Viro 		int this_size;
483723ad1d9SAl Viro 
484723ad1d9SAl Viro 		off = *p;
485723ad1d9SAl Viro 		if (off & 1)
486723ad1d9SAl Viro 			continue;
487fbf59bc9STejun Heo 
488723ad1d9SAl Viro 		this_size = (p[1] & ~1) - off;
489*a16037c8STejun Heo 
490*a16037c8STejun Heo 		head = pcpu_fit_in_area(chunk, off, this_size, size, align,
491*a16037c8STejun Heo 					pop_only);
492*a16037c8STejun Heo 		if (head < 0) {
4933d331ad7SAl Viro 			if (!seen_free) {
4943d331ad7SAl Viro 				chunk->first_free = i;
4953d331ad7SAl Viro 				seen_free = true;
4963d331ad7SAl Viro 			}
497723ad1d9SAl Viro 			max_contig = max(this_size, max_contig);
498fbf59bc9STejun Heo 			continue;
499fbf59bc9STejun Heo 		}
500fbf59bc9STejun Heo 
501fbf59bc9STejun Heo 		/*
502fbf59bc9STejun Heo 		 * If head is small or the previous block is free,
503fbf59bc9STejun Heo 		 * merge'em.  Note that 'small' is defined as smaller
504fbf59bc9STejun Heo 		 * than sizeof(int), which is very small but isn't too
505fbf59bc9STejun Heo 		 * uncommon for percpu allocations.
506fbf59bc9STejun Heo 		 */
507723ad1d9SAl Viro 		if (head && (head < sizeof(int) || !(p[-1] & 1))) {
50821ddfd38SJianyu Zhan 			*p = off += head;
509723ad1d9SAl Viro 			if (p[-1] & 1)
510fbf59bc9STejun Heo 				chunk->free_size -= head;
51121ddfd38SJianyu Zhan 			else
51221ddfd38SJianyu Zhan 				max_contig = max(*p - p[-1], max_contig);
513723ad1d9SAl Viro 			this_size -= head;
514fbf59bc9STejun Heo 			head = 0;
515fbf59bc9STejun Heo 		}
516fbf59bc9STejun Heo 
517fbf59bc9STejun Heo 		/* if tail is small, just keep it around */
518723ad1d9SAl Viro 		tail = this_size - head - size;
519723ad1d9SAl Viro 		if (tail < sizeof(int)) {
520fbf59bc9STejun Heo 			tail = 0;
521723ad1d9SAl Viro 			size = this_size - head;
522723ad1d9SAl Viro 		}
523fbf59bc9STejun Heo 
524fbf59bc9STejun Heo 		/* split if warranted */
525fbf59bc9STejun Heo 		if (head || tail) {
526706c16f2SAl Viro 			int nr_extra = !!head + !!tail;
527706c16f2SAl Viro 
528706c16f2SAl Viro 			/* insert new subblocks */
529723ad1d9SAl Viro 			memmove(p + nr_extra + 1, p + 1,
530706c16f2SAl Viro 				sizeof(chunk->map[0]) * (chunk->map_used - i));
531706c16f2SAl Viro 			chunk->map_used += nr_extra;
532706c16f2SAl Viro 
533fbf59bc9STejun Heo 			if (head) {
5343d331ad7SAl Viro 				if (!seen_free) {
5353d331ad7SAl Viro 					chunk->first_free = i;
5363d331ad7SAl Viro 					seen_free = true;
5373d331ad7SAl Viro 				}
538723ad1d9SAl Viro 				*++p = off += head;
539723ad1d9SAl Viro 				++i;
540706c16f2SAl Viro 				max_contig = max(head, max_contig);
541fbf59bc9STejun Heo 			}
542706c16f2SAl Viro 			if (tail) {
543723ad1d9SAl Viro 				p[1] = off + size;
544706c16f2SAl Viro 				max_contig = max(tail, max_contig);
545706c16f2SAl Viro 			}
546fbf59bc9STejun Heo 		}
547fbf59bc9STejun Heo 
5483d331ad7SAl Viro 		if (!seen_free)
5493d331ad7SAl Viro 			chunk->first_free = i + 1;
5503d331ad7SAl Viro 
551fbf59bc9STejun Heo 		/* update hint and mark allocated */
552723ad1d9SAl Viro 		if (i + 1 == chunk->map_used)
553fbf59bc9STejun Heo 			chunk->contig_hint = max_contig; /* fully scanned */
554fbf59bc9STejun Heo 		else
555fbf59bc9STejun Heo 			chunk->contig_hint = max(chunk->contig_hint,
556fbf59bc9STejun Heo 						 max_contig);
557fbf59bc9STejun Heo 
558723ad1d9SAl Viro 		chunk->free_size -= size;
559723ad1d9SAl Viro 		*p |= 1;
560fbf59bc9STejun Heo 
561fbf59bc9STejun Heo 		pcpu_chunk_relocate(chunk, oslot);
562fbf59bc9STejun Heo 		return off;
563fbf59bc9STejun Heo 	}
564fbf59bc9STejun Heo 
565fbf59bc9STejun Heo 	chunk->contig_hint = max_contig;	/* fully scanned */
566fbf59bc9STejun Heo 	pcpu_chunk_relocate(chunk, oslot);
567fbf59bc9STejun Heo 
5689f7dcf22STejun Heo 	/* tell the upper layer that this chunk has no matching area */
5699f7dcf22STejun Heo 	return -1;
570fbf59bc9STejun Heo }
571fbf59bc9STejun Heo 
572fbf59bc9STejun Heo /**
573fbf59bc9STejun Heo  * pcpu_free_area - free area to a pcpu_chunk
574fbf59bc9STejun Heo  * @chunk: chunk of interest
575fbf59bc9STejun Heo  * @freeme: offset of area to free
576fbf59bc9STejun Heo  *
577fbf59bc9STejun Heo  * Free area starting from @freeme to @chunk.  Note that this function
578fbf59bc9STejun Heo  * only modifies the allocation map.  It doesn't depopulate or unmap
579fbf59bc9STejun Heo  * the area.
580ccea34b5STejun Heo  *
581ccea34b5STejun Heo  * CONTEXT:
582ccea34b5STejun Heo  * pcpu_lock.
583fbf59bc9STejun Heo  */
584fbf59bc9STejun Heo static void pcpu_free_area(struct pcpu_chunk *chunk, int freeme)
585fbf59bc9STejun Heo {
586fbf59bc9STejun Heo 	int oslot = pcpu_chunk_slot(chunk);
587723ad1d9SAl Viro 	int off = 0;
588723ad1d9SAl Viro 	unsigned i, j;
589723ad1d9SAl Viro 	int to_free = 0;
590723ad1d9SAl Viro 	int *p;
591fbf59bc9STejun Heo 
592723ad1d9SAl Viro 	freeme |= 1;	/* we are searching for <given offset, in use> pair */
593723ad1d9SAl Viro 
594723ad1d9SAl Viro 	i = 0;
595723ad1d9SAl Viro 	j = chunk->map_used;
596723ad1d9SAl Viro 	while (i != j) {
597723ad1d9SAl Viro 		unsigned k = (i + j) / 2;
598723ad1d9SAl Viro 		off = chunk->map[k];
599723ad1d9SAl Viro 		if (off < freeme)
600723ad1d9SAl Viro 			i = k + 1;
601723ad1d9SAl Viro 		else if (off > freeme)
602723ad1d9SAl Viro 			j = k;
603723ad1d9SAl Viro 		else
604723ad1d9SAl Viro 			i = j = k;
605723ad1d9SAl Viro 	}
606fbf59bc9STejun Heo 	BUG_ON(off != freeme);
607fbf59bc9STejun Heo 
6083d331ad7SAl Viro 	if (i < chunk->first_free)
6093d331ad7SAl Viro 		chunk->first_free = i;
6103d331ad7SAl Viro 
611723ad1d9SAl Viro 	p = chunk->map + i;
612723ad1d9SAl Viro 	*p = off &= ~1;
613723ad1d9SAl Viro 	chunk->free_size += (p[1] & ~1) - off;
614fbf59bc9STejun Heo 
615fbf59bc9STejun Heo 	/* merge with next? */
616723ad1d9SAl Viro 	if (!(p[1] & 1))
617723ad1d9SAl Viro 		to_free++;
618723ad1d9SAl Viro 	/* merge with previous? */
619723ad1d9SAl Viro 	if (i > 0 && !(p[-1] & 1)) {
620723ad1d9SAl Viro 		to_free++;
621723ad1d9SAl Viro 		i--;
622723ad1d9SAl Viro 		p--;
623723ad1d9SAl Viro 	}
624723ad1d9SAl Viro 	if (to_free) {
625723ad1d9SAl Viro 		chunk->map_used -= to_free;
626723ad1d9SAl Viro 		memmove(p + 1, p + 1 + to_free,
627723ad1d9SAl Viro 			(chunk->map_used - i) * sizeof(chunk->map[0]));
628fbf59bc9STejun Heo 	}
629fbf59bc9STejun Heo 
630723ad1d9SAl Viro 	chunk->contig_hint = max(chunk->map[i + 1] - chunk->map[i] - 1, chunk->contig_hint);
631fbf59bc9STejun Heo 	pcpu_chunk_relocate(chunk, oslot);
632fbf59bc9STejun Heo }
633fbf59bc9STejun Heo 
6346081089fSTejun Heo static struct pcpu_chunk *pcpu_alloc_chunk(void)
6356081089fSTejun Heo {
6366081089fSTejun Heo 	struct pcpu_chunk *chunk;
6376081089fSTejun Heo 
63890459ce0SBob Liu 	chunk = pcpu_mem_zalloc(pcpu_chunk_struct_size);
6396081089fSTejun Heo 	if (!chunk)
6406081089fSTejun Heo 		return NULL;
6416081089fSTejun Heo 
64290459ce0SBob Liu 	chunk->map = pcpu_mem_zalloc(PCPU_DFL_MAP_ALLOC *
64390459ce0SBob Liu 						sizeof(chunk->map[0]));
6446081089fSTejun Heo 	if (!chunk->map) {
6455a838c3bSJianyu Zhan 		pcpu_mem_free(chunk, pcpu_chunk_struct_size);
6466081089fSTejun Heo 		return NULL;
6476081089fSTejun Heo 	}
6486081089fSTejun Heo 
6496081089fSTejun Heo 	chunk->map_alloc = PCPU_DFL_MAP_ALLOC;
650723ad1d9SAl Viro 	chunk->map[0] = 0;
651723ad1d9SAl Viro 	chunk->map[1] = pcpu_unit_size | 1;
652723ad1d9SAl Viro 	chunk->map_used = 1;
6536081089fSTejun Heo 
6546081089fSTejun Heo 	INIT_LIST_HEAD(&chunk->list);
6556081089fSTejun Heo 	chunk->free_size = pcpu_unit_size;
6566081089fSTejun Heo 	chunk->contig_hint = pcpu_unit_size;
6576081089fSTejun Heo 
6586081089fSTejun Heo 	return chunk;
6596081089fSTejun Heo }
6606081089fSTejun Heo 
6616081089fSTejun Heo static void pcpu_free_chunk(struct pcpu_chunk *chunk)
6626081089fSTejun Heo {
6636081089fSTejun Heo 	if (!chunk)
6646081089fSTejun Heo 		return;
6656081089fSTejun Heo 	pcpu_mem_free(chunk->map, chunk->map_alloc * sizeof(chunk->map[0]));
666b4916cb1SJoonsoo Kim 	pcpu_mem_free(chunk, pcpu_chunk_struct_size);
6676081089fSTejun Heo }
6686081089fSTejun Heo 
669fbf59bc9STejun Heo /*
6709f645532STejun Heo  * Chunk management implementation.
671fbf59bc9STejun Heo  *
6729f645532STejun Heo  * To allow different implementations, chunk alloc/free and
6739f645532STejun Heo  * [de]population are implemented in a separate file which is pulled
6749f645532STejun Heo  * into this file and compiled together.  The following functions
6759f645532STejun Heo  * should be implemented.
676ccea34b5STejun Heo  *
6779f645532STejun Heo  * pcpu_populate_chunk		- populate the specified range of a chunk
6789f645532STejun Heo  * pcpu_depopulate_chunk	- depopulate the specified range of a chunk
6799f645532STejun Heo  * pcpu_create_chunk		- create a new chunk
6809f645532STejun Heo  * pcpu_destroy_chunk		- destroy a chunk, always preceded by full depop
6819f645532STejun Heo  * pcpu_addr_to_page		- translate address to physical address
6829f645532STejun Heo  * pcpu_verify_alloc_info	- check alloc_info is acceptable during init
683fbf59bc9STejun Heo  */
6849f645532STejun Heo static int pcpu_populate_chunk(struct pcpu_chunk *chunk, int off, int size);
6859f645532STejun Heo static void pcpu_depopulate_chunk(struct pcpu_chunk *chunk, int off, int size);
6869f645532STejun Heo static struct pcpu_chunk *pcpu_create_chunk(void);
6879f645532STejun Heo static void pcpu_destroy_chunk(struct pcpu_chunk *chunk);
6889f645532STejun Heo static struct page *pcpu_addr_to_page(void *addr);
6899f645532STejun Heo static int __init pcpu_verify_alloc_info(const struct pcpu_alloc_info *ai);
690fbf59bc9STejun Heo 
691b0c9778bSTejun Heo #ifdef CONFIG_NEED_PER_CPU_KM
692b0c9778bSTejun Heo #include "percpu-km.c"
693b0c9778bSTejun Heo #else
6949f645532STejun Heo #include "percpu-vm.c"
695b0c9778bSTejun Heo #endif
696fbf59bc9STejun Heo 
697fbf59bc9STejun Heo /**
69888999a89STejun Heo  * pcpu_chunk_addr_search - determine chunk containing specified address
69988999a89STejun Heo  * @addr: address for which the chunk needs to be determined.
70088999a89STejun Heo  *
70188999a89STejun Heo  * RETURNS:
70288999a89STejun Heo  * The address of the found chunk.
70388999a89STejun Heo  */
70488999a89STejun Heo static struct pcpu_chunk *pcpu_chunk_addr_search(void *addr)
70588999a89STejun Heo {
70688999a89STejun Heo 	/* is it in the first chunk? */
70788999a89STejun Heo 	if (pcpu_addr_in_first_chunk(addr)) {
70888999a89STejun Heo 		/* is it in the reserved area? */
70988999a89STejun Heo 		if (pcpu_addr_in_reserved_chunk(addr))
71088999a89STejun Heo 			return pcpu_reserved_chunk;
71188999a89STejun Heo 		return pcpu_first_chunk;
71288999a89STejun Heo 	}
71388999a89STejun Heo 
71488999a89STejun Heo 	/*
71588999a89STejun Heo 	 * The address is relative to unit0 which might be unused and
71688999a89STejun Heo 	 * thus unmapped.  Offset the address to the unit space of the
71788999a89STejun Heo 	 * current processor before looking it up in the vmalloc
71888999a89STejun Heo 	 * space.  Note that any possible cpu id can be used here, so
71988999a89STejun Heo 	 * there's no need to worry about preemption or cpu hotplug.
72088999a89STejun Heo 	 */
72188999a89STejun Heo 	addr += pcpu_unit_offsets[raw_smp_processor_id()];
7229f645532STejun Heo 	return pcpu_get_page_chunk(pcpu_addr_to_page(addr));
72388999a89STejun Heo }
72488999a89STejun Heo 
72588999a89STejun Heo /**
726edcb4639STejun Heo  * pcpu_alloc - the percpu allocator
727cae3aeb8STejun Heo  * @size: size of area to allocate in bytes
728fbf59bc9STejun Heo  * @align: alignment of area (max PAGE_SIZE)
729edcb4639STejun Heo  * @reserved: allocate from the reserved chunk if available
730fbf59bc9STejun Heo  *
731ccea34b5STejun Heo  * Allocate percpu area of @size bytes aligned at @align.
732ccea34b5STejun Heo  *
733ccea34b5STejun Heo  * CONTEXT:
734ccea34b5STejun Heo  * Does GFP_KERNEL allocation.
735fbf59bc9STejun Heo  *
736fbf59bc9STejun Heo  * RETURNS:
737fbf59bc9STejun Heo  * Percpu pointer to the allocated area on success, NULL on failure.
738fbf59bc9STejun Heo  */
73943cf38ebSTejun Heo static void __percpu *pcpu_alloc(size_t size, size_t align, bool reserved)
740fbf59bc9STejun Heo {
741f2badb0cSTejun Heo 	static int warn_limit = 10;
742fbf59bc9STejun Heo 	struct pcpu_chunk *chunk;
743f2badb0cSTejun Heo 	const char *err;
744b38d08f3STejun Heo 	int slot, off, new_alloc, cpu, ret;
745dca49645STejun Heo 	int page_start, page_end, rs, re;
746403a91b1SJiri Kosina 	unsigned long flags;
747f528f0b8SCatalin Marinas 	void __percpu *ptr;
748fbf59bc9STejun Heo 
749723ad1d9SAl Viro 	/*
750723ad1d9SAl Viro 	 * We want the lowest bit of offset available for in-use/free
7512f69fa82SViro 	 * indicator, so force >= 16bit alignment and make size even.
752723ad1d9SAl Viro 	 */
753723ad1d9SAl Viro 	if (unlikely(align < 2))
754723ad1d9SAl Viro 		align = 2;
755723ad1d9SAl Viro 
756fb009e3aSChristoph Lameter 	size = ALIGN(size, 2);
7572f69fa82SViro 
7588d408b4bSTejun Heo 	if (unlikely(!size || size > PCPU_MIN_UNIT_SIZE || align > PAGE_SIZE)) {
759fbf59bc9STejun Heo 		WARN(true, "illegal size (%zu) or align (%zu) for "
760fbf59bc9STejun Heo 		     "percpu allocation\n", size, align);
761fbf59bc9STejun Heo 		return NULL;
762fbf59bc9STejun Heo 	}
763fbf59bc9STejun Heo 
764403a91b1SJiri Kosina 	spin_lock_irqsave(&pcpu_lock, flags);
765fbf59bc9STejun Heo 
766edcb4639STejun Heo 	/* serve reserved allocations from the reserved chunk if available */
767edcb4639STejun Heo 	if (reserved && pcpu_reserved_chunk) {
768edcb4639STejun Heo 		chunk = pcpu_reserved_chunk;
769833af842STejun Heo 
770833af842STejun Heo 		if (size > chunk->contig_hint) {
771833af842STejun Heo 			err = "alloc from reserved chunk failed";
772ccea34b5STejun Heo 			goto fail_unlock;
773f2badb0cSTejun Heo 		}
774833af842STejun Heo 
775833af842STejun Heo 		while ((new_alloc = pcpu_need_to_extend(chunk))) {
776833af842STejun Heo 			spin_unlock_irqrestore(&pcpu_lock, flags);
777833af842STejun Heo 			if (pcpu_extend_area_map(chunk, new_alloc) < 0) {
778833af842STejun Heo 				err = "failed to extend area map of reserved chunk";
779b38d08f3STejun Heo 				goto fail;
780833af842STejun Heo 			}
781833af842STejun Heo 			spin_lock_irqsave(&pcpu_lock, flags);
782833af842STejun Heo 		}
783833af842STejun Heo 
784*a16037c8STejun Heo 		off = pcpu_alloc_area(chunk, size, align, false);
785edcb4639STejun Heo 		if (off >= 0)
786edcb4639STejun Heo 			goto area_found;
787833af842STejun Heo 
788f2badb0cSTejun Heo 		err = "alloc from reserved chunk failed";
789ccea34b5STejun Heo 		goto fail_unlock;
790edcb4639STejun Heo 	}
791edcb4639STejun Heo 
792ccea34b5STejun Heo restart:
793edcb4639STejun Heo 	/* search through normal chunks */
794fbf59bc9STejun Heo 	for (slot = pcpu_size_to_slot(size); slot < pcpu_nr_slots; slot++) {
795fbf59bc9STejun Heo 		list_for_each_entry(chunk, &pcpu_slot[slot], list) {
796fbf59bc9STejun Heo 			if (size > chunk->contig_hint)
797fbf59bc9STejun Heo 				continue;
798ccea34b5STejun Heo 
799833af842STejun Heo 			new_alloc = pcpu_need_to_extend(chunk);
800833af842STejun Heo 			if (new_alloc) {
801833af842STejun Heo 				spin_unlock_irqrestore(&pcpu_lock, flags);
802833af842STejun Heo 				if (pcpu_extend_area_map(chunk,
803833af842STejun Heo 							 new_alloc) < 0) {
804f2badb0cSTejun Heo 					err = "failed to extend area map";
805b38d08f3STejun Heo 					goto fail;
806833af842STejun Heo 				}
807833af842STejun Heo 				spin_lock_irqsave(&pcpu_lock, flags);
808833af842STejun Heo 				/*
809833af842STejun Heo 				 * pcpu_lock has been dropped, need to
810833af842STejun Heo 				 * restart cpu_slot list walking.
811833af842STejun Heo 				 */
812833af842STejun Heo 				goto restart;
813ccea34b5STejun Heo 			}
814ccea34b5STejun Heo 
815*a16037c8STejun Heo 			off = pcpu_alloc_area(chunk, size, align, false);
816fbf59bc9STejun Heo 			if (off >= 0)
817fbf59bc9STejun Heo 				goto area_found;
818fbf59bc9STejun Heo 		}
819fbf59bc9STejun Heo 	}
820fbf59bc9STejun Heo 
821403a91b1SJiri Kosina 	spin_unlock_irqrestore(&pcpu_lock, flags);
822ccea34b5STejun Heo 
823b38d08f3STejun Heo 	/*
824b38d08f3STejun Heo 	 * No space left.  Create a new chunk.  We don't want multiple
825b38d08f3STejun Heo 	 * tasks to create chunks simultaneously.  Serialize and create iff
826b38d08f3STejun Heo 	 * there's still no empty chunk after grabbing the mutex.
827b38d08f3STejun Heo 	 */
828b38d08f3STejun Heo 	mutex_lock(&pcpu_alloc_mutex);
829b38d08f3STejun Heo 
830b38d08f3STejun Heo 	if (list_empty(&pcpu_slot[pcpu_nr_slots - 1])) {
8316081089fSTejun Heo 		chunk = pcpu_create_chunk();
832f2badb0cSTejun Heo 		if (!chunk) {
833f2badb0cSTejun Heo 			err = "failed to allocate new chunk";
834b38d08f3STejun Heo 			goto fail;
835f2badb0cSTejun Heo 		}
836ccea34b5STejun Heo 
837403a91b1SJiri Kosina 		spin_lock_irqsave(&pcpu_lock, flags);
838fbf59bc9STejun Heo 		pcpu_chunk_relocate(chunk, -1);
839b38d08f3STejun Heo 	} else {
840b38d08f3STejun Heo 		spin_lock_irqsave(&pcpu_lock, flags);
841b38d08f3STejun Heo 	}
842b38d08f3STejun Heo 
843b38d08f3STejun Heo 	mutex_unlock(&pcpu_alloc_mutex);
844ccea34b5STejun Heo 	goto restart;
845fbf59bc9STejun Heo 
846fbf59bc9STejun Heo area_found:
847403a91b1SJiri Kosina 	spin_unlock_irqrestore(&pcpu_lock, flags);
848ccea34b5STejun Heo 
849dca49645STejun Heo 	/* populate if not all pages are already there */
850b38d08f3STejun Heo 	mutex_lock(&pcpu_alloc_mutex);
851dca49645STejun Heo 	page_start = PFN_DOWN(off);
852dca49645STejun Heo 	page_end = PFN_UP(off + size);
853dca49645STejun Heo 
854a93ace48STejun Heo 	pcpu_for_each_unpop_region(chunk, rs, re, page_start, page_end) {
855dca49645STejun Heo 		WARN_ON(chunk->immutable);
856dca49645STejun Heo 
857b38d08f3STejun Heo 		ret = pcpu_populate_chunk(chunk, rs, re);
858b38d08f3STejun Heo 
859403a91b1SJiri Kosina 		spin_lock_irqsave(&pcpu_lock, flags);
860b38d08f3STejun Heo 		if (ret) {
861b38d08f3STejun Heo 			mutex_unlock(&pcpu_alloc_mutex);
862fbf59bc9STejun Heo 			pcpu_free_area(chunk, off);
863f2badb0cSTejun Heo 			err = "failed to populate";
864ccea34b5STejun Heo 			goto fail_unlock;
865fbf59bc9STejun Heo 		}
866a93ace48STejun Heo 		bitmap_set(chunk->populated, rs, re - rs);
867b38d08f3STejun Heo 		spin_unlock_irqrestore(&pcpu_lock, flags);
868dca49645STejun Heo 	}
869dca49645STejun Heo 
870ccea34b5STejun Heo 	mutex_unlock(&pcpu_alloc_mutex);
871ccea34b5STejun Heo 
872dca49645STejun Heo 	/* clear the areas and return address relative to base address */
873dca49645STejun Heo 	for_each_possible_cpu(cpu)
874dca49645STejun Heo 		memset((void *)pcpu_chunk_addr(chunk, cpu, 0) + off, 0, size);
875dca49645STejun Heo 
876f528f0b8SCatalin Marinas 	ptr = __addr_to_pcpu_ptr(chunk->base_addr + off);
877f528f0b8SCatalin Marinas 	kmemleak_alloc_percpu(ptr, size);
878f528f0b8SCatalin Marinas 	return ptr;
879ccea34b5STejun Heo 
880ccea34b5STejun Heo fail_unlock:
881403a91b1SJiri Kosina 	spin_unlock_irqrestore(&pcpu_lock, flags);
882b38d08f3STejun Heo fail:
883f2badb0cSTejun Heo 	if (warn_limit) {
884f2badb0cSTejun Heo 		pr_warning("PERCPU: allocation failed, size=%zu align=%zu, "
885f2badb0cSTejun Heo 			   "%s\n", size, align, err);
886f2badb0cSTejun Heo 		dump_stack();
887f2badb0cSTejun Heo 		if (!--warn_limit)
888f2badb0cSTejun Heo 			pr_info("PERCPU: limit reached, disable warning\n");
889f2badb0cSTejun Heo 	}
890ccea34b5STejun Heo 	return NULL;
891fbf59bc9STejun Heo }
892edcb4639STejun Heo 
893edcb4639STejun Heo /**
894edcb4639STejun Heo  * __alloc_percpu - allocate dynamic percpu area
895edcb4639STejun Heo  * @size: size of area to allocate in bytes
896edcb4639STejun Heo  * @align: alignment of area (max PAGE_SIZE)
897edcb4639STejun Heo  *
8989329ba97STejun Heo  * Allocate zero-filled percpu area of @size bytes aligned at @align.
8999329ba97STejun Heo  * Might sleep.  Might trigger writeouts.
900edcb4639STejun Heo  *
901ccea34b5STejun Heo  * CONTEXT:
902ccea34b5STejun Heo  * Does GFP_KERNEL allocation.
903ccea34b5STejun Heo  *
904edcb4639STejun Heo  * RETURNS:
905edcb4639STejun Heo  * Percpu pointer to the allocated area on success, NULL on failure.
906edcb4639STejun Heo  */
90743cf38ebSTejun Heo void __percpu *__alloc_percpu(size_t size, size_t align)
908edcb4639STejun Heo {
909edcb4639STejun Heo 	return pcpu_alloc(size, align, false);
910edcb4639STejun Heo }
911fbf59bc9STejun Heo EXPORT_SYMBOL_GPL(__alloc_percpu);
912fbf59bc9STejun Heo 
913edcb4639STejun Heo /**
914edcb4639STejun Heo  * __alloc_reserved_percpu - allocate reserved percpu area
915edcb4639STejun Heo  * @size: size of area to allocate in bytes
916edcb4639STejun Heo  * @align: alignment of area (max PAGE_SIZE)
917edcb4639STejun Heo  *
9189329ba97STejun Heo  * Allocate zero-filled percpu area of @size bytes aligned at @align
9199329ba97STejun Heo  * from reserved percpu area if arch has set it up; otherwise,
9209329ba97STejun Heo  * allocation is served from the same dynamic area.  Might sleep.
9219329ba97STejun Heo  * Might trigger writeouts.
922edcb4639STejun Heo  *
923ccea34b5STejun Heo  * CONTEXT:
924ccea34b5STejun Heo  * Does GFP_KERNEL allocation.
925ccea34b5STejun Heo  *
926edcb4639STejun Heo  * RETURNS:
927edcb4639STejun Heo  * Percpu pointer to the allocated area on success, NULL on failure.
928edcb4639STejun Heo  */
92943cf38ebSTejun Heo void __percpu *__alloc_reserved_percpu(size_t size, size_t align)
930edcb4639STejun Heo {
931edcb4639STejun Heo 	return pcpu_alloc(size, align, true);
932edcb4639STejun Heo }
933edcb4639STejun Heo 
934a56dbddfSTejun Heo /**
935a56dbddfSTejun Heo  * pcpu_reclaim - reclaim fully free chunks, workqueue function
936a56dbddfSTejun Heo  * @work: unused
937a56dbddfSTejun Heo  *
938a56dbddfSTejun Heo  * Reclaim all fully free chunks except for the first one.
939ccea34b5STejun Heo  *
940ccea34b5STejun Heo  * CONTEXT:
941ccea34b5STejun Heo  * workqueue context.
942a56dbddfSTejun Heo  */
943a56dbddfSTejun Heo static void pcpu_reclaim(struct work_struct *work)
944fbf59bc9STejun Heo {
945a56dbddfSTejun Heo 	LIST_HEAD(todo);
946a56dbddfSTejun Heo 	struct list_head *head = &pcpu_slot[pcpu_nr_slots - 1];
947a56dbddfSTejun Heo 	struct pcpu_chunk *chunk, *next;
948a56dbddfSTejun Heo 
949ccea34b5STejun Heo 	mutex_lock(&pcpu_alloc_mutex);
950ccea34b5STejun Heo 	spin_lock_irq(&pcpu_lock);
951a56dbddfSTejun Heo 
952a56dbddfSTejun Heo 	list_for_each_entry_safe(chunk, next, head, list) {
9538d408b4bSTejun Heo 		WARN_ON(chunk->immutable);
954a56dbddfSTejun Heo 
955a56dbddfSTejun Heo 		/* spare the first one */
956a56dbddfSTejun Heo 		if (chunk == list_first_entry(head, struct pcpu_chunk, list))
957a56dbddfSTejun Heo 			continue;
958a56dbddfSTejun Heo 
959a56dbddfSTejun Heo 		list_move(&chunk->list, &todo);
960a56dbddfSTejun Heo 	}
961a56dbddfSTejun Heo 
962ccea34b5STejun Heo 	spin_unlock_irq(&pcpu_lock);
963a56dbddfSTejun Heo 
964a56dbddfSTejun Heo 	list_for_each_entry_safe(chunk, next, &todo, list) {
965a93ace48STejun Heo 		int rs, re;
966dca49645STejun Heo 
967a93ace48STejun Heo 		pcpu_for_each_pop_region(chunk, rs, re, 0, pcpu_unit_pages) {
968a93ace48STejun Heo 			pcpu_depopulate_chunk(chunk, rs, re);
969a93ace48STejun Heo 			bitmap_clear(chunk->populated, rs, re - rs);
970a93ace48STejun Heo 		}
9716081089fSTejun Heo 		pcpu_destroy_chunk(chunk);
972fbf59bc9STejun Heo 	}
973971f3918STejun Heo 
974971f3918STejun Heo 	mutex_unlock(&pcpu_alloc_mutex);
975a56dbddfSTejun Heo }
976fbf59bc9STejun Heo 
977fbf59bc9STejun Heo /**
978fbf59bc9STejun Heo  * free_percpu - free percpu area
979fbf59bc9STejun Heo  * @ptr: pointer to area to free
980fbf59bc9STejun Heo  *
981ccea34b5STejun Heo  * Free percpu area @ptr.
982ccea34b5STejun Heo  *
983ccea34b5STejun Heo  * CONTEXT:
984ccea34b5STejun Heo  * Can be called from atomic context.
985fbf59bc9STejun Heo  */
98643cf38ebSTejun Heo void free_percpu(void __percpu *ptr)
987fbf59bc9STejun Heo {
988129182e5SAndrew Morton 	void *addr;
989fbf59bc9STejun Heo 	struct pcpu_chunk *chunk;
990ccea34b5STejun Heo 	unsigned long flags;
991fbf59bc9STejun Heo 	int off;
992fbf59bc9STejun Heo 
993fbf59bc9STejun Heo 	if (!ptr)
994fbf59bc9STejun Heo 		return;
995fbf59bc9STejun Heo 
996f528f0b8SCatalin Marinas 	kmemleak_free_percpu(ptr);
997f528f0b8SCatalin Marinas 
998129182e5SAndrew Morton 	addr = __pcpu_ptr_to_addr(ptr);
999129182e5SAndrew Morton 
1000ccea34b5STejun Heo 	spin_lock_irqsave(&pcpu_lock, flags);
1001fbf59bc9STejun Heo 
1002fbf59bc9STejun Heo 	chunk = pcpu_chunk_addr_search(addr);
1003bba174f5STejun Heo 	off = addr - chunk->base_addr;
1004fbf59bc9STejun Heo 
1005fbf59bc9STejun Heo 	pcpu_free_area(chunk, off);
1006fbf59bc9STejun Heo 
1007a56dbddfSTejun Heo 	/* if there are more than one fully free chunks, wake up grim reaper */
1008fbf59bc9STejun Heo 	if (chunk->free_size == pcpu_unit_size) {
1009fbf59bc9STejun Heo 		struct pcpu_chunk *pos;
1010fbf59bc9STejun Heo 
1011a56dbddfSTejun Heo 		list_for_each_entry(pos, &pcpu_slot[pcpu_nr_slots - 1], list)
1012fbf59bc9STejun Heo 			if (pos != chunk) {
1013a56dbddfSTejun Heo 				schedule_work(&pcpu_reclaim_work);
1014fbf59bc9STejun Heo 				break;
1015fbf59bc9STejun Heo 			}
1016fbf59bc9STejun Heo 	}
1017fbf59bc9STejun Heo 
1018ccea34b5STejun Heo 	spin_unlock_irqrestore(&pcpu_lock, flags);
1019fbf59bc9STejun Heo }
1020fbf59bc9STejun Heo EXPORT_SYMBOL_GPL(free_percpu);
1021fbf59bc9STejun Heo 
10223b034b0dSVivek Goyal /**
102310fad5e4STejun Heo  * is_kernel_percpu_address - test whether address is from static percpu area
102410fad5e4STejun Heo  * @addr: address to test
102510fad5e4STejun Heo  *
102610fad5e4STejun Heo  * Test whether @addr belongs to in-kernel static percpu area.  Module
102710fad5e4STejun Heo  * static percpu areas are not considered.  For those, use
102810fad5e4STejun Heo  * is_module_percpu_address().
102910fad5e4STejun Heo  *
103010fad5e4STejun Heo  * RETURNS:
103110fad5e4STejun Heo  * %true if @addr is from in-kernel static percpu area, %false otherwise.
103210fad5e4STejun Heo  */
103310fad5e4STejun Heo bool is_kernel_percpu_address(unsigned long addr)
103410fad5e4STejun Heo {
1035bbddff05STejun Heo #ifdef CONFIG_SMP
103610fad5e4STejun Heo 	const size_t static_size = __per_cpu_end - __per_cpu_start;
103710fad5e4STejun Heo 	void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
103810fad5e4STejun Heo 	unsigned int cpu;
103910fad5e4STejun Heo 
104010fad5e4STejun Heo 	for_each_possible_cpu(cpu) {
104110fad5e4STejun Heo 		void *start = per_cpu_ptr(base, cpu);
104210fad5e4STejun Heo 
104310fad5e4STejun Heo 		if ((void *)addr >= start && (void *)addr < start + static_size)
104410fad5e4STejun Heo 			return true;
104510fad5e4STejun Heo         }
1046bbddff05STejun Heo #endif
1047bbddff05STejun Heo 	/* on UP, can't distinguish from other static vars, always false */
104810fad5e4STejun Heo 	return false;
104910fad5e4STejun Heo }
105010fad5e4STejun Heo 
105110fad5e4STejun Heo /**
10523b034b0dSVivek Goyal  * per_cpu_ptr_to_phys - convert translated percpu address to physical address
10533b034b0dSVivek Goyal  * @addr: the address to be converted to physical address
10543b034b0dSVivek Goyal  *
10553b034b0dSVivek Goyal  * Given @addr which is dereferenceable address obtained via one of
10563b034b0dSVivek Goyal  * percpu access macros, this function translates it into its physical
10573b034b0dSVivek Goyal  * address.  The caller is responsible for ensuring @addr stays valid
10583b034b0dSVivek Goyal  * until this function finishes.
10593b034b0dSVivek Goyal  *
106067589c71SDave Young  * percpu allocator has special setup for the first chunk, which currently
106167589c71SDave Young  * supports either embedding in linear address space or vmalloc mapping,
106267589c71SDave Young  * and, from the second one, the backing allocator (currently either vm or
106367589c71SDave Young  * km) provides translation.
106467589c71SDave Young  *
106567589c71SDave Young  * The addr can be tranlated simply without checking if it falls into the
106667589c71SDave Young  * first chunk. But the current code reflects better how percpu allocator
106767589c71SDave Young  * actually works, and the verification can discover both bugs in percpu
106867589c71SDave Young  * allocator itself and per_cpu_ptr_to_phys() callers. So we keep current
106967589c71SDave Young  * code.
107067589c71SDave Young  *
10713b034b0dSVivek Goyal  * RETURNS:
10723b034b0dSVivek Goyal  * The physical address for @addr.
10733b034b0dSVivek Goyal  */
10743b034b0dSVivek Goyal phys_addr_t per_cpu_ptr_to_phys(void *addr)
10753b034b0dSVivek Goyal {
10769983b6f0STejun Heo 	void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
10779983b6f0STejun Heo 	bool in_first_chunk = false;
1078a855b84cSTejun Heo 	unsigned long first_low, first_high;
10799983b6f0STejun Heo 	unsigned int cpu;
10809983b6f0STejun Heo 
10819983b6f0STejun Heo 	/*
1082a855b84cSTejun Heo 	 * The following test on unit_low/high isn't strictly
10839983b6f0STejun Heo 	 * necessary but will speed up lookups of addresses which
10849983b6f0STejun Heo 	 * aren't in the first chunk.
10859983b6f0STejun Heo 	 */
1086a855b84cSTejun Heo 	first_low = pcpu_chunk_addr(pcpu_first_chunk, pcpu_low_unit_cpu, 0);
1087a855b84cSTejun Heo 	first_high = pcpu_chunk_addr(pcpu_first_chunk, pcpu_high_unit_cpu,
10889983b6f0STejun Heo 				     pcpu_unit_pages);
1089a855b84cSTejun Heo 	if ((unsigned long)addr >= first_low &&
1090a855b84cSTejun Heo 	    (unsigned long)addr < first_high) {
10919983b6f0STejun Heo 		for_each_possible_cpu(cpu) {
10929983b6f0STejun Heo 			void *start = per_cpu_ptr(base, cpu);
10939983b6f0STejun Heo 
10949983b6f0STejun Heo 			if (addr >= start && addr < start + pcpu_unit_size) {
10959983b6f0STejun Heo 				in_first_chunk = true;
10969983b6f0STejun Heo 				break;
10979983b6f0STejun Heo 			}
10989983b6f0STejun Heo 		}
10999983b6f0STejun Heo 	}
11009983b6f0STejun Heo 
11019983b6f0STejun Heo 	if (in_first_chunk) {
1102eac522efSDavid Howells 		if (!is_vmalloc_addr(addr))
11033b034b0dSVivek Goyal 			return __pa(addr);
11043b034b0dSVivek Goyal 		else
11059f57bd4dSEugene Surovegin 			return page_to_phys(vmalloc_to_page(addr)) +
11069f57bd4dSEugene Surovegin 			       offset_in_page(addr);
1107020ec653STejun Heo 	} else
11089f57bd4dSEugene Surovegin 		return page_to_phys(pcpu_addr_to_page(addr)) +
11099f57bd4dSEugene Surovegin 		       offset_in_page(addr);
11103b034b0dSVivek Goyal }
11113b034b0dSVivek Goyal 
1112fbf59bc9STejun Heo /**
1113fd1e8a1fSTejun Heo  * pcpu_alloc_alloc_info - allocate percpu allocation info
1114fd1e8a1fSTejun Heo  * @nr_groups: the number of groups
1115fd1e8a1fSTejun Heo  * @nr_units: the number of units
1116033e48fbSTejun Heo  *
1117fd1e8a1fSTejun Heo  * Allocate ai which is large enough for @nr_groups groups containing
1118fd1e8a1fSTejun Heo  * @nr_units units.  The returned ai's groups[0].cpu_map points to the
1119fd1e8a1fSTejun Heo  * cpu_map array which is long enough for @nr_units and filled with
1120fd1e8a1fSTejun Heo  * NR_CPUS.  It's the caller's responsibility to initialize cpu_map
1121fd1e8a1fSTejun Heo  * pointer of other groups.
1122033e48fbSTejun Heo  *
1123033e48fbSTejun Heo  * RETURNS:
1124fd1e8a1fSTejun Heo  * Pointer to the allocated pcpu_alloc_info on success, NULL on
1125fd1e8a1fSTejun Heo  * failure.
1126033e48fbSTejun Heo  */
1127fd1e8a1fSTejun Heo struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
1128fd1e8a1fSTejun Heo 						      int nr_units)
1129fd1e8a1fSTejun Heo {
1130fd1e8a1fSTejun Heo 	struct pcpu_alloc_info *ai;
1131fd1e8a1fSTejun Heo 	size_t base_size, ai_size;
1132fd1e8a1fSTejun Heo 	void *ptr;
1133fd1e8a1fSTejun Heo 	int unit;
1134fd1e8a1fSTejun Heo 
1135fd1e8a1fSTejun Heo 	base_size = ALIGN(sizeof(*ai) + nr_groups * sizeof(ai->groups[0]),
1136fd1e8a1fSTejun Heo 			  __alignof__(ai->groups[0].cpu_map[0]));
1137fd1e8a1fSTejun Heo 	ai_size = base_size + nr_units * sizeof(ai->groups[0].cpu_map[0]);
1138fd1e8a1fSTejun Heo 
1139999c17e3SSantosh Shilimkar 	ptr = memblock_virt_alloc_nopanic(PFN_ALIGN(ai_size), 0);
1140fd1e8a1fSTejun Heo 	if (!ptr)
1141fd1e8a1fSTejun Heo 		return NULL;
1142fd1e8a1fSTejun Heo 	ai = ptr;
1143fd1e8a1fSTejun Heo 	ptr += base_size;
1144fd1e8a1fSTejun Heo 
1145fd1e8a1fSTejun Heo 	ai->groups[0].cpu_map = ptr;
1146fd1e8a1fSTejun Heo 
1147fd1e8a1fSTejun Heo 	for (unit = 0; unit < nr_units; unit++)
1148fd1e8a1fSTejun Heo 		ai->groups[0].cpu_map[unit] = NR_CPUS;
1149fd1e8a1fSTejun Heo 
1150fd1e8a1fSTejun Heo 	ai->nr_groups = nr_groups;
1151fd1e8a1fSTejun Heo 	ai->__ai_size = PFN_ALIGN(ai_size);
1152fd1e8a1fSTejun Heo 
1153fd1e8a1fSTejun Heo 	return ai;
1154fd1e8a1fSTejun Heo }
1155fd1e8a1fSTejun Heo 
1156fd1e8a1fSTejun Heo /**
1157fd1e8a1fSTejun Heo  * pcpu_free_alloc_info - free percpu allocation info
1158fd1e8a1fSTejun Heo  * @ai: pcpu_alloc_info to free
1159fd1e8a1fSTejun Heo  *
1160fd1e8a1fSTejun Heo  * Free @ai which was allocated by pcpu_alloc_alloc_info().
1161fd1e8a1fSTejun Heo  */
1162fd1e8a1fSTejun Heo void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai)
1163fd1e8a1fSTejun Heo {
1164999c17e3SSantosh Shilimkar 	memblock_free_early(__pa(ai), ai->__ai_size);
1165fd1e8a1fSTejun Heo }
1166fd1e8a1fSTejun Heo 
1167fd1e8a1fSTejun Heo /**
1168fd1e8a1fSTejun Heo  * pcpu_dump_alloc_info - print out information about pcpu_alloc_info
1169fd1e8a1fSTejun Heo  * @lvl: loglevel
1170fd1e8a1fSTejun Heo  * @ai: allocation info to dump
1171fd1e8a1fSTejun Heo  *
1172fd1e8a1fSTejun Heo  * Print out information about @ai using loglevel @lvl.
1173fd1e8a1fSTejun Heo  */
1174fd1e8a1fSTejun Heo static void pcpu_dump_alloc_info(const char *lvl,
1175fd1e8a1fSTejun Heo 				 const struct pcpu_alloc_info *ai)
1176033e48fbSTejun Heo {
1177fd1e8a1fSTejun Heo 	int group_width = 1, cpu_width = 1, width;
1178033e48fbSTejun Heo 	char empty_str[] = "--------";
1179fd1e8a1fSTejun Heo 	int alloc = 0, alloc_end = 0;
1180fd1e8a1fSTejun Heo 	int group, v;
1181fd1e8a1fSTejun Heo 	int upa, apl;	/* units per alloc, allocs per line */
1182033e48fbSTejun Heo 
1183fd1e8a1fSTejun Heo 	v = ai->nr_groups;
1184033e48fbSTejun Heo 	while (v /= 10)
1185fd1e8a1fSTejun Heo 		group_width++;
1186033e48fbSTejun Heo 
1187fd1e8a1fSTejun Heo 	v = num_possible_cpus();
1188fd1e8a1fSTejun Heo 	while (v /= 10)
1189fd1e8a1fSTejun Heo 		cpu_width++;
1190fd1e8a1fSTejun Heo 	empty_str[min_t(int, cpu_width, sizeof(empty_str) - 1)] = '\0';
1191033e48fbSTejun Heo 
1192fd1e8a1fSTejun Heo 	upa = ai->alloc_size / ai->unit_size;
1193fd1e8a1fSTejun Heo 	width = upa * (cpu_width + 1) + group_width + 3;
1194fd1e8a1fSTejun Heo 	apl = rounddown_pow_of_two(max(60 / width, 1));
1195033e48fbSTejun Heo 
1196fd1e8a1fSTejun Heo 	printk("%spcpu-alloc: s%zu r%zu d%zu u%zu alloc=%zu*%zu",
1197fd1e8a1fSTejun Heo 	       lvl, ai->static_size, ai->reserved_size, ai->dyn_size,
1198fd1e8a1fSTejun Heo 	       ai->unit_size, ai->alloc_size / ai->atom_size, ai->atom_size);
1199fd1e8a1fSTejun Heo 
1200fd1e8a1fSTejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
1201fd1e8a1fSTejun Heo 		const struct pcpu_group_info *gi = &ai->groups[group];
1202fd1e8a1fSTejun Heo 		int unit = 0, unit_end = 0;
1203fd1e8a1fSTejun Heo 
1204fd1e8a1fSTejun Heo 		BUG_ON(gi->nr_units % upa);
1205fd1e8a1fSTejun Heo 		for (alloc_end += gi->nr_units / upa;
1206fd1e8a1fSTejun Heo 		     alloc < alloc_end; alloc++) {
1207fd1e8a1fSTejun Heo 			if (!(alloc % apl)) {
1208cb129820STejun Heo 				printk(KERN_CONT "\n");
1209fd1e8a1fSTejun Heo 				printk("%spcpu-alloc: ", lvl);
1210033e48fbSTejun Heo 			}
1211cb129820STejun Heo 			printk(KERN_CONT "[%0*d] ", group_width, group);
1212fd1e8a1fSTejun Heo 
1213fd1e8a1fSTejun Heo 			for (unit_end += upa; unit < unit_end; unit++)
1214fd1e8a1fSTejun Heo 				if (gi->cpu_map[unit] != NR_CPUS)
1215cb129820STejun Heo 					printk(KERN_CONT "%0*d ", cpu_width,
1216fd1e8a1fSTejun Heo 					       gi->cpu_map[unit]);
1217033e48fbSTejun Heo 				else
1218cb129820STejun Heo 					printk(KERN_CONT "%s ", empty_str);
1219033e48fbSTejun Heo 		}
1220fd1e8a1fSTejun Heo 	}
1221cb129820STejun Heo 	printk(KERN_CONT "\n");
1222033e48fbSTejun Heo }
1223033e48fbSTejun Heo 
1224fbf59bc9STejun Heo /**
12258d408b4bSTejun Heo  * pcpu_setup_first_chunk - initialize the first percpu chunk
1226fd1e8a1fSTejun Heo  * @ai: pcpu_alloc_info describing how to percpu area is shaped
122738a6be52STejun Heo  * @base_addr: mapped address
1228fbf59bc9STejun Heo  *
12298d408b4bSTejun Heo  * Initialize the first percpu chunk which contains the kernel static
12308d408b4bSTejun Heo  * perpcu area.  This function is to be called from arch percpu area
123138a6be52STejun Heo  * setup path.
12328d408b4bSTejun Heo  *
1233fd1e8a1fSTejun Heo  * @ai contains all information necessary to initialize the first
1234fd1e8a1fSTejun Heo  * chunk and prime the dynamic percpu allocator.
12358d408b4bSTejun Heo  *
1236fd1e8a1fSTejun Heo  * @ai->static_size is the size of static percpu area.
1237fd1e8a1fSTejun Heo  *
1238fd1e8a1fSTejun Heo  * @ai->reserved_size, if non-zero, specifies the amount of bytes to
1239edcb4639STejun Heo  * reserve after the static area in the first chunk.  This reserves
1240edcb4639STejun Heo  * the first chunk such that it's available only through reserved
1241edcb4639STejun Heo  * percpu allocation.  This is primarily used to serve module percpu
1242edcb4639STejun Heo  * static areas on architectures where the addressing model has
1243edcb4639STejun Heo  * limited offset range for symbol relocations to guarantee module
1244edcb4639STejun Heo  * percpu symbols fall inside the relocatable range.
1245edcb4639STejun Heo  *
1246fd1e8a1fSTejun Heo  * @ai->dyn_size determines the number of bytes available for dynamic
1247fd1e8a1fSTejun Heo  * allocation in the first chunk.  The area between @ai->static_size +
1248fd1e8a1fSTejun Heo  * @ai->reserved_size + @ai->dyn_size and @ai->unit_size is unused.
12496074d5b0STejun Heo  *
1250fd1e8a1fSTejun Heo  * @ai->unit_size specifies unit size and must be aligned to PAGE_SIZE
1251fd1e8a1fSTejun Heo  * and equal to or larger than @ai->static_size + @ai->reserved_size +
1252fd1e8a1fSTejun Heo  * @ai->dyn_size.
12538d408b4bSTejun Heo  *
1254fd1e8a1fSTejun Heo  * @ai->atom_size is the allocation atom size and used as alignment
1255fd1e8a1fSTejun Heo  * for vm areas.
12568d408b4bSTejun Heo  *
1257fd1e8a1fSTejun Heo  * @ai->alloc_size is the allocation size and always multiple of
1258fd1e8a1fSTejun Heo  * @ai->atom_size.  This is larger than @ai->atom_size if
1259fd1e8a1fSTejun Heo  * @ai->unit_size is larger than @ai->atom_size.
1260fd1e8a1fSTejun Heo  *
1261fd1e8a1fSTejun Heo  * @ai->nr_groups and @ai->groups describe virtual memory layout of
1262fd1e8a1fSTejun Heo  * percpu areas.  Units which should be colocated are put into the
1263fd1e8a1fSTejun Heo  * same group.  Dynamic VM areas will be allocated according to these
1264fd1e8a1fSTejun Heo  * groupings.  If @ai->nr_groups is zero, a single group containing
1265fd1e8a1fSTejun Heo  * all units is assumed.
12668d408b4bSTejun Heo  *
126738a6be52STejun Heo  * The caller should have mapped the first chunk at @base_addr and
126838a6be52STejun Heo  * copied static data to each unit.
1269fbf59bc9STejun Heo  *
1270edcb4639STejun Heo  * If the first chunk ends up with both reserved and dynamic areas, it
1271edcb4639STejun Heo  * is served by two chunks - one to serve the core static and reserved
1272edcb4639STejun Heo  * areas and the other for the dynamic area.  They share the same vm
1273edcb4639STejun Heo  * and page map but uses different area allocation map to stay away
1274edcb4639STejun Heo  * from each other.  The latter chunk is circulated in the chunk slots
1275edcb4639STejun Heo  * and available for dynamic allocation like any other chunks.
1276edcb4639STejun Heo  *
1277fbf59bc9STejun Heo  * RETURNS:
1278fb435d52STejun Heo  * 0 on success, -errno on failure.
1279fbf59bc9STejun Heo  */
1280fb435d52STejun Heo int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
1281fd1e8a1fSTejun Heo 				  void *base_addr)
1282fbf59bc9STejun Heo {
1283635b75fcSTejun Heo 	static char cpus_buf[4096] __initdata;
1284099a19d9STejun Heo 	static int smap[PERCPU_DYNAMIC_EARLY_SLOTS] __initdata;
1285099a19d9STejun Heo 	static int dmap[PERCPU_DYNAMIC_EARLY_SLOTS] __initdata;
1286fd1e8a1fSTejun Heo 	size_t dyn_size = ai->dyn_size;
1287fd1e8a1fSTejun Heo 	size_t size_sum = ai->static_size + ai->reserved_size + dyn_size;
1288edcb4639STejun Heo 	struct pcpu_chunk *schunk, *dchunk = NULL;
12896563297cSTejun Heo 	unsigned long *group_offsets;
12906563297cSTejun Heo 	size_t *group_sizes;
1291fb435d52STejun Heo 	unsigned long *unit_off;
1292fbf59bc9STejun Heo 	unsigned int cpu;
1293fd1e8a1fSTejun Heo 	int *unit_map;
1294fd1e8a1fSTejun Heo 	int group, unit, i;
1295fbf59bc9STejun Heo 
1296635b75fcSTejun Heo 	cpumask_scnprintf(cpus_buf, sizeof(cpus_buf), cpu_possible_mask);
1297635b75fcSTejun Heo 
1298635b75fcSTejun Heo #define PCPU_SETUP_BUG_ON(cond)	do {					\
1299635b75fcSTejun Heo 	if (unlikely(cond)) {						\
1300635b75fcSTejun Heo 		pr_emerg("PERCPU: failed to initialize, %s", #cond);	\
1301635b75fcSTejun Heo 		pr_emerg("PERCPU: cpu_possible_mask=%s\n", cpus_buf);	\
1302635b75fcSTejun Heo 		pcpu_dump_alloc_info(KERN_EMERG, ai);			\
1303635b75fcSTejun Heo 		BUG();							\
1304635b75fcSTejun Heo 	}								\
1305635b75fcSTejun Heo } while (0)
1306635b75fcSTejun Heo 
13072f39e637STejun Heo 	/* sanity checks */
1308635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(ai->nr_groups <= 0);
1309bbddff05STejun Heo #ifdef CONFIG_SMP
1310635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(!ai->static_size);
13110415b00dSTejun Heo 	PCPU_SETUP_BUG_ON((unsigned long)__per_cpu_start & ~PAGE_MASK);
1312bbddff05STejun Heo #endif
1313635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(!base_addr);
13140415b00dSTejun Heo 	PCPU_SETUP_BUG_ON((unsigned long)base_addr & ~PAGE_MASK);
1315635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(ai->unit_size < size_sum);
1316635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(ai->unit_size & ~PAGE_MASK);
1317635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(ai->unit_size < PCPU_MIN_UNIT_SIZE);
1318099a19d9STejun Heo 	PCPU_SETUP_BUG_ON(ai->dyn_size < PERCPU_DYNAMIC_EARLY_SIZE);
13199f645532STejun Heo 	PCPU_SETUP_BUG_ON(pcpu_verify_alloc_info(ai) < 0);
13208d408b4bSTejun Heo 
13216563297cSTejun Heo 	/* process group information and build config tables accordingly */
1322999c17e3SSantosh Shilimkar 	group_offsets = memblock_virt_alloc(ai->nr_groups *
1323999c17e3SSantosh Shilimkar 					     sizeof(group_offsets[0]), 0);
1324999c17e3SSantosh Shilimkar 	group_sizes = memblock_virt_alloc(ai->nr_groups *
1325999c17e3SSantosh Shilimkar 					   sizeof(group_sizes[0]), 0);
1326999c17e3SSantosh Shilimkar 	unit_map = memblock_virt_alloc(nr_cpu_ids * sizeof(unit_map[0]), 0);
1327999c17e3SSantosh Shilimkar 	unit_off = memblock_virt_alloc(nr_cpu_ids * sizeof(unit_off[0]), 0);
13282f39e637STejun Heo 
1329fd1e8a1fSTejun Heo 	for (cpu = 0; cpu < nr_cpu_ids; cpu++)
1330ffe0d5a5STejun Heo 		unit_map[cpu] = UINT_MAX;
1331a855b84cSTejun Heo 
1332a855b84cSTejun Heo 	pcpu_low_unit_cpu = NR_CPUS;
1333a855b84cSTejun Heo 	pcpu_high_unit_cpu = NR_CPUS;
13342f39e637STejun Heo 
1335fd1e8a1fSTejun Heo 	for (group = 0, unit = 0; group < ai->nr_groups; group++, unit += i) {
1336fd1e8a1fSTejun Heo 		const struct pcpu_group_info *gi = &ai->groups[group];
13372f39e637STejun Heo 
13386563297cSTejun Heo 		group_offsets[group] = gi->base_offset;
13396563297cSTejun Heo 		group_sizes[group] = gi->nr_units * ai->unit_size;
13406563297cSTejun Heo 
1341fd1e8a1fSTejun Heo 		for (i = 0; i < gi->nr_units; i++) {
1342fd1e8a1fSTejun Heo 			cpu = gi->cpu_map[i];
1343fd1e8a1fSTejun Heo 			if (cpu == NR_CPUS)
1344fd1e8a1fSTejun Heo 				continue;
1345fd1e8a1fSTejun Heo 
1346635b75fcSTejun Heo 			PCPU_SETUP_BUG_ON(cpu > nr_cpu_ids);
1347635b75fcSTejun Heo 			PCPU_SETUP_BUG_ON(!cpu_possible(cpu));
1348635b75fcSTejun Heo 			PCPU_SETUP_BUG_ON(unit_map[cpu] != UINT_MAX);
1349fd1e8a1fSTejun Heo 
1350fd1e8a1fSTejun Heo 			unit_map[cpu] = unit + i;
1351fb435d52STejun Heo 			unit_off[cpu] = gi->base_offset + i * ai->unit_size;
1352fb435d52STejun Heo 
1353a855b84cSTejun Heo 			/* determine low/high unit_cpu */
1354a855b84cSTejun Heo 			if (pcpu_low_unit_cpu == NR_CPUS ||
1355a855b84cSTejun Heo 			    unit_off[cpu] < unit_off[pcpu_low_unit_cpu])
1356a855b84cSTejun Heo 				pcpu_low_unit_cpu = cpu;
1357a855b84cSTejun Heo 			if (pcpu_high_unit_cpu == NR_CPUS ||
1358a855b84cSTejun Heo 			    unit_off[cpu] > unit_off[pcpu_high_unit_cpu])
1359a855b84cSTejun Heo 				pcpu_high_unit_cpu = cpu;
13600fc0531eSLinus Torvalds 		}
13610fc0531eSLinus Torvalds 	}
1362fd1e8a1fSTejun Heo 	pcpu_nr_units = unit;
13632f39e637STejun Heo 
13642f39e637STejun Heo 	for_each_possible_cpu(cpu)
1365635b75fcSTejun Heo 		PCPU_SETUP_BUG_ON(unit_map[cpu] == UINT_MAX);
1366635b75fcSTejun Heo 
1367635b75fcSTejun Heo 	/* we're done parsing the input, undefine BUG macro and dump config */
1368635b75fcSTejun Heo #undef PCPU_SETUP_BUG_ON
1369bcbea798STejun Heo 	pcpu_dump_alloc_info(KERN_DEBUG, ai);
13702f39e637STejun Heo 
13716563297cSTejun Heo 	pcpu_nr_groups = ai->nr_groups;
13726563297cSTejun Heo 	pcpu_group_offsets = group_offsets;
13736563297cSTejun Heo 	pcpu_group_sizes = group_sizes;
1374fd1e8a1fSTejun Heo 	pcpu_unit_map = unit_map;
1375fb435d52STejun Heo 	pcpu_unit_offsets = unit_off;
13762f39e637STejun Heo 
13772f39e637STejun Heo 	/* determine basic parameters */
1378fd1e8a1fSTejun Heo 	pcpu_unit_pages = ai->unit_size >> PAGE_SHIFT;
1379d9b55eebSTejun Heo 	pcpu_unit_size = pcpu_unit_pages << PAGE_SHIFT;
13806563297cSTejun Heo 	pcpu_atom_size = ai->atom_size;
1381ce3141a2STejun Heo 	pcpu_chunk_struct_size = sizeof(struct pcpu_chunk) +
1382ce3141a2STejun Heo 		BITS_TO_LONGS(pcpu_unit_pages) * sizeof(unsigned long);
1383cafe8816STejun Heo 
1384d9b55eebSTejun Heo 	/*
1385d9b55eebSTejun Heo 	 * Allocate chunk slots.  The additional last slot is for
1386d9b55eebSTejun Heo 	 * empty chunks.
1387d9b55eebSTejun Heo 	 */
1388d9b55eebSTejun Heo 	pcpu_nr_slots = __pcpu_size_to_slot(pcpu_unit_size) + 2;
1389999c17e3SSantosh Shilimkar 	pcpu_slot = memblock_virt_alloc(
1390999c17e3SSantosh Shilimkar 			pcpu_nr_slots * sizeof(pcpu_slot[0]), 0);
1391fbf59bc9STejun Heo 	for (i = 0; i < pcpu_nr_slots; i++)
1392fbf59bc9STejun Heo 		INIT_LIST_HEAD(&pcpu_slot[i]);
1393fbf59bc9STejun Heo 
1394edcb4639STejun Heo 	/*
1395edcb4639STejun Heo 	 * Initialize static chunk.  If reserved_size is zero, the
1396edcb4639STejun Heo 	 * static chunk covers static area + dynamic allocation area
1397edcb4639STejun Heo 	 * in the first chunk.  If reserved_size is not zero, it
1398edcb4639STejun Heo 	 * covers static area + reserved area (mostly used for module
1399edcb4639STejun Heo 	 * static percpu allocation).
1400edcb4639STejun Heo 	 */
1401999c17e3SSantosh Shilimkar 	schunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
14022441d15cSTejun Heo 	INIT_LIST_HEAD(&schunk->list);
1403bba174f5STejun Heo 	schunk->base_addr = base_addr;
140461ace7faSTejun Heo 	schunk->map = smap;
140561ace7faSTejun Heo 	schunk->map_alloc = ARRAY_SIZE(smap);
140638a6be52STejun Heo 	schunk->immutable = true;
1407ce3141a2STejun Heo 	bitmap_fill(schunk->populated, pcpu_unit_pages);
1408edcb4639STejun Heo 
1409fd1e8a1fSTejun Heo 	if (ai->reserved_size) {
1410fd1e8a1fSTejun Heo 		schunk->free_size = ai->reserved_size;
1411ae9e6bc9STejun Heo 		pcpu_reserved_chunk = schunk;
1412fd1e8a1fSTejun Heo 		pcpu_reserved_chunk_limit = ai->static_size + ai->reserved_size;
1413edcb4639STejun Heo 	} else {
14142441d15cSTejun Heo 		schunk->free_size = dyn_size;
1415edcb4639STejun Heo 		dyn_size = 0;			/* dynamic area covered */
1416edcb4639STejun Heo 	}
14172441d15cSTejun Heo 	schunk->contig_hint = schunk->free_size;
1418fbf59bc9STejun Heo 
1419723ad1d9SAl Viro 	schunk->map[0] = 1;
1420723ad1d9SAl Viro 	schunk->map[1] = ai->static_size;
1421723ad1d9SAl Viro 	schunk->map_used = 1;
142261ace7faSTejun Heo 	if (schunk->free_size)
1423723ad1d9SAl Viro 		schunk->map[++schunk->map_used] = 1 | (ai->static_size + schunk->free_size);
1424723ad1d9SAl Viro 	else
1425723ad1d9SAl Viro 		schunk->map[1] |= 1;
142661ace7faSTejun Heo 
1427edcb4639STejun Heo 	/* init dynamic chunk if necessary */
1428edcb4639STejun Heo 	if (dyn_size) {
1429999c17e3SSantosh Shilimkar 		dchunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
1430edcb4639STejun Heo 		INIT_LIST_HEAD(&dchunk->list);
1431bba174f5STejun Heo 		dchunk->base_addr = base_addr;
1432edcb4639STejun Heo 		dchunk->map = dmap;
1433edcb4639STejun Heo 		dchunk->map_alloc = ARRAY_SIZE(dmap);
143438a6be52STejun Heo 		dchunk->immutable = true;
1435ce3141a2STejun Heo 		bitmap_fill(dchunk->populated, pcpu_unit_pages);
1436edcb4639STejun Heo 
1437edcb4639STejun Heo 		dchunk->contig_hint = dchunk->free_size = dyn_size;
1438723ad1d9SAl Viro 		dchunk->map[0] = 1;
1439723ad1d9SAl Viro 		dchunk->map[1] = pcpu_reserved_chunk_limit;
1440723ad1d9SAl Viro 		dchunk->map[2] = (pcpu_reserved_chunk_limit + dchunk->free_size) | 1;
1441723ad1d9SAl Viro 		dchunk->map_used = 2;
1442edcb4639STejun Heo 	}
1443edcb4639STejun Heo 
14442441d15cSTejun Heo 	/* link the first chunk in */
1445ae9e6bc9STejun Heo 	pcpu_first_chunk = dchunk ?: schunk;
1446ae9e6bc9STejun Heo 	pcpu_chunk_relocate(pcpu_first_chunk, -1);
1447fbf59bc9STejun Heo 
1448fbf59bc9STejun Heo 	/* we're done */
1449bba174f5STejun Heo 	pcpu_base_addr = base_addr;
1450fb435d52STejun Heo 	return 0;
1451fbf59bc9STejun Heo }
145266c3a757STejun Heo 
1453bbddff05STejun Heo #ifdef CONFIG_SMP
1454bbddff05STejun Heo 
145517f3609cSAndi Kleen const char * const pcpu_fc_names[PCPU_FC_NR] __initconst = {
1456f58dc01bSTejun Heo 	[PCPU_FC_AUTO]	= "auto",
1457f58dc01bSTejun Heo 	[PCPU_FC_EMBED]	= "embed",
1458f58dc01bSTejun Heo 	[PCPU_FC_PAGE]	= "page",
1459f58dc01bSTejun Heo };
146066c3a757STejun Heo 
1461f58dc01bSTejun Heo enum pcpu_fc pcpu_chosen_fc __initdata = PCPU_FC_AUTO;
1462f58dc01bSTejun Heo 
1463f58dc01bSTejun Heo static int __init percpu_alloc_setup(char *str)
146466c3a757STejun Heo {
14655479c78aSCyrill Gorcunov 	if (!str)
14665479c78aSCyrill Gorcunov 		return -EINVAL;
14675479c78aSCyrill Gorcunov 
1468f58dc01bSTejun Heo 	if (0)
1469f58dc01bSTejun Heo 		/* nada */;
1470f58dc01bSTejun Heo #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
1471f58dc01bSTejun Heo 	else if (!strcmp(str, "embed"))
1472f58dc01bSTejun Heo 		pcpu_chosen_fc = PCPU_FC_EMBED;
1473f58dc01bSTejun Heo #endif
1474f58dc01bSTejun Heo #ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
1475f58dc01bSTejun Heo 	else if (!strcmp(str, "page"))
1476f58dc01bSTejun Heo 		pcpu_chosen_fc = PCPU_FC_PAGE;
1477f58dc01bSTejun Heo #endif
1478f58dc01bSTejun Heo 	else
1479f58dc01bSTejun Heo 		pr_warning("PERCPU: unknown allocator %s specified\n", str);
148066c3a757STejun Heo 
1481f58dc01bSTejun Heo 	return 0;
148266c3a757STejun Heo }
1483f58dc01bSTejun Heo early_param("percpu_alloc", percpu_alloc_setup);
148466c3a757STejun Heo 
14853c9a024fSTejun Heo /*
14863c9a024fSTejun Heo  * pcpu_embed_first_chunk() is used by the generic percpu setup.
14873c9a024fSTejun Heo  * Build it if needed by the arch config or the generic setup is going
14883c9a024fSTejun Heo  * to be used.
14893c9a024fSTejun Heo  */
149008fc4580STejun Heo #if defined(CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK) || \
149108fc4580STejun Heo 	!defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
14923c9a024fSTejun Heo #define BUILD_EMBED_FIRST_CHUNK
14933c9a024fSTejun Heo #endif
14943c9a024fSTejun Heo 
14953c9a024fSTejun Heo /* build pcpu_page_first_chunk() iff needed by the arch config */
14963c9a024fSTejun Heo #if defined(CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK)
14973c9a024fSTejun Heo #define BUILD_PAGE_FIRST_CHUNK
14983c9a024fSTejun Heo #endif
14993c9a024fSTejun Heo 
15003c9a024fSTejun Heo /* pcpu_build_alloc_info() is used by both embed and page first chunk */
15013c9a024fSTejun Heo #if defined(BUILD_EMBED_FIRST_CHUNK) || defined(BUILD_PAGE_FIRST_CHUNK)
15023c9a024fSTejun Heo /**
1503fbf59bc9STejun Heo  * pcpu_build_alloc_info - build alloc_info considering distances between CPUs
1504fbf59bc9STejun Heo  * @reserved_size: the size of reserved percpu area in bytes
1505fbf59bc9STejun Heo  * @dyn_size: minimum free size for dynamic allocation in bytes
1506fbf59bc9STejun Heo  * @atom_size: allocation atom size
1507fbf59bc9STejun Heo  * @cpu_distance_fn: callback to determine distance between cpus, optional
1508fbf59bc9STejun Heo  *
1509fbf59bc9STejun Heo  * This function determines grouping of units, their mappings to cpus
1510fbf59bc9STejun Heo  * and other parameters considering needed percpu size, allocation
1511fbf59bc9STejun Heo  * atom size and distances between CPUs.
1512fbf59bc9STejun Heo  *
1513fbf59bc9STejun Heo  * Groups are always mutliples of atom size and CPUs which are of
1514fbf59bc9STejun Heo  * LOCAL_DISTANCE both ways are grouped together and share space for
1515fbf59bc9STejun Heo  * units in the same group.  The returned configuration is guaranteed
1516fbf59bc9STejun Heo  * to have CPUs on different nodes on different groups and >=75% usage
1517fbf59bc9STejun Heo  * of allocated virtual address space.
1518fbf59bc9STejun Heo  *
1519fbf59bc9STejun Heo  * RETURNS:
1520fbf59bc9STejun Heo  * On success, pointer to the new allocation_info is returned.  On
1521fbf59bc9STejun Heo  * failure, ERR_PTR value is returned.
1522fbf59bc9STejun Heo  */
1523fbf59bc9STejun Heo static struct pcpu_alloc_info * __init pcpu_build_alloc_info(
1524fbf59bc9STejun Heo 				size_t reserved_size, size_t dyn_size,
1525fbf59bc9STejun Heo 				size_t atom_size,
1526fbf59bc9STejun Heo 				pcpu_fc_cpu_distance_fn_t cpu_distance_fn)
1527fbf59bc9STejun Heo {
1528fbf59bc9STejun Heo 	static int group_map[NR_CPUS] __initdata;
1529fbf59bc9STejun Heo 	static int group_cnt[NR_CPUS] __initdata;
1530fbf59bc9STejun Heo 	const size_t static_size = __per_cpu_end - __per_cpu_start;
1531fbf59bc9STejun Heo 	int nr_groups = 1, nr_units = 0;
1532fbf59bc9STejun Heo 	size_t size_sum, min_unit_size, alloc_size;
1533fbf59bc9STejun Heo 	int upa, max_upa, uninitialized_var(best_upa);	/* units_per_alloc */
1534fbf59bc9STejun Heo 	int last_allocs, group, unit;
1535fbf59bc9STejun Heo 	unsigned int cpu, tcpu;
1536fbf59bc9STejun Heo 	struct pcpu_alloc_info *ai;
1537fbf59bc9STejun Heo 	unsigned int *cpu_map;
1538fbf59bc9STejun Heo 
1539fbf59bc9STejun Heo 	/* this function may be called multiple times */
1540fbf59bc9STejun Heo 	memset(group_map, 0, sizeof(group_map));
1541fbf59bc9STejun Heo 	memset(group_cnt, 0, sizeof(group_cnt));
1542fbf59bc9STejun Heo 
1543fbf59bc9STejun Heo 	/* calculate size_sum and ensure dyn_size is enough for early alloc */
1544fbf59bc9STejun Heo 	size_sum = PFN_ALIGN(static_size + reserved_size +
1545fbf59bc9STejun Heo 			    max_t(size_t, dyn_size, PERCPU_DYNAMIC_EARLY_SIZE));
1546fbf59bc9STejun Heo 	dyn_size = size_sum - static_size - reserved_size;
1547fbf59bc9STejun Heo 
1548fbf59bc9STejun Heo 	/*
1549fbf59bc9STejun Heo 	 * Determine min_unit_size, alloc_size and max_upa such that
1550fbf59bc9STejun Heo 	 * alloc_size is multiple of atom_size and is the smallest
155125985edcSLucas De Marchi 	 * which can accommodate 4k aligned segments which are equal to
1552fbf59bc9STejun Heo 	 * or larger than min_unit_size.
1553fbf59bc9STejun Heo 	 */
1554fbf59bc9STejun Heo 	min_unit_size = max_t(size_t, size_sum, PCPU_MIN_UNIT_SIZE);
1555fbf59bc9STejun Heo 
1556fbf59bc9STejun Heo 	alloc_size = roundup(min_unit_size, atom_size);
1557fbf59bc9STejun Heo 	upa = alloc_size / min_unit_size;
1558fbf59bc9STejun Heo 	while (alloc_size % upa || ((alloc_size / upa) & ~PAGE_MASK))
1559fbf59bc9STejun Heo 		upa--;
1560fbf59bc9STejun Heo 	max_upa = upa;
1561fbf59bc9STejun Heo 
1562fbf59bc9STejun Heo 	/* group cpus according to their proximity */
1563fbf59bc9STejun Heo 	for_each_possible_cpu(cpu) {
1564fbf59bc9STejun Heo 		group = 0;
1565fbf59bc9STejun Heo 	next_group:
1566fbf59bc9STejun Heo 		for_each_possible_cpu(tcpu) {
1567fbf59bc9STejun Heo 			if (cpu == tcpu)
1568fbf59bc9STejun Heo 				break;
1569fbf59bc9STejun Heo 			if (group_map[tcpu] == group && cpu_distance_fn &&
1570fbf59bc9STejun Heo 			    (cpu_distance_fn(cpu, tcpu) > LOCAL_DISTANCE ||
1571fbf59bc9STejun Heo 			     cpu_distance_fn(tcpu, cpu) > LOCAL_DISTANCE)) {
1572fbf59bc9STejun Heo 				group++;
1573fbf59bc9STejun Heo 				nr_groups = max(nr_groups, group + 1);
1574fbf59bc9STejun Heo 				goto next_group;
1575fbf59bc9STejun Heo 			}
1576fbf59bc9STejun Heo 		}
1577fbf59bc9STejun Heo 		group_map[cpu] = group;
1578fbf59bc9STejun Heo 		group_cnt[group]++;
1579fbf59bc9STejun Heo 	}
1580fbf59bc9STejun Heo 
1581fbf59bc9STejun Heo 	/*
1582fbf59bc9STejun Heo 	 * Expand unit size until address space usage goes over 75%
1583fbf59bc9STejun Heo 	 * and then as much as possible without using more address
1584fbf59bc9STejun Heo 	 * space.
1585fbf59bc9STejun Heo 	 */
1586fbf59bc9STejun Heo 	last_allocs = INT_MAX;
1587fbf59bc9STejun Heo 	for (upa = max_upa; upa; upa--) {
1588fbf59bc9STejun Heo 		int allocs = 0, wasted = 0;
1589fbf59bc9STejun Heo 
1590fbf59bc9STejun Heo 		if (alloc_size % upa || ((alloc_size / upa) & ~PAGE_MASK))
1591fbf59bc9STejun Heo 			continue;
1592fbf59bc9STejun Heo 
1593fbf59bc9STejun Heo 		for (group = 0; group < nr_groups; group++) {
1594fbf59bc9STejun Heo 			int this_allocs = DIV_ROUND_UP(group_cnt[group], upa);
1595fbf59bc9STejun Heo 			allocs += this_allocs;
1596fbf59bc9STejun Heo 			wasted += this_allocs * upa - group_cnt[group];
1597fbf59bc9STejun Heo 		}
1598fbf59bc9STejun Heo 
1599fbf59bc9STejun Heo 		/*
1600fbf59bc9STejun Heo 		 * Don't accept if wastage is over 1/3.  The
1601fbf59bc9STejun Heo 		 * greater-than comparison ensures upa==1 always
1602fbf59bc9STejun Heo 		 * passes the following check.
1603fbf59bc9STejun Heo 		 */
1604fbf59bc9STejun Heo 		if (wasted > num_possible_cpus() / 3)
1605fbf59bc9STejun Heo 			continue;
1606fbf59bc9STejun Heo 
1607fbf59bc9STejun Heo 		/* and then don't consume more memory */
1608fbf59bc9STejun Heo 		if (allocs > last_allocs)
1609fbf59bc9STejun Heo 			break;
1610fbf59bc9STejun Heo 		last_allocs = allocs;
1611fbf59bc9STejun Heo 		best_upa = upa;
1612fbf59bc9STejun Heo 	}
1613fbf59bc9STejun Heo 	upa = best_upa;
1614fbf59bc9STejun Heo 
1615fbf59bc9STejun Heo 	/* allocate and fill alloc_info */
1616fbf59bc9STejun Heo 	for (group = 0; group < nr_groups; group++)
1617fbf59bc9STejun Heo 		nr_units += roundup(group_cnt[group], upa);
1618fbf59bc9STejun Heo 
1619fbf59bc9STejun Heo 	ai = pcpu_alloc_alloc_info(nr_groups, nr_units);
1620fbf59bc9STejun Heo 	if (!ai)
1621fbf59bc9STejun Heo 		return ERR_PTR(-ENOMEM);
1622fbf59bc9STejun Heo 	cpu_map = ai->groups[0].cpu_map;
1623fbf59bc9STejun Heo 
1624fbf59bc9STejun Heo 	for (group = 0; group < nr_groups; group++) {
1625fbf59bc9STejun Heo 		ai->groups[group].cpu_map = cpu_map;
1626fbf59bc9STejun Heo 		cpu_map += roundup(group_cnt[group], upa);
1627fbf59bc9STejun Heo 	}
1628fbf59bc9STejun Heo 
1629fbf59bc9STejun Heo 	ai->static_size = static_size;
1630fbf59bc9STejun Heo 	ai->reserved_size = reserved_size;
1631fbf59bc9STejun Heo 	ai->dyn_size = dyn_size;
1632fbf59bc9STejun Heo 	ai->unit_size = alloc_size / upa;
1633fbf59bc9STejun Heo 	ai->atom_size = atom_size;
1634fbf59bc9STejun Heo 	ai->alloc_size = alloc_size;
1635fbf59bc9STejun Heo 
1636fbf59bc9STejun Heo 	for (group = 0, unit = 0; group_cnt[group]; group++) {
1637fbf59bc9STejun Heo 		struct pcpu_group_info *gi = &ai->groups[group];
1638fbf59bc9STejun Heo 
1639fbf59bc9STejun Heo 		/*
1640fbf59bc9STejun Heo 		 * Initialize base_offset as if all groups are located
1641fbf59bc9STejun Heo 		 * back-to-back.  The caller should update this to
1642fbf59bc9STejun Heo 		 * reflect actual allocation.
1643fbf59bc9STejun Heo 		 */
1644fbf59bc9STejun Heo 		gi->base_offset = unit * ai->unit_size;
1645fbf59bc9STejun Heo 
1646fbf59bc9STejun Heo 		for_each_possible_cpu(cpu)
1647fbf59bc9STejun Heo 			if (group_map[cpu] == group)
1648fbf59bc9STejun Heo 				gi->cpu_map[gi->nr_units++] = cpu;
1649fbf59bc9STejun Heo 		gi->nr_units = roundup(gi->nr_units, upa);
1650fbf59bc9STejun Heo 		unit += gi->nr_units;
1651fbf59bc9STejun Heo 	}
1652fbf59bc9STejun Heo 	BUG_ON(unit != nr_units);
1653fbf59bc9STejun Heo 
1654fbf59bc9STejun Heo 	return ai;
1655fbf59bc9STejun Heo }
16563c9a024fSTejun Heo #endif /* BUILD_EMBED_FIRST_CHUNK || BUILD_PAGE_FIRST_CHUNK */
1657fbf59bc9STejun Heo 
16583c9a024fSTejun Heo #if defined(BUILD_EMBED_FIRST_CHUNK)
165966c3a757STejun Heo /**
166066c3a757STejun Heo  * pcpu_embed_first_chunk - embed the first percpu chunk into bootmem
166166c3a757STejun Heo  * @reserved_size: the size of reserved percpu area in bytes
16624ba6ce25STejun Heo  * @dyn_size: minimum free size for dynamic allocation in bytes
1663c8826dd5STejun Heo  * @atom_size: allocation atom size
1664c8826dd5STejun Heo  * @cpu_distance_fn: callback to determine distance between cpus, optional
1665c8826dd5STejun Heo  * @alloc_fn: function to allocate percpu page
166625985edcSLucas De Marchi  * @free_fn: function to free percpu page
166766c3a757STejun Heo  *
166866c3a757STejun Heo  * This is a helper to ease setting up embedded first percpu chunk and
166966c3a757STejun Heo  * can be called where pcpu_setup_first_chunk() is expected.
167066c3a757STejun Heo  *
167166c3a757STejun Heo  * If this function is used to setup the first chunk, it is allocated
1672c8826dd5STejun Heo  * by calling @alloc_fn and used as-is without being mapped into
1673c8826dd5STejun Heo  * vmalloc area.  Allocations are always whole multiples of @atom_size
1674c8826dd5STejun Heo  * aligned to @atom_size.
1675c8826dd5STejun Heo  *
1676c8826dd5STejun Heo  * This enables the first chunk to piggy back on the linear physical
1677c8826dd5STejun Heo  * mapping which often uses larger page size.  Please note that this
1678c8826dd5STejun Heo  * can result in very sparse cpu->unit mapping on NUMA machines thus
1679c8826dd5STejun Heo  * requiring large vmalloc address space.  Don't use this allocator if
1680c8826dd5STejun Heo  * vmalloc space is not orders of magnitude larger than distances
1681c8826dd5STejun Heo  * between node memory addresses (ie. 32bit NUMA machines).
168266c3a757STejun Heo  *
16834ba6ce25STejun Heo  * @dyn_size specifies the minimum dynamic area size.
168466c3a757STejun Heo  *
168566c3a757STejun Heo  * If the needed size is smaller than the minimum or specified unit
1686c8826dd5STejun Heo  * size, the leftover is returned using @free_fn.
168766c3a757STejun Heo  *
168866c3a757STejun Heo  * RETURNS:
1689fb435d52STejun Heo  * 0 on success, -errno on failure.
169066c3a757STejun Heo  */
16914ba6ce25STejun Heo int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
1692c8826dd5STejun Heo 				  size_t atom_size,
1693c8826dd5STejun Heo 				  pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
1694c8826dd5STejun Heo 				  pcpu_fc_alloc_fn_t alloc_fn,
1695c8826dd5STejun Heo 				  pcpu_fc_free_fn_t free_fn)
169666c3a757STejun Heo {
1697c8826dd5STejun Heo 	void *base = (void *)ULONG_MAX;
1698c8826dd5STejun Heo 	void **areas = NULL;
1699fd1e8a1fSTejun Heo 	struct pcpu_alloc_info *ai;
17006ea529a2STejun Heo 	size_t size_sum, areas_size, max_distance;
1701c8826dd5STejun Heo 	int group, i, rc;
170266c3a757STejun Heo 
1703c8826dd5STejun Heo 	ai = pcpu_build_alloc_info(reserved_size, dyn_size, atom_size,
1704c8826dd5STejun Heo 				   cpu_distance_fn);
1705fd1e8a1fSTejun Heo 	if (IS_ERR(ai))
1706fd1e8a1fSTejun Heo 		return PTR_ERR(ai);
170766c3a757STejun Heo 
1708fd1e8a1fSTejun Heo 	size_sum = ai->static_size + ai->reserved_size + ai->dyn_size;
1709c8826dd5STejun Heo 	areas_size = PFN_ALIGN(ai->nr_groups * sizeof(void *));
171066c3a757STejun Heo 
1711999c17e3SSantosh Shilimkar 	areas = memblock_virt_alloc_nopanic(areas_size, 0);
1712c8826dd5STejun Heo 	if (!areas) {
1713fb435d52STejun Heo 		rc = -ENOMEM;
1714c8826dd5STejun Heo 		goto out_free;
1715fa8a7094STejun Heo 	}
171666c3a757STejun Heo 
1717c8826dd5STejun Heo 	/* allocate, copy and determine base address */
1718c8826dd5STejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
1719c8826dd5STejun Heo 		struct pcpu_group_info *gi = &ai->groups[group];
1720c8826dd5STejun Heo 		unsigned int cpu = NR_CPUS;
1721c8826dd5STejun Heo 		void *ptr;
172266c3a757STejun Heo 
1723c8826dd5STejun Heo 		for (i = 0; i < gi->nr_units && cpu == NR_CPUS; i++)
1724c8826dd5STejun Heo 			cpu = gi->cpu_map[i];
1725c8826dd5STejun Heo 		BUG_ON(cpu == NR_CPUS);
1726c8826dd5STejun Heo 
1727c8826dd5STejun Heo 		/* allocate space for the whole group */
1728c8826dd5STejun Heo 		ptr = alloc_fn(cpu, gi->nr_units * ai->unit_size, atom_size);
1729c8826dd5STejun Heo 		if (!ptr) {
1730c8826dd5STejun Heo 			rc = -ENOMEM;
1731c8826dd5STejun Heo 			goto out_free_areas;
1732c8826dd5STejun Heo 		}
1733f528f0b8SCatalin Marinas 		/* kmemleak tracks the percpu allocations separately */
1734f528f0b8SCatalin Marinas 		kmemleak_free(ptr);
1735c8826dd5STejun Heo 		areas[group] = ptr;
1736c8826dd5STejun Heo 
1737c8826dd5STejun Heo 		base = min(ptr, base);
173842b64281STejun Heo 	}
173942b64281STejun Heo 
174042b64281STejun Heo 	/*
174142b64281STejun Heo 	 * Copy data and free unused parts.  This should happen after all
174242b64281STejun Heo 	 * allocations are complete; otherwise, we may end up with
174342b64281STejun Heo 	 * overlapping groups.
174442b64281STejun Heo 	 */
174542b64281STejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
174642b64281STejun Heo 		struct pcpu_group_info *gi = &ai->groups[group];
174742b64281STejun Heo 		void *ptr = areas[group];
1748c8826dd5STejun Heo 
1749c8826dd5STejun Heo 		for (i = 0; i < gi->nr_units; i++, ptr += ai->unit_size) {
1750c8826dd5STejun Heo 			if (gi->cpu_map[i] == NR_CPUS) {
1751c8826dd5STejun Heo 				/* unused unit, free whole */
1752c8826dd5STejun Heo 				free_fn(ptr, ai->unit_size);
1753c8826dd5STejun Heo 				continue;
1754c8826dd5STejun Heo 			}
1755c8826dd5STejun Heo 			/* copy and return the unused part */
1756fd1e8a1fSTejun Heo 			memcpy(ptr, __per_cpu_load, ai->static_size);
1757c8826dd5STejun Heo 			free_fn(ptr + size_sum, ai->unit_size - size_sum);
1758c8826dd5STejun Heo 		}
175966c3a757STejun Heo 	}
176066c3a757STejun Heo 
1761c8826dd5STejun Heo 	/* base address is now known, determine group base offsets */
17626ea529a2STejun Heo 	max_distance = 0;
17636ea529a2STejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
1764c8826dd5STejun Heo 		ai->groups[group].base_offset = areas[group] - base;
17651a0c3298STejun Heo 		max_distance = max_t(size_t, max_distance,
17661a0c3298STejun Heo 				     ai->groups[group].base_offset);
17676ea529a2STejun Heo 	}
17686ea529a2STejun Heo 	max_distance += ai->unit_size;
17696ea529a2STejun Heo 
17706ea529a2STejun Heo 	/* warn if maximum distance is further than 75% of vmalloc space */
17718a092171SLaura Abbott 	if (max_distance > VMALLOC_TOTAL * 3 / 4) {
17721a0c3298STejun Heo 		pr_warning("PERCPU: max_distance=0x%zx too large for vmalloc "
1773787e5b06SMike Frysinger 			   "space 0x%lx\n", max_distance,
17748a092171SLaura Abbott 			   VMALLOC_TOTAL);
17756ea529a2STejun Heo #ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
17766ea529a2STejun Heo 		/* and fail if we have fallback */
17776ea529a2STejun Heo 		rc = -EINVAL;
17786ea529a2STejun Heo 		goto out_free;
17796ea529a2STejun Heo #endif
17806ea529a2STejun Heo 	}
1781c8826dd5STejun Heo 
1782004018e2STejun Heo 	pr_info("PERCPU: Embedded %zu pages/cpu @%p s%zu r%zu d%zu u%zu\n",
1783fd1e8a1fSTejun Heo 		PFN_DOWN(size_sum), base, ai->static_size, ai->reserved_size,
1784fd1e8a1fSTejun Heo 		ai->dyn_size, ai->unit_size);
178566c3a757STejun Heo 
1786fb435d52STejun Heo 	rc = pcpu_setup_first_chunk(ai, base);
1787c8826dd5STejun Heo 	goto out_free;
1788c8826dd5STejun Heo 
1789c8826dd5STejun Heo out_free_areas:
1790c8826dd5STejun Heo 	for (group = 0; group < ai->nr_groups; group++)
1791f851c8d8SMichael Holzheu 		if (areas[group])
1792c8826dd5STejun Heo 			free_fn(areas[group],
1793c8826dd5STejun Heo 				ai->groups[group].nr_units * ai->unit_size);
1794c8826dd5STejun Heo out_free:
1795fd1e8a1fSTejun Heo 	pcpu_free_alloc_info(ai);
1796c8826dd5STejun Heo 	if (areas)
1797999c17e3SSantosh Shilimkar 		memblock_free_early(__pa(areas), areas_size);
1798fb435d52STejun Heo 	return rc;
1799d4b95f80STejun Heo }
18003c9a024fSTejun Heo #endif /* BUILD_EMBED_FIRST_CHUNK */
1801d4b95f80STejun Heo 
18023c9a024fSTejun Heo #ifdef BUILD_PAGE_FIRST_CHUNK
1803d4b95f80STejun Heo /**
180400ae4064STejun Heo  * pcpu_page_first_chunk - map the first chunk using PAGE_SIZE pages
1805d4b95f80STejun Heo  * @reserved_size: the size of reserved percpu area in bytes
1806d4b95f80STejun Heo  * @alloc_fn: function to allocate percpu page, always called with PAGE_SIZE
180725985edcSLucas De Marchi  * @free_fn: function to free percpu page, always called with PAGE_SIZE
1808d4b95f80STejun Heo  * @populate_pte_fn: function to populate pte
1809d4b95f80STejun Heo  *
181000ae4064STejun Heo  * This is a helper to ease setting up page-remapped first percpu
181100ae4064STejun Heo  * chunk and can be called where pcpu_setup_first_chunk() is expected.
1812d4b95f80STejun Heo  *
1813d4b95f80STejun Heo  * This is the basic allocator.  Static percpu area is allocated
1814d4b95f80STejun Heo  * page-by-page into vmalloc area.
1815d4b95f80STejun Heo  *
1816d4b95f80STejun Heo  * RETURNS:
1817fb435d52STejun Heo  * 0 on success, -errno on failure.
1818d4b95f80STejun Heo  */
1819fb435d52STejun Heo int __init pcpu_page_first_chunk(size_t reserved_size,
1820d4b95f80STejun Heo 				 pcpu_fc_alloc_fn_t alloc_fn,
1821d4b95f80STejun Heo 				 pcpu_fc_free_fn_t free_fn,
1822d4b95f80STejun Heo 				 pcpu_fc_populate_pte_fn_t populate_pte_fn)
1823d4b95f80STejun Heo {
18248f05a6a6STejun Heo 	static struct vm_struct vm;
1825fd1e8a1fSTejun Heo 	struct pcpu_alloc_info *ai;
182600ae4064STejun Heo 	char psize_str[16];
1827ce3141a2STejun Heo 	int unit_pages;
1828d4b95f80STejun Heo 	size_t pages_size;
1829ce3141a2STejun Heo 	struct page **pages;
1830fb435d52STejun Heo 	int unit, i, j, rc;
1831d4b95f80STejun Heo 
183200ae4064STejun Heo 	snprintf(psize_str, sizeof(psize_str), "%luK", PAGE_SIZE >> 10);
183300ae4064STejun Heo 
18344ba6ce25STejun Heo 	ai = pcpu_build_alloc_info(reserved_size, 0, PAGE_SIZE, NULL);
1835fd1e8a1fSTejun Heo 	if (IS_ERR(ai))
1836fd1e8a1fSTejun Heo 		return PTR_ERR(ai);
1837fd1e8a1fSTejun Heo 	BUG_ON(ai->nr_groups != 1);
1838fd1e8a1fSTejun Heo 	BUG_ON(ai->groups[0].nr_units != num_possible_cpus());
1839fd1e8a1fSTejun Heo 
1840fd1e8a1fSTejun Heo 	unit_pages = ai->unit_size >> PAGE_SHIFT;
1841d4b95f80STejun Heo 
1842d4b95f80STejun Heo 	/* unaligned allocations can't be freed, round up to page size */
1843fd1e8a1fSTejun Heo 	pages_size = PFN_ALIGN(unit_pages * num_possible_cpus() *
1844fd1e8a1fSTejun Heo 			       sizeof(pages[0]));
1845999c17e3SSantosh Shilimkar 	pages = memblock_virt_alloc(pages_size, 0);
1846d4b95f80STejun Heo 
18478f05a6a6STejun Heo 	/* allocate pages */
1848d4b95f80STejun Heo 	j = 0;
1849fd1e8a1fSTejun Heo 	for (unit = 0; unit < num_possible_cpus(); unit++)
1850ce3141a2STejun Heo 		for (i = 0; i < unit_pages; i++) {
1851fd1e8a1fSTejun Heo 			unsigned int cpu = ai->groups[0].cpu_map[unit];
1852d4b95f80STejun Heo 			void *ptr;
1853d4b95f80STejun Heo 
18543cbc8565STejun Heo 			ptr = alloc_fn(cpu, PAGE_SIZE, PAGE_SIZE);
1855d4b95f80STejun Heo 			if (!ptr) {
185600ae4064STejun Heo 				pr_warning("PERCPU: failed to allocate %s page "
185700ae4064STejun Heo 					   "for cpu%u\n", psize_str, cpu);
1858d4b95f80STejun Heo 				goto enomem;
1859d4b95f80STejun Heo 			}
1860f528f0b8SCatalin Marinas 			/* kmemleak tracks the percpu allocations separately */
1861f528f0b8SCatalin Marinas 			kmemleak_free(ptr);
1862ce3141a2STejun Heo 			pages[j++] = virt_to_page(ptr);
1863d4b95f80STejun Heo 		}
1864d4b95f80STejun Heo 
18658f05a6a6STejun Heo 	/* allocate vm area, map the pages and copy static data */
18668f05a6a6STejun Heo 	vm.flags = VM_ALLOC;
1867fd1e8a1fSTejun Heo 	vm.size = num_possible_cpus() * ai->unit_size;
18688f05a6a6STejun Heo 	vm_area_register_early(&vm, PAGE_SIZE);
18698f05a6a6STejun Heo 
1870fd1e8a1fSTejun Heo 	for (unit = 0; unit < num_possible_cpus(); unit++) {
18711d9d3257STejun Heo 		unsigned long unit_addr =
1872fd1e8a1fSTejun Heo 			(unsigned long)vm.addr + unit * ai->unit_size;
18738f05a6a6STejun Heo 
1874ce3141a2STejun Heo 		for (i = 0; i < unit_pages; i++)
18758f05a6a6STejun Heo 			populate_pte_fn(unit_addr + (i << PAGE_SHIFT));
18768f05a6a6STejun Heo 
18778f05a6a6STejun Heo 		/* pte already populated, the following shouldn't fail */
1878fb435d52STejun Heo 		rc = __pcpu_map_pages(unit_addr, &pages[unit * unit_pages],
1879ce3141a2STejun Heo 				      unit_pages);
1880fb435d52STejun Heo 		if (rc < 0)
1881fb435d52STejun Heo 			panic("failed to map percpu area, err=%d\n", rc);
18828f05a6a6STejun Heo 
18838f05a6a6STejun Heo 		/*
18848f05a6a6STejun Heo 		 * FIXME: Archs with virtual cache should flush local
18858f05a6a6STejun Heo 		 * cache for the linear mapping here - something
18868f05a6a6STejun Heo 		 * equivalent to flush_cache_vmap() on the local cpu.
18878f05a6a6STejun Heo 		 * flush_cache_vmap() can't be used as most supporting
18888f05a6a6STejun Heo 		 * data structures are not set up yet.
18898f05a6a6STejun Heo 		 */
18908f05a6a6STejun Heo 
18918f05a6a6STejun Heo 		/* copy static data */
1892fd1e8a1fSTejun Heo 		memcpy((void *)unit_addr, __per_cpu_load, ai->static_size);
189366c3a757STejun Heo 	}
189466c3a757STejun Heo 
189566c3a757STejun Heo 	/* we're ready, commit */
18961d9d3257STejun Heo 	pr_info("PERCPU: %d %s pages/cpu @%p s%zu r%zu d%zu\n",
1897fd1e8a1fSTejun Heo 		unit_pages, psize_str, vm.addr, ai->static_size,
1898fd1e8a1fSTejun Heo 		ai->reserved_size, ai->dyn_size);
189966c3a757STejun Heo 
1900fb435d52STejun Heo 	rc = pcpu_setup_first_chunk(ai, vm.addr);
1901d4b95f80STejun Heo 	goto out_free_ar;
1902d4b95f80STejun Heo 
1903d4b95f80STejun Heo enomem:
1904d4b95f80STejun Heo 	while (--j >= 0)
1905ce3141a2STejun Heo 		free_fn(page_address(pages[j]), PAGE_SIZE);
1906fb435d52STejun Heo 	rc = -ENOMEM;
1907d4b95f80STejun Heo out_free_ar:
1908999c17e3SSantosh Shilimkar 	memblock_free_early(__pa(pages), pages_size);
1909fd1e8a1fSTejun Heo 	pcpu_free_alloc_info(ai);
1910fb435d52STejun Heo 	return rc;
191166c3a757STejun Heo }
19123c9a024fSTejun Heo #endif /* BUILD_PAGE_FIRST_CHUNK */
1913d4b95f80STejun Heo 
1914bbddff05STejun Heo #ifndef	CONFIG_HAVE_SETUP_PER_CPU_AREA
19158c4bfc6eSTejun Heo /*
1916bbddff05STejun Heo  * Generic SMP percpu area setup.
1917e74e3962STejun Heo  *
1918e74e3962STejun Heo  * The embedding helper is used because its behavior closely resembles
1919e74e3962STejun Heo  * the original non-dynamic generic percpu area setup.  This is
1920e74e3962STejun Heo  * important because many archs have addressing restrictions and might
1921e74e3962STejun Heo  * fail if the percpu area is located far away from the previous
1922e74e3962STejun Heo  * location.  As an added bonus, in non-NUMA cases, embedding is
1923e74e3962STejun Heo  * generally a good idea TLB-wise because percpu area can piggy back
1924e74e3962STejun Heo  * on the physical linear memory mapping which uses large page
1925e74e3962STejun Heo  * mappings on applicable archs.
1926e74e3962STejun Heo  */
1927e74e3962STejun Heo unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
1928e74e3962STejun Heo EXPORT_SYMBOL(__per_cpu_offset);
1929e74e3962STejun Heo 
1930c8826dd5STejun Heo static void * __init pcpu_dfl_fc_alloc(unsigned int cpu, size_t size,
1931c8826dd5STejun Heo 				       size_t align)
1932c8826dd5STejun Heo {
1933999c17e3SSantosh Shilimkar 	return  memblock_virt_alloc_from_nopanic(
1934999c17e3SSantosh Shilimkar 			size, align, __pa(MAX_DMA_ADDRESS));
1935c8826dd5STejun Heo }
1936c8826dd5STejun Heo 
1937c8826dd5STejun Heo static void __init pcpu_dfl_fc_free(void *ptr, size_t size)
1938c8826dd5STejun Heo {
1939999c17e3SSantosh Shilimkar 	memblock_free_early(__pa(ptr), size);
1940c8826dd5STejun Heo }
1941c8826dd5STejun Heo 
1942e74e3962STejun Heo void __init setup_per_cpu_areas(void)
1943e74e3962STejun Heo {
1944e74e3962STejun Heo 	unsigned long delta;
1945e74e3962STejun Heo 	unsigned int cpu;
1946fb435d52STejun Heo 	int rc;
1947e74e3962STejun Heo 
1948e74e3962STejun Heo 	/*
1949e74e3962STejun Heo 	 * Always reserve area for module percpu variables.  That's
1950e74e3962STejun Heo 	 * what the legacy allocator did.
1951e74e3962STejun Heo 	 */
1952fb435d52STejun Heo 	rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE,
1953c8826dd5STejun Heo 				    PERCPU_DYNAMIC_RESERVE, PAGE_SIZE, NULL,
1954c8826dd5STejun Heo 				    pcpu_dfl_fc_alloc, pcpu_dfl_fc_free);
1955fb435d52STejun Heo 	if (rc < 0)
1956bbddff05STejun Heo 		panic("Failed to initialize percpu areas.");
1957e74e3962STejun Heo 
1958e74e3962STejun Heo 	delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
1959e74e3962STejun Heo 	for_each_possible_cpu(cpu)
1960fb435d52STejun Heo 		__per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
1961e74e3962STejun Heo }
1962e74e3962STejun Heo #endif	/* CONFIG_HAVE_SETUP_PER_CPU_AREA */
1963099a19d9STejun Heo 
1964bbddff05STejun Heo #else	/* CONFIG_SMP */
1965bbddff05STejun Heo 
1966bbddff05STejun Heo /*
1967bbddff05STejun Heo  * UP percpu area setup.
1968bbddff05STejun Heo  *
1969bbddff05STejun Heo  * UP always uses km-based percpu allocator with identity mapping.
1970bbddff05STejun Heo  * Static percpu variables are indistinguishable from the usual static
1971bbddff05STejun Heo  * variables and don't require any special preparation.
1972bbddff05STejun Heo  */
1973bbddff05STejun Heo void __init setup_per_cpu_areas(void)
1974bbddff05STejun Heo {
1975bbddff05STejun Heo 	const size_t unit_size =
1976bbddff05STejun Heo 		roundup_pow_of_two(max_t(size_t, PCPU_MIN_UNIT_SIZE,
1977bbddff05STejun Heo 					 PERCPU_DYNAMIC_RESERVE));
1978bbddff05STejun Heo 	struct pcpu_alloc_info *ai;
1979bbddff05STejun Heo 	void *fc;
1980bbddff05STejun Heo 
1981bbddff05STejun Heo 	ai = pcpu_alloc_alloc_info(1, 1);
1982999c17e3SSantosh Shilimkar 	fc = memblock_virt_alloc_from_nopanic(unit_size,
1983999c17e3SSantosh Shilimkar 					      PAGE_SIZE,
1984999c17e3SSantosh Shilimkar 					      __pa(MAX_DMA_ADDRESS));
1985bbddff05STejun Heo 	if (!ai || !fc)
1986bbddff05STejun Heo 		panic("Failed to allocate memory for percpu areas.");
1987100d13c3SCatalin Marinas 	/* kmemleak tracks the percpu allocations separately */
1988100d13c3SCatalin Marinas 	kmemleak_free(fc);
1989bbddff05STejun Heo 
1990bbddff05STejun Heo 	ai->dyn_size = unit_size;
1991bbddff05STejun Heo 	ai->unit_size = unit_size;
1992bbddff05STejun Heo 	ai->atom_size = unit_size;
1993bbddff05STejun Heo 	ai->alloc_size = unit_size;
1994bbddff05STejun Heo 	ai->groups[0].nr_units = 1;
1995bbddff05STejun Heo 	ai->groups[0].cpu_map[0] = 0;
1996bbddff05STejun Heo 
1997bbddff05STejun Heo 	if (pcpu_setup_first_chunk(ai, fc) < 0)
1998bbddff05STejun Heo 		panic("Failed to initialize percpu areas.");
19993189eddbSHonggang Li 
20003189eddbSHonggang Li 	pcpu_free_alloc_info(ai);
2001bbddff05STejun Heo }
2002bbddff05STejun Heo 
2003bbddff05STejun Heo #endif	/* CONFIG_SMP */
2004bbddff05STejun Heo 
2005099a19d9STejun Heo /*
2006099a19d9STejun Heo  * First and reserved chunks are initialized with temporary allocation
2007099a19d9STejun Heo  * map in initdata so that they can be used before slab is online.
2008099a19d9STejun Heo  * This function is called after slab is brought up and replaces those
2009099a19d9STejun Heo  * with properly allocated maps.
2010099a19d9STejun Heo  */
2011099a19d9STejun Heo void __init percpu_init_late(void)
2012099a19d9STejun Heo {
2013099a19d9STejun Heo 	struct pcpu_chunk *target_chunks[] =
2014099a19d9STejun Heo 		{ pcpu_first_chunk, pcpu_reserved_chunk, NULL };
2015099a19d9STejun Heo 	struct pcpu_chunk *chunk;
2016099a19d9STejun Heo 	unsigned long flags;
2017099a19d9STejun Heo 	int i;
2018099a19d9STejun Heo 
2019099a19d9STejun Heo 	for (i = 0; (chunk = target_chunks[i]); i++) {
2020099a19d9STejun Heo 		int *map;
2021099a19d9STejun Heo 		const size_t size = PERCPU_DYNAMIC_EARLY_SLOTS * sizeof(map[0]);
2022099a19d9STejun Heo 
2023099a19d9STejun Heo 		BUILD_BUG_ON(size > PAGE_SIZE);
2024099a19d9STejun Heo 
202590459ce0SBob Liu 		map = pcpu_mem_zalloc(size);
2026099a19d9STejun Heo 		BUG_ON(!map);
2027099a19d9STejun Heo 
2028099a19d9STejun Heo 		spin_lock_irqsave(&pcpu_lock, flags);
2029099a19d9STejun Heo 		memcpy(map, chunk->map, size);
2030099a19d9STejun Heo 		chunk->map = map;
2031099a19d9STejun Heo 		spin_unlock_irqrestore(&pcpu_lock, flags);
2032099a19d9STejun Heo 	}
2033099a19d9STejun Heo }
2034