]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/cma.h
Merge commit 'f8b5036361412a27c07a4ac9c3a4b80678cbd1e1' into stm32-dt-for-v4.11
[mirror_ubuntu-artful-kernel.git] / include / linux / cma.h
CommitLineData
a254129e
JK
1#ifndef __CMA_H__
2#define __CMA_H__
3
d5e6eff2
TR
4#include <linux/init.h>
5#include <linux/types.h>
6
a254129e
JK
7/*
8 * There is always at least global CMA area and a few optional
9 * areas configured in kernel .config.
10 */
11#ifdef CONFIG_CMA_AREAS
12#define MAX_CMA_AREAS (1 + CONFIG_CMA_AREAS)
13
14#else
15#define MAX_CMA_AREAS (0)
16
17#endif
18
19struct cma;
20
e48322ab 21extern unsigned long totalcma_pages;
ac173824
SL
22extern phys_addr_t cma_get_base(const struct cma *cma);
23extern unsigned long cma_get_size(const struct cma *cma);
a254129e 24
dda02fd6
WY
25extern int __init cma_declare_contiguous(phys_addr_t base,
26 phys_addr_t size, phys_addr_t limit,
a254129e 27 phys_addr_t alignment, unsigned int order_per_bit,
c1f733aa 28 bool fixed, struct cma **res_cma);
ac173824
SL
29extern int cma_init_reserved_mem(phys_addr_t base, phys_addr_t size,
30 unsigned int order_per_bit,
de9e14ee 31 struct cma **res_cma);
67a2e213 32extern struct page *cma_alloc(struct cma *cma, size_t count, unsigned int align);
ac173824 33extern bool cma_release(struct cma *cma, const struct page *pages, unsigned int count);
a254129e 34#endif