Merge tag 'nfsd-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux
[linux-2.6-block.git] / include / linux / cma.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
a254129e
JK
2#ifndef __CMA_H__
3#define __CMA_H__
4
d5e6eff2
TR
5#include <linux/init.h>
6#include <linux/types.h>
8676af1f 7#include <linux/numa.h>
d5e6eff2 8
a254129e 9#ifdef CONFIG_CMA_AREAS
73307523 10#define MAX_CMA_AREAS CONFIG_CMA_AREAS
a254129e
JK
11#endif
12
2281f797
BS
13#define CMA_MAX_NAME 64
14
e16faf26 15/*
11ac3e87 16 * the buddy -- especially pageblock merging and alloc_contig_range()
e16faf26
DH
17 * -- can deal with only some pageblocks of a higher-order page being
18 * MIGRATE_CMA, we can use pageblock_nr_pages.
19 */
11ac3e87 20#define CMA_MIN_ALIGNMENT_PAGES pageblock_nr_pages
e16faf26
DH
21#define CMA_MIN_ALIGNMENT_BYTES (PAGE_SIZE * CMA_MIN_ALIGNMENT_PAGES)
22
a254129e
JK
23struct cma;
24
e48322ab 25extern unsigned long totalcma_pages;
ac173824
SL
26extern phys_addr_t cma_get_base(const struct cma *cma);
27extern unsigned long cma_get_size(const struct cma *cma);
f318dd08 28extern const char *cma_get_name(const struct cma *cma);
a254129e 29
8676af1f 30extern int __init cma_declare_contiguous_nid(phys_addr_t base,
dda02fd6 31 phys_addr_t size, phys_addr_t limit,
a254129e 32 phys_addr_t alignment, unsigned int order_per_bit,
8676af1f
AB
33 bool fixed, const char *name, struct cma **res_cma,
34 int nid);
35static inline int __init cma_declare_contiguous(phys_addr_t base,
36 phys_addr_t size, phys_addr_t limit,
37 phys_addr_t alignment, unsigned int order_per_bit,
38 bool fixed, const char *name, struct cma **res_cma)
39{
40 return cma_declare_contiguous_nid(base, size, limit, alignment,
41 order_per_bit, fixed, name, res_cma, NUMA_NO_NODE);
42}
ac173824
SL
43extern int cma_init_reserved_mem(phys_addr_t base, phys_addr_t size,
44 unsigned int order_per_bit,
f318dd08 45 const char *name,
de9e14ee 46 struct cma **res_cma);
78fa5150 47extern struct page *cma_alloc(struct cma *cma, unsigned long count, unsigned int align,
65182029 48 bool no_warn);
9871e2de 49extern bool cma_pages_valid(struct cma *cma, const struct page *pages, unsigned long count);
78fa5150 50extern bool cma_release(struct cma *cma, const struct page *pages, unsigned long count);
e4231bcd
LA
51
52extern int cma_for_each_area(int (*it)(struct cma *cma, void *data), void *data);
27d121d0
HB
53
54extern void cma_reserve_pages_on_error(struct cma *cma);
463586e9
YZ
55
56#ifdef CONFIG_CMA
57struct folio *cma_alloc_folio(struct cma *cma, int order, gfp_t gfp);
58bool cma_free_folio(struct cma *cma, const struct folio *folio);
59#else
60static inline struct folio *cma_alloc_folio(struct cma *cma, int order, gfp_t gfp)
61{
62 return NULL;
63}
64
65static inline bool cma_free_folio(struct cma *cma, const struct folio *folio)
66{
67 return false;
68}
69#endif
70
a254129e 71#endif