Merge tag 'dt-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[deliverable/linux.git] / include / linux / memblock.h
CommitLineData
95f72d1e
YL
1#ifndef _LINUX_MEMBLOCK_H
2#define _LINUX_MEMBLOCK_H
3#ifdef __KERNEL__
4
f0b37fad 5#ifdef CONFIG_HAVE_MEMBLOCK
95f72d1e
YL
6/*
7 * Logical memory blocks.
8 *
9 * Copyright (C) 2001 Peter Bergner, IBM Corp.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
17#include <linux/init.h>
18#include <linux/mm.h>
19
37d8d4bf 20#define INIT_MEMBLOCK_REGIONS 128
95f72d1e 21
66b16edf
TC
22/* Definition of memblock flags. */
23#define MEMBLOCK_HOTPLUG 0x1 /* hotpluggable region */
24
e3239ff9 25struct memblock_region {
2898cc4c
BH
26 phys_addr_t base;
27 phys_addr_t size;
66a20757 28 unsigned long flags;
7c0caeb8
TH
29#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
30 int nid;
31#endif
95f72d1e
YL
32};
33
e3239ff9 34struct memblock_type {
bf23c51f
BH
35 unsigned long cnt; /* number of regions */
36 unsigned long max; /* size of the allocated array */
1440c4e2 37 phys_addr_t total_size; /* size of all regions */
bf23c51f 38 struct memblock_region *regions;
95f72d1e
YL
39};
40
41struct memblock {
79442ed1 42 bool bottom_up; /* is bottom up direction? */
2898cc4c 43 phys_addr_t current_limit;
e3239ff9
BH
44 struct memblock_type memory;
45 struct memblock_type reserved;
95f72d1e
YL
46};
47
48extern struct memblock memblock;
5e63cf43 49extern int memblock_debug;
55ac590c
TC
50#ifdef CONFIG_MOVABLE_NODE
51/* If movable_node boot option specified */
52extern bool movable_node_enabled;
53#endif /* CONFIG_MOVABLE_NODE */
5e63cf43
YL
54
55#define memblock_dbg(fmt, ...) \
56 if (memblock_debug) printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
95f72d1e 57
87029ee9
GS
58phys_addr_t memblock_find_in_range_node(phys_addr_t size, phys_addr_t align,
59 phys_addr_t start, phys_addr_t end,
60 int nid);
fc769a8e
TH
61phys_addr_t memblock_find_in_range(phys_addr_t start, phys_addr_t end,
62 phys_addr_t size, phys_addr_t align);
29f67386 63phys_addr_t get_allocated_memblock_reserved_regions_info(phys_addr_t *addr);
1aadc056 64void memblock_allow_resize(void);
7fb0bc3f 65int memblock_add_node(phys_addr_t base, phys_addr_t size, int nid);
581adcbe
TH
66int memblock_add(phys_addr_t base, phys_addr_t size);
67int memblock_remove(phys_addr_t base, phys_addr_t size);
68int memblock_free(phys_addr_t base, phys_addr_t size);
69int memblock_reserve(phys_addr_t base, phys_addr_t size);
6ede1fd3 70void memblock_trim_memory(phys_addr_t align);
66b16edf
TC
71int memblock_mark_hotplug(phys_addr_t base, phys_addr_t size);
72int memblock_clear_hotplug(phys_addr_t base, phys_addr_t size);
55ac590c
TC
73#ifdef CONFIG_MOVABLE_NODE
74static inline bool memblock_is_hotpluggable(struct memblock_region *m)
75{
76 return m->flags & MEMBLOCK_HOTPLUG;
77}
78
79static inline bool movable_node_is_enabled(void)
80{
81 return movable_node_enabled;
82}
83#else
84static inline bool memblock_is_hotpluggable(struct memblock_region *m)
85{
86 return false;
87}
88static inline bool movable_node_is_enabled(void)
89{
90 return false;
91}
92#endif
e63075a3 93
0ee332c1 94#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
e76b63f8
YL
95int memblock_search_pfn_nid(unsigned long pfn, unsigned long *start_pfn,
96 unsigned long *end_pfn);
0ee332c1
TH
97void __next_mem_pfn_range(int *idx, int nid, unsigned long *out_start_pfn,
98 unsigned long *out_end_pfn, int *out_nid);
99
100/**
101 * for_each_mem_pfn_range - early memory pfn range iterator
102 * @i: an integer used as loop variable
103 * @nid: node selector, %MAX_NUMNODES for all nodes
104 * @p_start: ptr to ulong for start pfn of the range, can be %NULL
105 * @p_end: ptr to ulong for end pfn of the range, can be %NULL
106 * @p_nid: ptr to int for nid of the range, can be %NULL
107 *
f2d52fe5 108 * Walks over configured memory ranges.
0ee332c1
TH
109 */
110#define for_each_mem_pfn_range(i, nid, p_start, p_end, p_nid) \
111 for (i = -1, __next_mem_pfn_range(&i, nid, p_start, p_end, p_nid); \
112 i >= 0; __next_mem_pfn_range(&i, nid, p_start, p_end, p_nid))
113#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
114
581adcbe
TH
115void __next_free_mem_range(u64 *idx, int nid, phys_addr_t *out_start,
116 phys_addr_t *out_end, int *out_nid);
35fd0808
TH
117
118/**
119 * for_each_free_mem_range - iterate through free memblock areas
120 * @i: u64 used as loop variable
b1154233 121 * @nid: node selector, %NUMA_NO_NODE for all nodes
35fd0808
TH
122 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
123 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
124 * @p_nid: ptr to int for nid of the range, can be %NULL
125 *
126 * Walks over free (memory && !reserved) areas of memblock. Available as
127 * soon as memblock is initialized.
128 */
129#define for_each_free_mem_range(i, nid, p_start, p_end, p_nid) \
130 for (i = 0, \
131 __next_free_mem_range(&i, nid, p_start, p_end, p_nid); \
132 i != (u64)ULLONG_MAX; \
133 __next_free_mem_range(&i, nid, p_start, p_end, p_nid))
134
7bd0b0f0
TH
135void __next_free_mem_range_rev(u64 *idx, int nid, phys_addr_t *out_start,
136 phys_addr_t *out_end, int *out_nid);
137
138/**
139 * for_each_free_mem_range_reverse - rev-iterate through free memblock areas
140 * @i: u64 used as loop variable
b1154233 141 * @nid: node selector, %NUMA_NO_NODE for all nodes
7bd0b0f0
TH
142 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
143 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
144 * @p_nid: ptr to int for nid of the range, can be %NULL
145 *
146 * Walks over free (memory && !reserved) areas of memblock in reverse
147 * order. Available as soon as memblock is initialized.
148 */
149#define for_each_free_mem_range_reverse(i, nid, p_start, p_end, p_nid) \
150 for (i = (u64)ULLONG_MAX, \
151 __next_free_mem_range_rev(&i, nid, p_start, p_end, p_nid); \
152 i != (u64)ULLONG_MAX; \
153 __next_free_mem_range_rev(&i, nid, p_start, p_end, p_nid))
154
66b16edf
TC
155static inline void memblock_set_region_flags(struct memblock_region *r,
156 unsigned long flags)
157{
158 r->flags |= flags;
159}
160
161static inline void memblock_clear_region_flags(struct memblock_region *r,
162 unsigned long flags)
163{
164 r->flags &= ~flags;
165}
166
7c0caeb8 167#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
e7e8de59
TC
168int memblock_set_node(phys_addr_t base, phys_addr_t size,
169 struct memblock_type *type, int nid);
7c0caeb8
TH
170
171static inline void memblock_set_region_node(struct memblock_region *r, int nid)
172{
173 r->nid = nid;
174}
175
176static inline int memblock_get_region_node(const struct memblock_region *r)
177{
178 return r->nid;
179}
180#else
181static inline void memblock_set_region_node(struct memblock_region *r, int nid)
182{
183}
184
185static inline int memblock_get_region_node(const struct memblock_region *r)
186{
187 return 0;
188}
189#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
190
581adcbe
TH
191phys_addr_t memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid);
192phys_addr_t memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid);
9d1e2492 193
581adcbe 194phys_addr_t memblock_alloc(phys_addr_t size, phys_addr_t align);
e63075a3 195
79442ed1
TC
196#ifdef CONFIG_MOVABLE_NODE
197/*
198 * Set the allocation direction to bottom-up or top-down.
199 */
200static inline void memblock_set_bottom_up(bool enable)
201{
202 memblock.bottom_up = enable;
203}
204
205/*
206 * Check if the allocation direction is bottom-up or not.
207 * if this is true, that said, memblock will allocate memory
208 * in bottom-up direction.
209 */
210static inline bool memblock_bottom_up(void)
211{
212 return memblock.bottom_up;
213}
214#else
215static inline void memblock_set_bottom_up(bool enable) {}
216static inline bool memblock_bottom_up(void) { return false; }
217#endif
218
e63075a3 219/* Flags for memblock_alloc_base() amd __memblock_alloc_base() */
2898cc4c 220#define MEMBLOCK_ALLOC_ANYWHERE (~(phys_addr_t)0)
e63075a3
BH
221#define MEMBLOCK_ALLOC_ACCESSIBLE 0
222
581adcbe
TH
223phys_addr_t memblock_alloc_base(phys_addr_t size, phys_addr_t align,
224 phys_addr_t max_addr);
225phys_addr_t __memblock_alloc_base(phys_addr_t size, phys_addr_t align,
226 phys_addr_t max_addr);
227phys_addr_t memblock_phys_mem_size(void);
595ad9af 228phys_addr_t memblock_mem_size(unsigned long limit_pfn);
581adcbe
TH
229phys_addr_t memblock_start_of_DRAM(void);
230phys_addr_t memblock_end_of_DRAM(void);
231void memblock_enforce_memory_limit(phys_addr_t memory_limit);
232int memblock_is_memory(phys_addr_t addr);
233int memblock_is_region_memory(phys_addr_t base, phys_addr_t size);
234int memblock_is_reserved(phys_addr_t addr);
235int memblock_is_region_reserved(phys_addr_t base, phys_addr_t size);
236
4ff7b82f
TH
237extern void __memblock_dump_all(void);
238
239static inline void memblock_dump_all(void)
240{
241 if (memblock_debug)
242 __memblock_dump_all();
243}
95f72d1e 244
e63075a3
BH
245/**
246 * memblock_set_current_limit - Set the current allocation limit to allow
247 * limiting allocations to what is currently
248 * accessible during boot
249 * @limit: New limit value (physical address)
250 */
581adcbe 251void memblock_set_current_limit(phys_addr_t limit);
e63075a3 252
35a1f0bd 253
5b385f25
BH
254/*
255 * pfn conversion functions
256 *
257 * While the memory MEMBLOCKs should always be page aligned, the reserved
258 * MEMBLOCKs may not be. This accessor attempt to provide a very clear
259 * idea of what they return for such non aligned MEMBLOCKs.
260 */
261
262/**
c7fc2de0 263 * memblock_region_memory_base_pfn - Return the lowest pfn intersecting with the memory region
5b385f25
BH
264 * @reg: memblock_region structure
265 */
c7fc2de0 266static inline unsigned long memblock_region_memory_base_pfn(const struct memblock_region *reg)
5b385f25 267{
c7fc2de0 268 return PFN_UP(reg->base);
5b385f25
BH
269}
270
271/**
c7fc2de0 272 * memblock_region_memory_end_pfn - Return the end_pfn this region
5b385f25
BH
273 * @reg: memblock_region structure
274 */
c7fc2de0 275static inline unsigned long memblock_region_memory_end_pfn(const struct memblock_region *reg)
5b385f25 276{
c7fc2de0 277 return PFN_DOWN(reg->base + reg->size);
5b385f25
BH
278}
279
280/**
c7fc2de0 281 * memblock_region_reserved_base_pfn - Return the lowest pfn intersecting with the reserved region
5b385f25
BH
282 * @reg: memblock_region structure
283 */
c7fc2de0 284static inline unsigned long memblock_region_reserved_base_pfn(const struct memblock_region *reg)
5b385f25 285{
c7fc2de0 286 return PFN_DOWN(reg->base);
5b385f25
BH
287}
288
289/**
c7fc2de0 290 * memblock_region_reserved_end_pfn - Return the end_pfn this region
5b385f25
BH
291 * @reg: memblock_region structure
292 */
c7fc2de0 293static inline unsigned long memblock_region_reserved_end_pfn(const struct memblock_region *reg)
5b385f25 294{
c7fc2de0 295 return PFN_UP(reg->base + reg->size);
5b385f25
BH
296}
297
298#define for_each_memblock(memblock_type, region) \
299 for (region = memblock.memblock_type.regions; \
300 region < (memblock.memblock_type.regions + memblock.memblock_type.cnt); \
301 region++)
302
303
c378ddd5 304#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
67e24bcb
TH
305#define __init_memblock __meminit
306#define __initdata_memblock __meminitdata
10d06439
YL
307#else
308#define __init_memblock
309#define __initdata_memblock
310#endif
311
95dde501
YL
312#else
313static inline phys_addr_t memblock_alloc(phys_addr_t size, phys_addr_t align)
314{
1f5026a7 315 return 0;
95dde501
YL
316}
317
f0b37fad
YL
318#endif /* CONFIG_HAVE_MEMBLOCK */
319
95f72d1e
YL
320#endif /* __KERNEL__ */
321
322#endif /* _LINUX_MEMBLOCK_H */
This page took 0.536066 seconds and 5 git commands to generate.