Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Procedures for maintaining information about logical memory blocks. |
| 3 | * |
| 4 | * Peter Bergner, IBM Corp. June 2001. |
| 5 | * Copyright (C) 2001 Peter Bergner. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 14 | #include <linux/slab.h> |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 15 | #include <linux/init.h> |
| 16 | #include <linux/bitops.h> |
Benjamin Herrenschmidt | 449e8df | 2010-07-06 15:39:07 -0700 | [diff] [blame] | 17 | #include <linux/poison.h> |
Benjamin Herrenschmidt | c196f76 | 2010-07-06 15:39:16 -0700 | [diff] [blame] | 18 | #include <linux/pfn.h> |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 19 | #include <linux/debugfs.h> |
Randy Dunlap | 514c603 | 2018-04-05 16:25:34 -0700 | [diff] [blame] | 20 | #include <linux/kmemleak.h> |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 21 | #include <linux/seq_file.h> |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 22 | #include <linux/memblock.h> |
| 23 | |
Christoph Hellwig | c4c5ad6 | 2016-07-28 15:48:06 -0700 | [diff] [blame] | 24 | #include <asm/sections.h> |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 25 | #include <linux/io.h> |
| 26 | |
| 27 | #include "internal.h" |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 28 | |
Tejun Heo | fe091c2 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 29 | static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock; |
| 30 | static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock; |
Philipp Hachtmann | 70210ed | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 31 | #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP |
| 32 | static struct memblock_region memblock_physmem_init_regions[INIT_PHYSMEM_REGIONS] __initdata_memblock; |
| 33 | #endif |
Tejun Heo | fe091c2 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 34 | |
| 35 | struct memblock memblock __initdata_memblock = { |
| 36 | .memory.regions = memblock_memory_init_regions, |
| 37 | .memory.cnt = 1, /* empty dummy entry */ |
| 38 | .memory.max = INIT_MEMBLOCK_REGIONS, |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 39 | .memory.name = "memory", |
Tejun Heo | fe091c2 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 40 | |
| 41 | .reserved.regions = memblock_reserved_init_regions, |
| 42 | .reserved.cnt = 1, /* empty dummy entry */ |
| 43 | .reserved.max = INIT_MEMBLOCK_REGIONS, |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 44 | .reserved.name = "reserved", |
Tejun Heo | fe091c2 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 45 | |
Philipp Hachtmann | 70210ed | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 46 | #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP |
| 47 | .physmem.regions = memblock_physmem_init_regions, |
| 48 | .physmem.cnt = 1, /* empty dummy entry */ |
| 49 | .physmem.max = INIT_PHYSMEM_REGIONS, |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 50 | .physmem.name = "physmem", |
Philipp Hachtmann | 70210ed | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 51 | #endif |
| 52 | |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 53 | .bottom_up = false, |
Tejun Heo | fe091c2 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 54 | .current_limit = MEMBLOCK_ALLOC_ANYWHERE, |
| 55 | }; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 56 | |
Yinghai Lu | 10d0643 | 2010-07-28 15:43:02 +1000 | [diff] [blame] | 57 | int memblock_debug __initdata_memblock; |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 58 | static bool system_has_some_mirror __initdata_memblock = false; |
Tejun Heo | 1aadc05 | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 59 | static int memblock_can_resize __initdata_memblock; |
Gavin Shan | 181eb39 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 60 | static int memblock_memory_in_slab __initdata_memblock = 0; |
| 61 | static int memblock_reserved_in_slab __initdata_memblock = 0; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 62 | |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 63 | enum memblock_flags __init_memblock choose_memblock_flags(void) |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 64 | { |
| 65 | return system_has_some_mirror ? MEMBLOCK_MIRROR : MEMBLOCK_NONE; |
| 66 | } |
| 67 | |
Tejun Heo | eb18f1b | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 68 | /* adjust *@size so that (@base + *@size) doesn't overflow, return new size */ |
| 69 | static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size) |
| 70 | { |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 71 | return *size = min(*size, PHYS_ADDR_MAX - base); |
Tejun Heo | eb18f1b | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 72 | } |
| 73 | |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 74 | /* |
| 75 | * Address comparison utilities |
| 76 | */ |
Yinghai Lu | 10d0643 | 2010-07-28 15:43:02 +1000 | [diff] [blame] | 77 | static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1, |
Benjamin Herrenschmidt | 2898cc4 | 2010-08-04 13:34:42 +1000 | [diff] [blame] | 78 | phys_addr_t base2, phys_addr_t size2) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 79 | { |
| 80 | return ((base1 < (base2 + size2)) && (base2 < (base1 + size1))); |
| 81 | } |
| 82 | |
Tang Chen | 95cf82e | 2015-09-08 15:02:03 -0700 | [diff] [blame] | 83 | bool __init_memblock memblock_overlaps_region(struct memblock_type *type, |
H Hartley Sweeten | 2d7d3eb | 2011-10-31 17:09:15 -0700 | [diff] [blame] | 84 | phys_addr_t base, phys_addr_t size) |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 85 | { |
| 86 | unsigned long i; |
| 87 | |
Alexander Kuleshov | f14516f | 2016-01-14 15:20:39 -0800 | [diff] [blame] | 88 | for (i = 0; i < type->cnt; i++) |
| 89 | if (memblock_addrs_overlap(base, size, type->regions[i].base, |
| 90 | type->regions[i].size)) |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 91 | break; |
Tang Chen | c5c5c9d | 2015-09-08 15:02:00 -0700 | [diff] [blame] | 92 | return i < type->cnt; |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 93 | } |
| 94 | |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 95 | /** |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 96 | * __memblock_find_range_bottom_up - find free area utility in bottom-up |
| 97 | * @start: start of candidate range |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 98 | * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or |
| 99 | * %MEMBLOCK_ALLOC_ACCESSIBLE |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 100 | * @size: size of free area to find |
| 101 | * @align: alignment of free area to find |
Grygorii Strashko | b115423 | 2014-01-21 15:50:16 -0800 | [diff] [blame] | 102 | * @nid: nid of the free area to find, %NUMA_NO_NODE for any node |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 103 | * @flags: pick from blocks based on memory attributes |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 104 | * |
| 105 | * Utility called from memblock_find_in_range_node(), find free area bottom-up. |
| 106 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 107 | * Return: |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 108 | * Found address on success, 0 on failure. |
| 109 | */ |
| 110 | static phys_addr_t __init_memblock |
| 111 | __memblock_find_range_bottom_up(phys_addr_t start, phys_addr_t end, |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 112 | phys_addr_t size, phys_addr_t align, int nid, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 113 | enum memblock_flags flags) |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 114 | { |
| 115 | phys_addr_t this_start, this_end, cand; |
| 116 | u64 i; |
| 117 | |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 118 | for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) { |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 119 | this_start = clamp(this_start, start, end); |
| 120 | this_end = clamp(this_end, start, end); |
| 121 | |
| 122 | cand = round_up(this_start, align); |
| 123 | if (cand < this_end && this_end - cand >= size) |
| 124 | return cand; |
| 125 | } |
| 126 | |
| 127 | return 0; |
| 128 | } |
| 129 | |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 130 | /** |
Tang Chen | 1402899 | 2013-11-12 15:07:57 -0800 | [diff] [blame] | 131 | * __memblock_find_range_top_down - find free area utility, in top-down |
| 132 | * @start: start of candidate range |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 133 | * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or |
| 134 | * %MEMBLOCK_ALLOC_ACCESSIBLE |
Tang Chen | 1402899 | 2013-11-12 15:07:57 -0800 | [diff] [blame] | 135 | * @size: size of free area to find |
| 136 | * @align: alignment of free area to find |
Grygorii Strashko | b115423 | 2014-01-21 15:50:16 -0800 | [diff] [blame] | 137 | * @nid: nid of the free area to find, %NUMA_NO_NODE for any node |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 138 | * @flags: pick from blocks based on memory attributes |
Tang Chen | 1402899 | 2013-11-12 15:07:57 -0800 | [diff] [blame] | 139 | * |
| 140 | * Utility called from memblock_find_in_range_node(), find free area top-down. |
| 141 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 142 | * Return: |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 143 | * Found address on success, 0 on failure. |
Tang Chen | 1402899 | 2013-11-12 15:07:57 -0800 | [diff] [blame] | 144 | */ |
| 145 | static phys_addr_t __init_memblock |
| 146 | __memblock_find_range_top_down(phys_addr_t start, phys_addr_t end, |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 147 | phys_addr_t size, phys_addr_t align, int nid, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 148 | enum memblock_flags flags) |
Tang Chen | 1402899 | 2013-11-12 15:07:57 -0800 | [diff] [blame] | 149 | { |
| 150 | phys_addr_t this_start, this_end, cand; |
| 151 | u64 i; |
| 152 | |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 153 | for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end, |
| 154 | NULL) { |
Tang Chen | 1402899 | 2013-11-12 15:07:57 -0800 | [diff] [blame] | 155 | this_start = clamp(this_start, start, end); |
| 156 | this_end = clamp(this_end, start, end); |
| 157 | |
| 158 | if (this_end < size) |
| 159 | continue; |
| 160 | |
| 161 | cand = round_down(this_end - size, align); |
| 162 | if (cand >= this_start) |
| 163 | return cand; |
| 164 | } |
| 165 | |
| 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | /** |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 170 | * memblock_find_in_range_node - find free area in given range and node |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 171 | * @size: size of free area to find |
| 172 | * @align: alignment of free area to find |
Grygorii Strashko | 87029ee | 2014-01-21 15:50:14 -0800 | [diff] [blame] | 173 | * @start: start of candidate range |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 174 | * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or |
| 175 | * %MEMBLOCK_ALLOC_ACCESSIBLE |
Grygorii Strashko | b115423 | 2014-01-21 15:50:16 -0800 | [diff] [blame] | 176 | * @nid: nid of the free area to find, %NUMA_NO_NODE for any node |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 177 | * @flags: pick from blocks based on memory attributes |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 178 | * |
| 179 | * Find @size free area aligned to @align in the specified range and node. |
| 180 | * |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 181 | * When allocation direction is bottom-up, the @start should be greater |
| 182 | * than the end of the kernel image. Otherwise, it will be trimmed. The |
| 183 | * reason is that we want the bottom-up allocation just near the kernel |
| 184 | * image so it is highly likely that the allocated memory and the kernel |
| 185 | * will reside in the same node. |
| 186 | * |
| 187 | * If bottom-up allocation failed, will try to allocate memory top-down. |
| 188 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 189 | * Return: |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 190 | * Found address on success, 0 on failure. |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 191 | */ |
Grygorii Strashko | 87029ee | 2014-01-21 15:50:14 -0800 | [diff] [blame] | 192 | phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t size, |
| 193 | phys_addr_t align, phys_addr_t start, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 194 | phys_addr_t end, int nid, |
| 195 | enum memblock_flags flags) |
Tang Chen | f7210e6 | 2013-02-22 16:33:51 -0800 | [diff] [blame] | 196 | { |
Tang Chen | 0cfb8f0 | 2014-08-29 15:18:31 -0700 | [diff] [blame] | 197 | phys_addr_t kernel_end, ret; |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 198 | |
Tang Chen | f7210e6 | 2013-02-22 16:33:51 -0800 | [diff] [blame] | 199 | /* pump up @end */ |
| 200 | if (end == MEMBLOCK_ALLOC_ACCESSIBLE) |
| 201 | end = memblock.current_limit; |
| 202 | |
| 203 | /* avoid allocating the first page */ |
| 204 | start = max_t(phys_addr_t, start, PAGE_SIZE); |
| 205 | end = max(start, end); |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 206 | kernel_end = __pa_symbol(_end); |
| 207 | |
| 208 | /* |
| 209 | * try bottom-up allocation only when bottom-up mode |
| 210 | * is set and @end is above the kernel image. |
| 211 | */ |
| 212 | if (memblock_bottom_up() && end > kernel_end) { |
| 213 | phys_addr_t bottom_up_start; |
| 214 | |
| 215 | /* make sure we will allocate above the kernel */ |
| 216 | bottom_up_start = max(start, kernel_end); |
| 217 | |
| 218 | /* ok, try bottom-up allocation first */ |
| 219 | ret = __memblock_find_range_bottom_up(bottom_up_start, end, |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 220 | size, align, nid, flags); |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 221 | if (ret) |
| 222 | return ret; |
| 223 | |
| 224 | /* |
| 225 | * we always limit bottom-up allocation above the kernel, |
| 226 | * but top-down allocation doesn't have the limit, so |
| 227 | * retrying top-down allocation may succeed when bottom-up |
| 228 | * allocation failed. |
| 229 | * |
| 230 | * bottom-up allocation is expected to be fail very rarely, |
| 231 | * so we use WARN_ONCE() here to see the stack trace if |
| 232 | * fail happens. |
| 233 | */ |
Joe Perches | 756a025 | 2016-03-17 14:19:47 -0700 | [diff] [blame] | 234 | WARN_ONCE(1, "memblock: bottom-up allocation failed, memory hotunplug may be affected\n"); |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 235 | } |
Tang Chen | f7210e6 | 2013-02-22 16:33:51 -0800 | [diff] [blame] | 236 | |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 237 | return __memblock_find_range_top_down(start, end, size, align, nid, |
| 238 | flags); |
Tang Chen | f7210e6 | 2013-02-22 16:33:51 -0800 | [diff] [blame] | 239 | } |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 240 | |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 241 | /** |
| 242 | * memblock_find_in_range - find free area in given range |
| 243 | * @start: start of candidate range |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 244 | * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or |
| 245 | * %MEMBLOCK_ALLOC_ACCESSIBLE |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 246 | * @size: size of free area to find |
| 247 | * @align: alignment of free area to find |
| 248 | * |
| 249 | * Find @size free area aligned to @align in the specified range. |
| 250 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 251 | * Return: |
Tang Chen | 79442ed | 2013-11-12 15:07:59 -0800 | [diff] [blame] | 252 | * Found address on success, 0 on failure. |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 253 | */ |
| 254 | phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start, |
| 255 | phys_addr_t end, phys_addr_t size, |
| 256 | phys_addr_t align) |
| 257 | { |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 258 | phys_addr_t ret; |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 259 | enum memblock_flags flags = choose_memblock_flags(); |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 260 | |
| 261 | again: |
| 262 | ret = memblock_find_in_range_node(size, align, start, end, |
| 263 | NUMA_NO_NODE, flags); |
| 264 | |
| 265 | if (!ret && (flags & MEMBLOCK_MIRROR)) { |
| 266 | pr_warn("Could not allocate %pap bytes of mirrored memory\n", |
| 267 | &size); |
| 268 | flags &= ~MEMBLOCK_MIRROR; |
| 269 | goto again; |
| 270 | } |
| 271 | |
| 272 | return ret; |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 273 | } |
| 274 | |
Yinghai Lu | 10d0643 | 2010-07-28 15:43:02 +1000 | [diff] [blame] | 275 | static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 276 | { |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 277 | type->total_size -= type->regions[r].size; |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 278 | memmove(&type->regions[r], &type->regions[r + 1], |
| 279 | (type->cnt - (r + 1)) * sizeof(type->regions[r])); |
Benjamin Herrenschmidt | e3239ff | 2010-08-04 14:06:41 +1000 | [diff] [blame] | 280 | type->cnt--; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 281 | |
Benjamin Herrenschmidt | 8f7a660 | 2011-03-22 16:33:43 -0700 | [diff] [blame] | 282 | /* Special case for empty arrays */ |
| 283 | if (type->cnt == 0) { |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 284 | WARN_ON(type->total_size != 0); |
Benjamin Herrenschmidt | 8f7a660 | 2011-03-22 16:33:43 -0700 | [diff] [blame] | 285 | type->cnt = 1; |
| 286 | type->regions[0].base = 0; |
| 287 | type->regions[0].size = 0; |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 288 | type->regions[0].flags = 0; |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 289 | memblock_set_region_node(&type->regions[0], MAX_NUMNODES); |
Benjamin Herrenschmidt | 8f7a660 | 2011-03-22 16:33:43 -0700 | [diff] [blame] | 290 | } |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 291 | } |
| 292 | |
Philipp Hachtmann | 354f17e | 2014-01-23 15:53:24 -0800 | [diff] [blame] | 293 | #ifdef CONFIG_ARCH_DISCARD_MEMBLOCK |
Pavel Tatashin | 3010f87 | 2017-08-18 15:16:05 -0700 | [diff] [blame] | 294 | /** |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 295 | * memblock_discard - discard memory and reserved arrays if they were allocated |
Pavel Tatashin | 3010f87 | 2017-08-18 15:16:05 -0700 | [diff] [blame] | 296 | */ |
| 297 | void __init memblock_discard(void) |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 298 | { |
Pavel Tatashin | 3010f87 | 2017-08-18 15:16:05 -0700 | [diff] [blame] | 299 | phys_addr_t addr, size; |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 300 | |
Pavel Tatashin | 3010f87 | 2017-08-18 15:16:05 -0700 | [diff] [blame] | 301 | if (memblock.reserved.regions != memblock_reserved_init_regions) { |
| 302 | addr = __pa(memblock.reserved.regions); |
| 303 | size = PAGE_ALIGN(sizeof(struct memblock_region) * |
| 304 | memblock.reserved.max); |
| 305 | __memblock_free_late(addr, size); |
| 306 | } |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 307 | |
Pavel Tatashin | 91b540f | 2017-08-25 15:55:46 -0700 | [diff] [blame] | 308 | if (memblock.memory.regions != memblock_memory_init_regions) { |
Pavel Tatashin | 3010f87 | 2017-08-18 15:16:05 -0700 | [diff] [blame] | 309 | addr = __pa(memblock.memory.regions); |
| 310 | size = PAGE_ALIGN(sizeof(struct memblock_region) * |
| 311 | memblock.memory.max); |
| 312 | __memblock_free_late(addr, size); |
| 313 | } |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 314 | } |
Philipp Hachtmann | 5e270e2 | 2014-01-23 15:53:11 -0800 | [diff] [blame] | 315 | #endif |
| 316 | |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 317 | /** |
| 318 | * memblock_double_array - double the size of the memblock regions array |
| 319 | * @type: memblock type of the regions array being doubled |
| 320 | * @new_area_start: starting address of memory range to avoid overlap with |
| 321 | * @new_area_size: size of memory range to avoid overlap with |
| 322 | * |
| 323 | * Double the size of the @type regions array. If memblock is being used to |
| 324 | * allocate memory for a new reserved regions array and there is a previously |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 325 | * allocated memory range [@new_area_start, @new_area_start + @new_area_size] |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 326 | * waiting to be reserved, ensure the memory used by the new array does |
| 327 | * not overlap. |
| 328 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 329 | * Return: |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 330 | * 0 on success, -1 on failure. |
| 331 | */ |
| 332 | static int __init_memblock memblock_double_array(struct memblock_type *type, |
| 333 | phys_addr_t new_area_start, |
| 334 | phys_addr_t new_area_size) |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 335 | { |
| 336 | struct memblock_region *new_array, *old_array; |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 337 | phys_addr_t old_alloc_size, new_alloc_size; |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 338 | phys_addr_t old_size, new_size, addr; |
| 339 | int use_slab = slab_is_available(); |
Gavin Shan | 181eb39 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 340 | int *in_slab; |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 341 | |
| 342 | /* We don't allow resizing until we know about the reserved regions |
| 343 | * of memory that aren't suitable for allocation |
| 344 | */ |
| 345 | if (!memblock_can_resize) |
| 346 | return -1; |
| 347 | |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 348 | /* Calculate new doubled size */ |
| 349 | old_size = type->max * sizeof(struct memblock_region); |
| 350 | new_size = old_size << 1; |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 351 | /* |
| 352 | * We need to allocated new one align to PAGE_SIZE, |
| 353 | * so we can free them completely later. |
| 354 | */ |
| 355 | old_alloc_size = PAGE_ALIGN(old_size); |
| 356 | new_alloc_size = PAGE_ALIGN(new_size); |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 357 | |
Gavin Shan | 181eb39 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 358 | /* Retrieve the slab flag */ |
| 359 | if (type == &memblock.memory) |
| 360 | in_slab = &memblock_memory_in_slab; |
| 361 | else |
| 362 | in_slab = &memblock_reserved_in_slab; |
| 363 | |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 364 | /* Try to find some space for it. |
| 365 | * |
| 366 | * WARNING: We assume that either slab_is_available() and we use it or |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 367 | * we use MEMBLOCK for allocations. That means that this is unsafe to |
| 368 | * use when bootmem is currently active (unless bootmem itself is |
| 369 | * implemented on top of MEMBLOCK which isn't the case yet) |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 370 | * |
| 371 | * This should however not be an issue for now, as we currently only |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 372 | * call into MEMBLOCK while it's still active, or much later when slab |
| 373 | * is active for memory hotplug operations |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 374 | */ |
| 375 | if (use_slab) { |
| 376 | new_array = kmalloc(new_size, GFP_KERNEL); |
Tejun Heo | 1f5026a | 2011-07-12 09:58:09 +0200 | [diff] [blame] | 377 | addr = new_array ? __pa(new_array) : 0; |
Gavin Shan | 4e2f077 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 378 | } else { |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 379 | /* only exclude range when trying to double reserved.regions */ |
| 380 | if (type != &memblock.reserved) |
| 381 | new_area_start = new_area_size = 0; |
| 382 | |
| 383 | addr = memblock_find_in_range(new_area_start + new_area_size, |
| 384 | memblock.current_limit, |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 385 | new_alloc_size, PAGE_SIZE); |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 386 | if (!addr && new_area_size) |
| 387 | addr = memblock_find_in_range(0, |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 388 | min(new_area_start, memblock.current_limit), |
| 389 | new_alloc_size, PAGE_SIZE); |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 390 | |
Sachin Kamat | 1567486 | 2012-09-04 13:55:05 +0530 | [diff] [blame] | 391 | new_array = addr ? __va(addr) : NULL; |
Gavin Shan | 4e2f077 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 392 | } |
Tejun Heo | 1f5026a | 2011-07-12 09:58:09 +0200 | [diff] [blame] | 393 | if (!addr) { |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 394 | pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n", |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 395 | type->name, type->max, type->max * 2); |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 396 | return -1; |
| 397 | } |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 398 | |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 399 | memblock_dbg("memblock: %s is doubled to %ld at [%#010llx-%#010llx]", |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 400 | type->name, type->max * 2, (u64)addr, |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 401 | (u64)addr + new_size - 1); |
Yinghai Lu | ea9e437 | 2010-07-28 15:13:22 +1000 | [diff] [blame] | 402 | |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 403 | /* |
| 404 | * Found space, we now need to move the array over before we add the |
| 405 | * reserved region since it may be our reserved array itself that is |
| 406 | * full. |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 407 | */ |
| 408 | memcpy(new_array, type->regions, old_size); |
| 409 | memset(new_array + type->max, 0, old_size); |
| 410 | old_array = type->regions; |
| 411 | type->regions = new_array; |
| 412 | type->max <<= 1; |
| 413 | |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 414 | /* Free old array. We needn't free it if the array is the static one */ |
Gavin Shan | 181eb39 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 415 | if (*in_slab) |
| 416 | kfree(old_array); |
| 417 | else if (old_array != memblock_memory_init_regions && |
| 418 | old_array != memblock_reserved_init_regions) |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 419 | memblock_free(__pa(old_array), old_alloc_size); |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 420 | |
Andrew Morton | fd07383 | 2012-07-31 16:42:40 -0700 | [diff] [blame] | 421 | /* |
| 422 | * Reserve the new array if that comes from the memblock. Otherwise, we |
| 423 | * needn't do it |
Gavin Shan | 181eb39 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 424 | */ |
| 425 | if (!use_slab) |
Yinghai Lu | 29f6738 | 2012-07-11 14:02:56 -0700 | [diff] [blame] | 426 | BUG_ON(memblock_reserve(addr, new_alloc_size)); |
Gavin Shan | 181eb39 | 2012-05-29 15:06:50 -0700 | [diff] [blame] | 427 | |
| 428 | /* Update slab flag */ |
| 429 | *in_slab = use_slab; |
| 430 | |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 431 | return 0; |
| 432 | } |
| 433 | |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 434 | /** |
| 435 | * memblock_merge_regions - merge neighboring compatible regions |
| 436 | * @type: memblock type to scan |
| 437 | * |
| 438 | * Scan @type and merge neighboring compatible regions. |
| 439 | */ |
| 440 | static void __init_memblock memblock_merge_regions(struct memblock_type *type) |
| 441 | { |
| 442 | int i = 0; |
| 443 | |
| 444 | /* cnt never goes below 1 */ |
| 445 | while (i < type->cnt - 1) { |
| 446 | struct memblock_region *this = &type->regions[i]; |
| 447 | struct memblock_region *next = &type->regions[i + 1]; |
| 448 | |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 449 | if (this->base + this->size != next->base || |
| 450 | memblock_get_region_node(this) != |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 451 | memblock_get_region_node(next) || |
| 452 | this->flags != next->flags) { |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 453 | BUG_ON(this->base + this->size > next->base); |
| 454 | i++; |
| 455 | continue; |
| 456 | } |
| 457 | |
| 458 | this->size += next->size; |
Lin Feng | c0232ae | 2013-01-11 14:31:44 -0800 | [diff] [blame] | 459 | /* move forward from next + 1, index of which is i + 2 */ |
| 460 | memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next)); |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 461 | type->cnt--; |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | /** |
| 466 | * memblock_insert_region - insert new memblock region |
Tang Chen | 209ff86 | 2013-04-29 15:08:41 -0700 | [diff] [blame] | 467 | * @type: memblock type to insert into |
| 468 | * @idx: index for the insertion point |
| 469 | * @base: base address of the new region |
| 470 | * @size: size of the new region |
| 471 | * @nid: node id of the new region |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 472 | * @flags: flags of the new region |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 473 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 474 | * Insert new memblock region [@base, @base + @size) into @type at @idx. |
Alexander Kuleshov | 412d000 | 2016-08-04 15:31:46 -0700 | [diff] [blame] | 475 | * @type must already have extra room to accommodate the new region. |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 476 | */ |
| 477 | static void __init_memblock memblock_insert_region(struct memblock_type *type, |
| 478 | int idx, phys_addr_t base, |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 479 | phys_addr_t size, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 480 | int nid, |
| 481 | enum memblock_flags flags) |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 482 | { |
| 483 | struct memblock_region *rgn = &type->regions[idx]; |
| 484 | |
| 485 | BUG_ON(type->cnt >= type->max); |
| 486 | memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn)); |
| 487 | rgn->base = base; |
| 488 | rgn->size = size; |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 489 | rgn->flags = flags; |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 490 | memblock_set_region_node(rgn, nid); |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 491 | type->cnt++; |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 492 | type->total_size += size; |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | /** |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 496 | * memblock_add_range - add new memblock region |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 497 | * @type: memblock type to add new region into |
| 498 | * @base: base address of the new region |
| 499 | * @size: size of the new region |
Tejun Heo | 7fb0bc3 | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 500 | * @nid: nid of the new region |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 501 | * @flags: flags of the new region |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 502 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 503 | * Add new memblock region [@base, @base + @size) into @type. The new region |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 504 | * is allowed to overlap with existing ones - overlaps don't affect already |
| 505 | * existing regions. @type is guaranteed to be minimal (all neighbouring |
| 506 | * compatible regions are merged) after the addition. |
| 507 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 508 | * Return: |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 509 | * 0 on success, -errno on failure. |
| 510 | */ |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 511 | int __init_memblock memblock_add_range(struct memblock_type *type, |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 512 | phys_addr_t base, phys_addr_t size, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 513 | int nid, enum memblock_flags flags) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 514 | { |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 515 | bool insert = false; |
Tejun Heo | eb18f1b | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 516 | phys_addr_t obase = base; |
| 517 | phys_addr_t end = base + memblock_cap_size(base, &size); |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 518 | int idx, nr_new; |
| 519 | struct memblock_region *rgn; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 520 | |
Tejun Heo | b3dc627 | 2012-04-20 08:31:34 -0700 | [diff] [blame] | 521 | if (!size) |
| 522 | return 0; |
| 523 | |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 524 | /* special case for empty array */ |
| 525 | if (type->regions[0].size == 0) { |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 526 | WARN_ON(type->cnt != 1 || type->total_size); |
Benjamin Herrenschmidt | e3239ff | 2010-08-04 14:06:41 +1000 | [diff] [blame] | 527 | type->regions[0].base = base; |
| 528 | type->regions[0].size = size; |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 529 | type->regions[0].flags = flags; |
Tejun Heo | 7fb0bc3 | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 530 | memblock_set_region_node(&type->regions[0], nid); |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 531 | type->total_size = size; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 532 | return 0; |
| 533 | } |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 534 | repeat: |
| 535 | /* |
| 536 | * The following is executed twice. Once with %false @insert and |
| 537 | * then with %true. The first counts the number of regions needed |
Alexander Kuleshov | 412d000 | 2016-08-04 15:31:46 -0700 | [diff] [blame] | 538 | * to accommodate the new area. The second actually inserts them. |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 539 | */ |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 540 | base = obase; |
| 541 | nr_new = 0; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 542 | |
Gioh Kim | 66e8b43 | 2017-11-15 17:33:42 -0800 | [diff] [blame] | 543 | for_each_memblock_type(idx, type, rgn) { |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 544 | phys_addr_t rbase = rgn->base; |
| 545 | phys_addr_t rend = rbase + rgn->size; |
| 546 | |
| 547 | if (rbase >= end) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 548 | break; |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 549 | if (rend <= base) |
| 550 | continue; |
| 551 | /* |
| 552 | * @rgn overlaps. If it separates the lower part of new |
| 553 | * area, insert that portion. |
| 554 | */ |
| 555 | if (rbase > base) { |
Wei Yang | c0a2949 | 2015-09-04 15:47:38 -0700 | [diff] [blame] | 556 | #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP |
| 557 | WARN_ON(nid != memblock_get_region_node(rgn)); |
| 558 | #endif |
Wei Yang | 4fcab5f | 2015-09-08 14:59:53 -0700 | [diff] [blame] | 559 | WARN_ON(flags != rgn->flags); |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 560 | nr_new++; |
| 561 | if (insert) |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 562 | memblock_insert_region(type, idx++, base, |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 563 | rbase - base, nid, |
| 564 | flags); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 565 | } |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 566 | /* area below @rend is dealt with, forget about it */ |
| 567 | base = min(rend, end); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 568 | } |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 569 | |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 570 | /* insert the remaining portion */ |
| 571 | if (base < end) { |
| 572 | nr_new++; |
| 573 | if (insert) |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 574 | memblock_insert_region(type, idx, base, end - base, |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 575 | nid, flags); |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 576 | } |
| 577 | |
nimisolo | ef3cc4d | 2016-07-26 15:24:56 -0700 | [diff] [blame] | 578 | if (!nr_new) |
| 579 | return 0; |
| 580 | |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 581 | /* |
| 582 | * If this was the first round, resize array and repeat for actual |
| 583 | * insertions; otherwise, merge and return. |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 584 | */ |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 585 | if (!insert) { |
| 586 | while (type->cnt + nr_new > type->max) |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 587 | if (memblock_double_array(type, obase, size) < 0) |
Tejun Heo | 784656f9 | 2011-07-12 11:15:55 +0200 | [diff] [blame] | 588 | return -ENOMEM; |
| 589 | insert = true; |
| 590 | goto repeat; |
| 591 | } else { |
| 592 | memblock_merge_regions(type); |
| 593 | return 0; |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 594 | } |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 595 | } |
| 596 | |
Mike Rapoport | 48a833c | 2018-06-30 17:55:03 +0300 | [diff] [blame] | 597 | /** |
| 598 | * memblock_add_node - add new memblock region within a NUMA node |
| 599 | * @base: base address of the new region |
| 600 | * @size: size of the new region |
| 601 | * @nid: nid of the new region |
| 602 | * |
| 603 | * Add new memblock region [@base, @base + @size) to the "memory" |
| 604 | * type. See memblock_add_range() description for mode details |
| 605 | * |
| 606 | * Return: |
| 607 | * 0 on success, -errno on failure. |
| 608 | */ |
Tejun Heo | 7fb0bc3 | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 609 | int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size, |
| 610 | int nid) |
| 611 | { |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 612 | return memblock_add_range(&memblock.memory, base, size, nid, 0); |
Tejun Heo | 7fb0bc3 | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 613 | } |
| 614 | |
Mike Rapoport | 48a833c | 2018-06-30 17:55:03 +0300 | [diff] [blame] | 615 | /** |
| 616 | * memblock_add - add new memblock region |
| 617 | * @base: base address of the new region |
| 618 | * @size: size of the new region |
| 619 | * |
| 620 | * Add new memblock region [@base, @base + @size) to the "memory" |
| 621 | * type. See memblock_add_range() description for mode details |
| 622 | * |
| 623 | * Return: |
| 624 | * 0 on success, -errno on failure. |
| 625 | */ |
Alexander Kuleshov | f705ac4 | 2016-05-20 16:57:35 -0700 | [diff] [blame] | 626 | int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size) |
Alexander Kuleshov | 6a4055b | 2015-04-15 16:14:44 -0700 | [diff] [blame] | 627 | { |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 628 | phys_addr_t end = base + size - 1; |
| 629 | |
| 630 | memblock_dbg("memblock_add: [%pa-%pa] %pF\n", |
| 631 | &base, &end, (void *)_RET_IP_); |
Alexander Kuleshov | 6a4055b | 2015-04-15 16:14:44 -0700 | [diff] [blame] | 632 | |
Alexander Kuleshov | f705ac4 | 2016-05-20 16:57:35 -0700 | [diff] [blame] | 633 | return memblock_add_range(&memblock.memory, base, size, MAX_NUMNODES, 0); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 634 | } |
| 635 | |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 636 | /** |
| 637 | * memblock_isolate_range - isolate given range into disjoint memblocks |
| 638 | * @type: memblock type to isolate range for |
| 639 | * @base: base of range to isolate |
| 640 | * @size: size of range to isolate |
| 641 | * @start_rgn: out parameter for the start of isolated region |
| 642 | * @end_rgn: out parameter for the end of isolated region |
| 643 | * |
| 644 | * Walk @type and ensure that regions don't cross the boundaries defined by |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 645 | * [@base, @base + @size). Crossing regions are split at the boundaries, |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 646 | * which may create at most two more regions. The index of the first |
| 647 | * region inside the range is returned in *@start_rgn and end in *@end_rgn. |
| 648 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 649 | * Return: |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 650 | * 0 on success, -errno on failure. |
| 651 | */ |
| 652 | static int __init_memblock memblock_isolate_range(struct memblock_type *type, |
| 653 | phys_addr_t base, phys_addr_t size, |
| 654 | int *start_rgn, int *end_rgn) |
| 655 | { |
Tejun Heo | eb18f1b | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 656 | phys_addr_t end = base + memblock_cap_size(base, &size); |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 657 | int idx; |
| 658 | struct memblock_region *rgn; |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 659 | |
| 660 | *start_rgn = *end_rgn = 0; |
| 661 | |
Tejun Heo | b3dc627 | 2012-04-20 08:31:34 -0700 | [diff] [blame] | 662 | if (!size) |
| 663 | return 0; |
| 664 | |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 665 | /* we'll create at most two more regions */ |
| 666 | while (type->cnt + 2 > type->max) |
Greg Pearson | 48c3b58 | 2012-06-20 12:53:05 -0700 | [diff] [blame] | 667 | if (memblock_double_array(type, base, size) < 0) |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 668 | return -ENOMEM; |
| 669 | |
Gioh Kim | 66e8b43 | 2017-11-15 17:33:42 -0800 | [diff] [blame] | 670 | for_each_memblock_type(idx, type, rgn) { |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 671 | phys_addr_t rbase = rgn->base; |
| 672 | phys_addr_t rend = rbase + rgn->size; |
| 673 | |
| 674 | if (rbase >= end) |
| 675 | break; |
| 676 | if (rend <= base) |
| 677 | continue; |
| 678 | |
| 679 | if (rbase < base) { |
| 680 | /* |
| 681 | * @rgn intersects from below. Split and continue |
| 682 | * to process the next region - the new top half. |
| 683 | */ |
| 684 | rgn->base = base; |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 685 | rgn->size -= base - rbase; |
| 686 | type->total_size -= base - rbase; |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 687 | memblock_insert_region(type, idx, rbase, base - rbase, |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 688 | memblock_get_region_node(rgn), |
| 689 | rgn->flags); |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 690 | } else if (rend > end) { |
| 691 | /* |
| 692 | * @rgn intersects from above. Split and redo the |
| 693 | * current region - the new bottom half. |
| 694 | */ |
| 695 | rgn->base = end; |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 696 | rgn->size -= end - rbase; |
| 697 | type->total_size -= end - rbase; |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 698 | memblock_insert_region(type, idx--, rbase, end - rbase, |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 699 | memblock_get_region_node(rgn), |
| 700 | rgn->flags); |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 701 | } else { |
| 702 | /* @rgn is fully contained, record it */ |
| 703 | if (!*end_rgn) |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 704 | *start_rgn = idx; |
| 705 | *end_rgn = idx + 1; |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 706 | } |
| 707 | } |
| 708 | |
| 709 | return 0; |
| 710 | } |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 711 | |
Alexander Kuleshov | 35bd16a | 2015-11-05 18:47:00 -0800 | [diff] [blame] | 712 | static int __init_memblock memblock_remove_range(struct memblock_type *type, |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 713 | phys_addr_t base, phys_addr_t size) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 714 | { |
Tejun Heo | 7193618 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 715 | int start_rgn, end_rgn; |
| 716 | int i, ret; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 717 | |
Tejun Heo | 7193618 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 718 | ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn); |
| 719 | if (ret) |
| 720 | return ret; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 721 | |
Tejun Heo | 7193618 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 722 | for (i = end_rgn - 1; i >= start_rgn; i--) |
| 723 | memblock_remove_region(type, i); |
Benjamin Herrenschmidt | 8f7a660 | 2011-03-22 16:33:43 -0700 | [diff] [blame] | 724 | return 0; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 725 | } |
| 726 | |
Tejun Heo | 581adcb | 2011-12-08 10:22:06 -0800 | [diff] [blame] | 727 | int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 728 | { |
Minchan Kim | 25cf23d | 2018-06-07 17:07:35 -0700 | [diff] [blame] | 729 | phys_addr_t end = base + size - 1; |
| 730 | |
| 731 | memblock_dbg("memblock_remove: [%pa-%pa] %pS\n", |
| 732 | &base, &end, (void *)_RET_IP_); |
| 733 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 734 | return memblock_remove_range(&memblock.memory, base, size); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 735 | } |
| 736 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 737 | |
Tejun Heo | 581adcb | 2011-12-08 10:22:06 -0800 | [diff] [blame] | 738 | int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 739 | { |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 740 | phys_addr_t end = base + size - 1; |
| 741 | |
| 742 | memblock_dbg(" memblock_free: [%pa-%pa] %pF\n", |
| 743 | &base, &end, (void *)_RET_IP_); |
Tejun Heo | 24aa078 | 2011-07-12 11:16:06 +0200 | [diff] [blame] | 744 | |
Catalin Marinas | 9099dae | 2016-10-11 13:55:11 -0700 | [diff] [blame] | 745 | kmemleak_free_part_phys(base, size); |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 746 | return memblock_remove_range(&memblock.reserved, base, size); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 747 | } |
| 748 | |
Alexander Kuleshov | f705ac4 | 2016-05-20 16:57:35 -0700 | [diff] [blame] | 749 | int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 750 | { |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 751 | phys_addr_t end = base + size - 1; |
| 752 | |
| 753 | memblock_dbg("memblock_reserve: [%pa-%pa] %pF\n", |
| 754 | &base, &end, (void *)_RET_IP_); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 755 | |
Alexander Kuleshov | f705ac4 | 2016-05-20 16:57:35 -0700 | [diff] [blame] | 756 | return memblock_add_range(&memblock.reserved, base, size, MAX_NUMNODES, 0); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 757 | } |
| 758 | |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 759 | /** |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 760 | * memblock_setclr_flag - set or clear flag for a memory region |
| 761 | * @base: base address of the region |
| 762 | * @size: size of the region |
| 763 | * @set: set or clear the flag |
| 764 | * @flag: the flag to udpate |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 765 | * |
Tony Luck | 4308ce1 | 2014-12-12 16:54:59 -0800 | [diff] [blame] | 766 | * This function isolates region [@base, @base + @size), and sets/clears flag |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 767 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 768 | * Return: 0 on success, -errno on failure. |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 769 | */ |
Tony Luck | 4308ce1 | 2014-12-12 16:54:59 -0800 | [diff] [blame] | 770 | static int __init_memblock memblock_setclr_flag(phys_addr_t base, |
| 771 | phys_addr_t size, int set, int flag) |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 772 | { |
| 773 | struct memblock_type *type = &memblock.memory; |
| 774 | int i, ret, start_rgn, end_rgn; |
| 775 | |
| 776 | ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn); |
| 777 | if (ret) |
| 778 | return ret; |
| 779 | |
| 780 | for (i = start_rgn; i < end_rgn; i++) |
Tony Luck | 4308ce1 | 2014-12-12 16:54:59 -0800 | [diff] [blame] | 781 | if (set) |
| 782 | memblock_set_region_flags(&type->regions[i], flag); |
| 783 | else |
| 784 | memblock_clear_region_flags(&type->regions[i], flag); |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 785 | |
| 786 | memblock_merge_regions(type); |
| 787 | return 0; |
| 788 | } |
| 789 | |
| 790 | /** |
Tony Luck | 4308ce1 | 2014-12-12 16:54:59 -0800 | [diff] [blame] | 791 | * memblock_mark_hotplug - Mark hotpluggable memory with flag MEMBLOCK_HOTPLUG. |
| 792 | * @base: the base phys addr of the region |
| 793 | * @size: the size of the region |
| 794 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 795 | * Return: 0 on success, -errno on failure. |
Tony Luck | 4308ce1 | 2014-12-12 16:54:59 -0800 | [diff] [blame] | 796 | */ |
| 797 | int __init_memblock memblock_mark_hotplug(phys_addr_t base, phys_addr_t size) |
| 798 | { |
| 799 | return memblock_setclr_flag(base, size, 1, MEMBLOCK_HOTPLUG); |
| 800 | } |
| 801 | |
| 802 | /** |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 803 | * memblock_clear_hotplug - Clear flag MEMBLOCK_HOTPLUG for a specified region. |
| 804 | * @base: the base phys addr of the region |
| 805 | * @size: the size of the region |
| 806 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 807 | * Return: 0 on success, -errno on failure. |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 808 | */ |
| 809 | int __init_memblock memblock_clear_hotplug(phys_addr_t base, phys_addr_t size) |
| 810 | { |
Tony Luck | 4308ce1 | 2014-12-12 16:54:59 -0800 | [diff] [blame] | 811 | return memblock_setclr_flag(base, size, 0, MEMBLOCK_HOTPLUG); |
Tang Chen | 66b16ed | 2014-01-21 15:49:23 -0800 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | /** |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 815 | * memblock_mark_mirror - Mark mirrored memory with flag MEMBLOCK_MIRROR. |
| 816 | * @base: the base phys addr of the region |
| 817 | * @size: the size of the region |
| 818 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 819 | * Return: 0 on success, -errno on failure. |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 820 | */ |
| 821 | int __init_memblock memblock_mark_mirror(phys_addr_t base, phys_addr_t size) |
| 822 | { |
| 823 | system_has_some_mirror = true; |
| 824 | |
| 825 | return memblock_setclr_flag(base, size, 1, MEMBLOCK_MIRROR); |
| 826 | } |
| 827 | |
Ard Biesheuvel | bf3d3cc | 2015-11-30 13:28:15 +0100 | [diff] [blame] | 828 | /** |
| 829 | * memblock_mark_nomap - Mark a memory region with flag MEMBLOCK_NOMAP. |
| 830 | * @base: the base phys addr of the region |
| 831 | * @size: the size of the region |
| 832 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 833 | * Return: 0 on success, -errno on failure. |
Ard Biesheuvel | bf3d3cc | 2015-11-30 13:28:15 +0100 | [diff] [blame] | 834 | */ |
| 835 | int __init_memblock memblock_mark_nomap(phys_addr_t base, phys_addr_t size) |
| 836 | { |
| 837 | return memblock_setclr_flag(base, size, 1, MEMBLOCK_NOMAP); |
| 838 | } |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 839 | |
| 840 | /** |
AKASHI Takahiro | 4c546b8 | 2017-04-03 11:23:54 +0900 | [diff] [blame] | 841 | * memblock_clear_nomap - Clear flag MEMBLOCK_NOMAP for a specified region. |
| 842 | * @base: the base phys addr of the region |
| 843 | * @size: the size of the region |
| 844 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 845 | * Return: 0 on success, -errno on failure. |
AKASHI Takahiro | 4c546b8 | 2017-04-03 11:23:54 +0900 | [diff] [blame] | 846 | */ |
| 847 | int __init_memblock memblock_clear_nomap(phys_addr_t base, phys_addr_t size) |
| 848 | { |
| 849 | return memblock_setclr_flag(base, size, 0, MEMBLOCK_NOMAP); |
| 850 | } |
| 851 | |
| 852 | /** |
Robin Holt | 8e7a7f8 | 2015-06-30 14:56:41 -0700 | [diff] [blame] | 853 | * __next_reserved_mem_region - next function for for_each_reserved_region() |
| 854 | * @idx: pointer to u64 loop variable |
| 855 | * @out_start: ptr to phys_addr_t for start address of the region, can be %NULL |
| 856 | * @out_end: ptr to phys_addr_t for end address of the region, can be %NULL |
| 857 | * |
| 858 | * Iterate over all reserved memory regions. |
| 859 | */ |
| 860 | void __init_memblock __next_reserved_mem_region(u64 *idx, |
| 861 | phys_addr_t *out_start, |
| 862 | phys_addr_t *out_end) |
| 863 | { |
Alexander Kuleshov | 567d117 | 2015-09-08 15:03:33 -0700 | [diff] [blame] | 864 | struct memblock_type *type = &memblock.reserved; |
Robin Holt | 8e7a7f8 | 2015-06-30 14:56:41 -0700 | [diff] [blame] | 865 | |
Richard Leitner | cd33a76 | 2016-05-20 16:58:33 -0700 | [diff] [blame] | 866 | if (*idx < type->cnt) { |
Alexander Kuleshov | 567d117 | 2015-09-08 15:03:33 -0700 | [diff] [blame] | 867 | struct memblock_region *r = &type->regions[*idx]; |
Robin Holt | 8e7a7f8 | 2015-06-30 14:56:41 -0700 | [diff] [blame] | 868 | phys_addr_t base = r->base; |
| 869 | phys_addr_t size = r->size; |
| 870 | |
| 871 | if (out_start) |
| 872 | *out_start = base; |
| 873 | if (out_end) |
| 874 | *out_end = base + size - 1; |
| 875 | |
| 876 | *idx += 1; |
| 877 | return; |
| 878 | } |
| 879 | |
| 880 | /* signal end of iteration */ |
| 881 | *idx = ULLONG_MAX; |
| 882 | } |
| 883 | |
| 884 | /** |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 885 | * __next__mem_range - next function for for_each_free_mem_range() etc. |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 886 | * @idx: pointer to u64 loop variable |
Grygorii Strashko | b115423 | 2014-01-21 15:50:16 -0800 | [diff] [blame] | 887 | * @nid: node selector, %NUMA_NO_NODE for all nodes |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 888 | * @flags: pick from blocks based on memory attributes |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 889 | * @type_a: pointer to memblock_type from where the range is taken |
| 890 | * @type_b: pointer to memblock_type which excludes memory from being taken |
Wanpeng Li | dad7557 | 2012-06-20 12:53:01 -0700 | [diff] [blame] | 891 | * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL |
| 892 | * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL |
| 893 | * @out_nid: ptr to int for nid of the range, can be %NULL |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 894 | * |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 895 | * Find the first area from *@idx which matches @nid, fill the out |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 896 | * parameters, and update *@idx for the next iteration. The lower 32bit of |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 897 | * *@idx contains index into type_a and the upper 32bit indexes the |
| 898 | * areas before each region in type_b. For example, if type_b regions |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 899 | * look like the following, |
| 900 | * |
| 901 | * 0:[0-16), 1:[32-48), 2:[128-130) |
| 902 | * |
| 903 | * The upper 32bit indexes the following regions. |
| 904 | * |
| 905 | * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX) |
| 906 | * |
| 907 | * As both region arrays are sorted, the function advances the two indices |
| 908 | * in lockstep and returns each intersection. |
| 909 | */ |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 910 | void __init_memblock __next_mem_range(u64 *idx, int nid, |
| 911 | enum memblock_flags flags, |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 912 | struct memblock_type *type_a, |
| 913 | struct memblock_type *type_b, |
| 914 | phys_addr_t *out_start, |
| 915 | phys_addr_t *out_end, int *out_nid) |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 916 | { |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 917 | int idx_a = *idx & 0xffffffff; |
| 918 | int idx_b = *idx >> 32; |
Grygorii Strashko | b115423 | 2014-01-21 15:50:16 -0800 | [diff] [blame] | 919 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 920 | if (WARN_ONCE(nid == MAX_NUMNODES, |
| 921 | "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n")) |
Grygorii Strashko | 560dca27 | 2014-01-21 15:50:55 -0800 | [diff] [blame] | 922 | nid = NUMA_NO_NODE; |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 923 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 924 | for (; idx_a < type_a->cnt; idx_a++) { |
| 925 | struct memblock_region *m = &type_a->regions[idx_a]; |
| 926 | |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 927 | phys_addr_t m_start = m->base; |
| 928 | phys_addr_t m_end = m->base + m->size; |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 929 | int m_nid = memblock_get_region_node(m); |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 930 | |
| 931 | /* only memory regions are associated with nodes, check it */ |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 932 | if (nid != NUMA_NO_NODE && nid != m_nid) |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 933 | continue; |
| 934 | |
Xishi Qiu | 0a313a9 | 2014-09-09 14:50:46 -0700 | [diff] [blame] | 935 | /* skip hotpluggable memory regions if needed */ |
| 936 | if (movable_node_is_enabled() && memblock_is_hotpluggable(m)) |
| 937 | continue; |
| 938 | |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 939 | /* if we want mirror memory skip non-mirror memory regions */ |
| 940 | if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m)) |
| 941 | continue; |
| 942 | |
Ard Biesheuvel | bf3d3cc | 2015-11-30 13:28:15 +0100 | [diff] [blame] | 943 | /* skip nomap memory unless we were asked for it explicitly */ |
| 944 | if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m)) |
| 945 | continue; |
| 946 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 947 | if (!type_b) { |
| 948 | if (out_start) |
| 949 | *out_start = m_start; |
| 950 | if (out_end) |
| 951 | *out_end = m_end; |
| 952 | if (out_nid) |
| 953 | *out_nid = m_nid; |
| 954 | idx_a++; |
| 955 | *idx = (u32)idx_a | (u64)idx_b << 32; |
| 956 | return; |
| 957 | } |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 958 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 959 | /* scan areas before each reservation */ |
| 960 | for (; idx_b < type_b->cnt + 1; idx_b++) { |
| 961 | struct memblock_region *r; |
| 962 | phys_addr_t r_start; |
| 963 | phys_addr_t r_end; |
| 964 | |
| 965 | r = &type_b->regions[idx_b]; |
| 966 | r_start = idx_b ? r[-1].base + r[-1].size : 0; |
| 967 | r_end = idx_b < type_b->cnt ? |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 968 | r->base : PHYS_ADDR_MAX; |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 969 | |
| 970 | /* |
| 971 | * if idx_b advanced past idx_a, |
| 972 | * break out to advance idx_a |
| 973 | */ |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 974 | if (r_start >= m_end) |
| 975 | break; |
| 976 | /* if the two regions intersect, we're done */ |
| 977 | if (m_start < r_end) { |
| 978 | if (out_start) |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 979 | *out_start = |
| 980 | max(m_start, r_start); |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 981 | if (out_end) |
| 982 | *out_end = min(m_end, r_end); |
| 983 | if (out_nid) |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 984 | *out_nid = m_nid; |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 985 | /* |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 986 | * The region which ends first is |
| 987 | * advanced for the next iteration. |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 988 | */ |
| 989 | if (m_end <= r_end) |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 990 | idx_a++; |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 991 | else |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 992 | idx_b++; |
| 993 | *idx = (u32)idx_a | (u64)idx_b << 32; |
Tejun Heo | 35fd080 | 2011-07-12 11:15:59 +0200 | [diff] [blame] | 994 | return; |
| 995 | } |
| 996 | } |
| 997 | } |
| 998 | |
| 999 | /* signal end of iteration */ |
| 1000 | *idx = ULLONG_MAX; |
| 1001 | } |
| 1002 | |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1003 | /** |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1004 | * __next_mem_range_rev - generic next function for for_each_*_range_rev() |
| 1005 | * |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1006 | * @idx: pointer to u64 loop variable |
Alexander Kuleshov | ad5ea8c | 2015-09-08 15:04:22 -0700 | [diff] [blame] | 1007 | * @nid: node selector, %NUMA_NO_NODE for all nodes |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 1008 | * @flags: pick from blocks based on memory attributes |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1009 | * @type_a: pointer to memblock_type from where the range is taken |
| 1010 | * @type_b: pointer to memblock_type which excludes memory from being taken |
Wanpeng Li | dad7557 | 2012-06-20 12:53:01 -0700 | [diff] [blame] | 1011 | * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL |
| 1012 | * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL |
| 1013 | * @out_nid: ptr to int for nid of the range, can be %NULL |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1014 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1015 | * Finds the next range from type_a which is not marked as unsuitable |
| 1016 | * in type_b. |
| 1017 | * |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1018 | * Reverse of __next_mem_range(). |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1019 | */ |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1020 | void __init_memblock __next_mem_range_rev(u64 *idx, int nid, |
| 1021 | enum memblock_flags flags, |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1022 | struct memblock_type *type_a, |
| 1023 | struct memblock_type *type_b, |
| 1024 | phys_addr_t *out_start, |
| 1025 | phys_addr_t *out_end, int *out_nid) |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1026 | { |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1027 | int idx_a = *idx & 0xffffffff; |
| 1028 | int idx_b = *idx >> 32; |
Grygorii Strashko | b115423 | 2014-01-21 15:50:16 -0800 | [diff] [blame] | 1029 | |
Grygorii Strashko | 560dca27 | 2014-01-21 15:50:55 -0800 | [diff] [blame] | 1030 | if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n")) |
| 1031 | nid = NUMA_NO_NODE; |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1032 | |
| 1033 | if (*idx == (u64)ULLONG_MAX) { |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1034 | idx_a = type_a->cnt - 1; |
zijun_hu | e47608a | 2016-08-04 15:32:00 -0700 | [diff] [blame] | 1035 | if (type_b != NULL) |
| 1036 | idx_b = type_b->cnt; |
| 1037 | else |
| 1038 | idx_b = 0; |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1039 | } |
| 1040 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1041 | for (; idx_a >= 0; idx_a--) { |
| 1042 | struct memblock_region *m = &type_a->regions[idx_a]; |
| 1043 | |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1044 | phys_addr_t m_start = m->base; |
| 1045 | phys_addr_t m_end = m->base + m->size; |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1046 | int m_nid = memblock_get_region_node(m); |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1047 | |
| 1048 | /* only memory regions are associated with nodes, check it */ |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1049 | if (nid != NUMA_NO_NODE && nid != m_nid) |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1050 | continue; |
| 1051 | |
Tang Chen | 55ac590 | 2014-01-21 15:49:35 -0800 | [diff] [blame] | 1052 | /* skip hotpluggable memory regions if needed */ |
| 1053 | if (movable_node_is_enabled() && memblock_is_hotpluggable(m)) |
| 1054 | continue; |
| 1055 | |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 1056 | /* if we want mirror memory skip non-mirror memory regions */ |
| 1057 | if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m)) |
| 1058 | continue; |
| 1059 | |
Ard Biesheuvel | bf3d3cc | 2015-11-30 13:28:15 +0100 | [diff] [blame] | 1060 | /* skip nomap memory unless we were asked for it explicitly */ |
| 1061 | if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m)) |
| 1062 | continue; |
| 1063 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1064 | if (!type_b) { |
| 1065 | if (out_start) |
| 1066 | *out_start = m_start; |
| 1067 | if (out_end) |
| 1068 | *out_end = m_end; |
| 1069 | if (out_nid) |
| 1070 | *out_nid = m_nid; |
zijun_hu | fb399b4 | 2016-07-28 15:48:56 -0700 | [diff] [blame] | 1071 | idx_a--; |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1072 | *idx = (u32)idx_a | (u64)idx_b << 32; |
| 1073 | return; |
| 1074 | } |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1075 | |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1076 | /* scan areas before each reservation */ |
| 1077 | for (; idx_b >= 0; idx_b--) { |
| 1078 | struct memblock_region *r; |
| 1079 | phys_addr_t r_start; |
| 1080 | phys_addr_t r_end; |
| 1081 | |
| 1082 | r = &type_b->regions[idx_b]; |
| 1083 | r_start = idx_b ? r[-1].base + r[-1].size : 0; |
| 1084 | r_end = idx_b < type_b->cnt ? |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1085 | r->base : PHYS_ADDR_MAX; |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1086 | /* |
| 1087 | * if idx_b advanced past idx_a, |
| 1088 | * break out to advance idx_a |
| 1089 | */ |
| 1090 | |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1091 | if (r_end <= m_start) |
| 1092 | break; |
| 1093 | /* if the two regions intersect, we're done */ |
| 1094 | if (m_end > r_start) { |
| 1095 | if (out_start) |
| 1096 | *out_start = max(m_start, r_start); |
| 1097 | if (out_end) |
| 1098 | *out_end = min(m_end, r_end); |
| 1099 | if (out_nid) |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1100 | *out_nid = m_nid; |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1101 | if (m_start >= r_start) |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1102 | idx_a--; |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1103 | else |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1104 | idx_b--; |
| 1105 | *idx = (u32)idx_a | (u64)idx_b << 32; |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1106 | return; |
| 1107 | } |
| 1108 | } |
| 1109 | } |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1110 | /* signal end of iteration */ |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1111 | *idx = ULLONG_MAX; |
| 1112 | } |
| 1113 | |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1114 | #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP |
| 1115 | /* |
| 1116 | * Common iterator interface used to define for_each_mem_range(). |
| 1117 | */ |
| 1118 | void __init_memblock __next_mem_pfn_range(int *idx, int nid, |
| 1119 | unsigned long *out_start_pfn, |
| 1120 | unsigned long *out_end_pfn, int *out_nid) |
| 1121 | { |
| 1122 | struct memblock_type *type = &memblock.memory; |
| 1123 | struct memblock_region *r; |
| 1124 | |
| 1125 | while (++*idx < type->cnt) { |
| 1126 | r = &type->regions[*idx]; |
| 1127 | |
| 1128 | if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size)) |
| 1129 | continue; |
| 1130 | if (nid == MAX_NUMNODES || nid == r->nid) |
| 1131 | break; |
| 1132 | } |
| 1133 | if (*idx >= type->cnt) { |
| 1134 | *idx = -1; |
| 1135 | return; |
| 1136 | } |
| 1137 | |
| 1138 | if (out_start_pfn) |
| 1139 | *out_start_pfn = PFN_UP(r->base); |
| 1140 | if (out_end_pfn) |
| 1141 | *out_end_pfn = PFN_DOWN(r->base + r->size); |
| 1142 | if (out_nid) |
| 1143 | *out_nid = r->nid; |
| 1144 | } |
| 1145 | |
| 1146 | /** |
| 1147 | * memblock_set_node - set node ID on memblock regions |
| 1148 | * @base: base of area to set node ID for |
| 1149 | * @size: size of area to set node ID for |
Tang Chen | e7e8de5 | 2014-01-21 15:49:26 -0800 | [diff] [blame] | 1150 | * @type: memblock type to set node ID for |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1151 | * @nid: node ID to set |
| 1152 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1153 | * Set the nid of memblock @type regions in [@base, @base + @size) to @nid. |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1154 | * Regions which cross the area boundaries are split as necessary. |
| 1155 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1156 | * Return: |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1157 | * 0 on success, -errno on failure. |
| 1158 | */ |
| 1159 | int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size, |
Tang Chen | e7e8de5 | 2014-01-21 15:49:26 -0800 | [diff] [blame] | 1160 | struct memblock_type *type, int nid) |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1161 | { |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1162 | int start_rgn, end_rgn; |
| 1163 | int i, ret; |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1164 | |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1165 | ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn); |
| 1166 | if (ret) |
| 1167 | return ret; |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1168 | |
Tejun Heo | 6a9ceb3 | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1169 | for (i = start_rgn; i < end_rgn; i++) |
Wanpeng Li | e9d24ad | 2012-10-08 16:32:21 -0700 | [diff] [blame] | 1170 | memblock_set_region_node(&type->regions[i], nid); |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1171 | |
| 1172 | memblock_merge_regions(type); |
| 1173 | return 0; |
| 1174 | } |
| 1175 | #endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */ |
| 1176 | |
Akinobu Mita | 2bfc286 | 2014-06-04 16:06:53 -0700 | [diff] [blame] | 1177 | static phys_addr_t __init memblock_alloc_range_nid(phys_addr_t size, |
| 1178 | phys_addr_t align, phys_addr_t start, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1179 | phys_addr_t end, int nid, |
| 1180 | enum memblock_flags flags) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1181 | { |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1182 | phys_addr_t found; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1183 | |
Grygorii Strashko | 79f40fa | 2014-01-21 15:50:12 -0800 | [diff] [blame] | 1184 | if (!align) |
| 1185 | align = SMP_CACHE_BYTES; |
Vineet Gupta | 94f3d3a | 2013-04-29 15:06:15 -0700 | [diff] [blame] | 1186 | |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 1187 | found = memblock_find_in_range_node(size, align, start, end, nid, |
| 1188 | flags); |
Catalin Marinas | aedf95e | 2014-06-06 14:38:20 -0700 | [diff] [blame] | 1189 | if (found && !memblock_reserve(found, size)) { |
| 1190 | /* |
| 1191 | * The min_count is set to 0 so that memblock allocations are |
| 1192 | * never reported as leaks. |
| 1193 | */ |
Catalin Marinas | 9099dae | 2016-10-11 13:55:11 -0700 | [diff] [blame] | 1194 | kmemleak_alloc_phys(found, size, 0, 0); |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1195 | return found; |
Catalin Marinas | aedf95e | 2014-06-06 14:38:20 -0700 | [diff] [blame] | 1196 | } |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1197 | return 0; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1198 | } |
| 1199 | |
Akinobu Mita | 2bfc286 | 2014-06-04 16:06:53 -0700 | [diff] [blame] | 1200 | phys_addr_t __init memblock_alloc_range(phys_addr_t size, phys_addr_t align, |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 1201 | phys_addr_t start, phys_addr_t end, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1202 | enum memblock_flags flags) |
Akinobu Mita | 2bfc286 | 2014-06-04 16:06:53 -0700 | [diff] [blame] | 1203 | { |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 1204 | return memblock_alloc_range_nid(size, align, start, end, NUMA_NO_NODE, |
| 1205 | flags); |
Akinobu Mita | 2bfc286 | 2014-06-04 16:06:53 -0700 | [diff] [blame] | 1206 | } |
| 1207 | |
Nicholas Piggin | b575454f | 2018-02-14 01:08:15 +1000 | [diff] [blame] | 1208 | phys_addr_t __init memblock_alloc_base_nid(phys_addr_t size, |
Akinobu Mita | 2bfc286 | 2014-06-04 16:06:53 -0700 | [diff] [blame] | 1209 | phys_addr_t align, phys_addr_t max_addr, |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1210 | int nid, enum memblock_flags flags) |
Akinobu Mita | 2bfc286 | 2014-06-04 16:06:53 -0700 | [diff] [blame] | 1211 | { |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 1212 | return memblock_alloc_range_nid(size, align, 0, max_addr, nid, flags); |
Akinobu Mita | 2bfc286 | 2014-06-04 16:06:53 -0700 | [diff] [blame] | 1213 | } |
| 1214 | |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1215 | phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid) |
| 1216 | { |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1217 | enum memblock_flags flags = choose_memblock_flags(); |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 1218 | phys_addr_t ret; |
| 1219 | |
| 1220 | again: |
| 1221 | ret = memblock_alloc_base_nid(size, align, MEMBLOCK_ALLOC_ACCESSIBLE, |
| 1222 | nid, flags); |
| 1223 | |
| 1224 | if (!ret && (flags & MEMBLOCK_MIRROR)) { |
| 1225 | flags &= ~MEMBLOCK_MIRROR; |
| 1226 | goto again; |
| 1227 | } |
| 1228 | return ret; |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1229 | } |
| 1230 | |
| 1231 | phys_addr_t __init __memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr) |
| 1232 | { |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 1233 | return memblock_alloc_base_nid(size, align, max_addr, NUMA_NO_NODE, |
| 1234 | MEMBLOCK_NONE); |
Tejun Heo | 7bd0b0f | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 1235 | } |
| 1236 | |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1237 | phys_addr_t __init memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1238 | { |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1239 | phys_addr_t alloc; |
| 1240 | |
| 1241 | alloc = __memblock_alloc_base(size, align, max_addr); |
| 1242 | |
| 1243 | if (alloc == 0) |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 1244 | panic("ERROR: Failed to allocate %pa bytes below %pa.\n", |
| 1245 | &size, &max_addr); |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1246 | |
| 1247 | return alloc; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1248 | } |
| 1249 | |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1250 | phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1251 | { |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1252 | return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1253 | } |
| 1254 | |
Benjamin Herrenschmidt | 9d1e249 | 2010-07-06 15:39:17 -0700 | [diff] [blame] | 1255 | phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid) |
| 1256 | { |
| 1257 | phys_addr_t res = memblock_alloc_nid(size, align, nid); |
| 1258 | |
| 1259 | if (res) |
| 1260 | return res; |
Tejun Heo | 15fb097 | 2011-07-12 09:58:07 +0200 | [diff] [blame] | 1261 | return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1262 | } |
| 1263 | |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1264 | /** |
| 1265 | * memblock_virt_alloc_internal - allocate boot memory block |
| 1266 | * @size: size of memory block to be allocated in bytes |
| 1267 | * @align: alignment of the region and block's size |
| 1268 | * @min_addr: the lower bound of the memory region to allocate (phys address) |
| 1269 | * @max_addr: the upper bound of the memory region to allocate (phys address) |
| 1270 | * @nid: nid of the free area to find, %NUMA_NO_NODE for any node |
| 1271 | * |
| 1272 | * The @min_addr limit is dropped if it can not be satisfied and the allocation |
| 1273 | * will fall back to memory below @min_addr. Also, allocation may fall back |
| 1274 | * to any node in the system if the specified node can not |
| 1275 | * hold the requested memory. |
| 1276 | * |
| 1277 | * The allocation is performed from memory region limited by |
| 1278 | * memblock.current_limit if @max_addr == %BOOTMEM_ALLOC_ACCESSIBLE. |
| 1279 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1280 | * The memory block is aligned on %SMP_CACHE_BYTES if @align == 0. |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1281 | * |
| 1282 | * The phys address of allocated boot memory block is converted to virtual and |
| 1283 | * allocated memory is reset to 0. |
| 1284 | * |
| 1285 | * In addition, function sets the min_count to 0 using kmemleak_alloc for |
| 1286 | * allocated boot memory block, so that it is never reported as leaks. |
| 1287 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1288 | * Return: |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1289 | * Virtual address of allocated memory block on success, NULL on failure. |
| 1290 | */ |
| 1291 | static void * __init memblock_virt_alloc_internal( |
| 1292 | phys_addr_t size, phys_addr_t align, |
| 1293 | phys_addr_t min_addr, phys_addr_t max_addr, |
| 1294 | int nid) |
| 1295 | { |
| 1296 | phys_addr_t alloc; |
| 1297 | void *ptr; |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1298 | enum memblock_flags flags = choose_memblock_flags(); |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1299 | |
Grygorii Strashko | 560dca27 | 2014-01-21 15:50:55 -0800 | [diff] [blame] | 1300 | if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n")) |
| 1301 | nid = NUMA_NO_NODE; |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1302 | |
| 1303 | /* |
| 1304 | * Detect any accidental use of these APIs after slab is ready, as at |
| 1305 | * this moment memblock may be deinitialized already and its |
| 1306 | * internal data may be destroyed (after execution of free_all_bootmem) |
| 1307 | */ |
| 1308 | if (WARN_ON_ONCE(slab_is_available())) |
| 1309 | return kzalloc_node(size, GFP_NOWAIT, nid); |
| 1310 | |
| 1311 | if (!align) |
| 1312 | align = SMP_CACHE_BYTES; |
| 1313 | |
Yinghai Lu | f544e14 | 2014-01-29 14:05:52 -0800 | [diff] [blame] | 1314 | if (max_addr > memblock.current_limit) |
| 1315 | max_addr = memblock.current_limit; |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1316 | again: |
| 1317 | alloc = memblock_find_in_range_node(size, align, min_addr, max_addr, |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 1318 | nid, flags); |
Wei Yang | 7d41c03 | 2017-02-22 15:45:07 -0800 | [diff] [blame] | 1319 | if (alloc && !memblock_reserve(alloc, size)) |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1320 | goto done; |
| 1321 | |
| 1322 | if (nid != NUMA_NO_NODE) { |
| 1323 | alloc = memblock_find_in_range_node(size, align, min_addr, |
Tony Luck | fc6daaf | 2015-06-24 16:58:09 -0700 | [diff] [blame] | 1324 | max_addr, NUMA_NO_NODE, |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 1325 | flags); |
Wei Yang | 7d41c03 | 2017-02-22 15:45:07 -0800 | [diff] [blame] | 1326 | if (alloc && !memblock_reserve(alloc, size)) |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1327 | goto done; |
| 1328 | } |
| 1329 | |
| 1330 | if (min_addr) { |
| 1331 | min_addr = 0; |
| 1332 | goto again; |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1333 | } |
| 1334 | |
Tony Luck | a3f5baf | 2015-06-24 16:58:12 -0700 | [diff] [blame] | 1335 | if (flags & MEMBLOCK_MIRROR) { |
| 1336 | flags &= ~MEMBLOCK_MIRROR; |
| 1337 | pr_warn("Could not allocate %pap bytes of mirrored memory\n", |
| 1338 | &size); |
| 1339 | goto again; |
| 1340 | } |
| 1341 | |
| 1342 | return NULL; |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1343 | done: |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1344 | ptr = phys_to_virt(alloc); |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1345 | |
| 1346 | /* |
| 1347 | * The min_count is set to 0 so that bootmem allocated blocks |
| 1348 | * are never reported as leaks. This is because many of these blocks |
| 1349 | * are only referred via the physical address which is not |
| 1350 | * looked up by kmemleak. |
| 1351 | */ |
| 1352 | kmemleak_alloc(ptr, size, 0, 0); |
| 1353 | |
| 1354 | return ptr; |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | /** |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1358 | * memblock_virt_alloc_try_nid_raw - allocate boot memory block without zeroing |
| 1359 | * memory and without panicking |
| 1360 | * @size: size of memory block to be allocated in bytes |
| 1361 | * @align: alignment of the region and block's size |
| 1362 | * @min_addr: the lower bound of the memory region from where the allocation |
| 1363 | * is preferred (phys address) |
| 1364 | * @max_addr: the upper bound of the memory region from where the allocation |
| 1365 | * is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to |
| 1366 | * allocate only from memory limited by memblock.current_limit value |
| 1367 | * @nid: nid of the free area to find, %NUMA_NO_NODE for any node |
| 1368 | * |
| 1369 | * Public function, provides additional debug information (including caller |
| 1370 | * info), if enabled. Does not zero allocated memory, does not panic if request |
| 1371 | * cannot be satisfied. |
| 1372 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1373 | * Return: |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1374 | * Virtual address of allocated memory block on success, NULL on failure. |
| 1375 | */ |
| 1376 | void * __init memblock_virt_alloc_try_nid_raw( |
| 1377 | phys_addr_t size, phys_addr_t align, |
| 1378 | phys_addr_t min_addr, phys_addr_t max_addr, |
| 1379 | int nid) |
| 1380 | { |
| 1381 | void *ptr; |
| 1382 | |
| 1383 | memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx %pF\n", |
| 1384 | __func__, (u64)size, (u64)align, nid, (u64)min_addr, |
| 1385 | (u64)max_addr, (void *)_RET_IP_); |
| 1386 | |
| 1387 | ptr = memblock_virt_alloc_internal(size, align, |
| 1388 | min_addr, max_addr, nid); |
| 1389 | #ifdef CONFIG_DEBUG_VM |
| 1390 | if (ptr && size > 0) |
Pavel Tatashin | f165b37 | 2018-04-05 16:22:47 -0700 | [diff] [blame] | 1391 | memset(ptr, PAGE_POISON_PATTERN, size); |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1392 | #endif |
| 1393 | return ptr; |
| 1394 | } |
| 1395 | |
| 1396 | /** |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1397 | * memblock_virt_alloc_try_nid_nopanic - allocate boot memory block |
| 1398 | * @size: size of memory block to be allocated in bytes |
| 1399 | * @align: alignment of the region and block's size |
| 1400 | * @min_addr: the lower bound of the memory region from where the allocation |
| 1401 | * is preferred (phys address) |
| 1402 | * @max_addr: the upper bound of the memory region from where the allocation |
| 1403 | * is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to |
| 1404 | * allocate only from memory limited by memblock.current_limit value |
| 1405 | * @nid: nid of the free area to find, %NUMA_NO_NODE for any node |
| 1406 | * |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1407 | * Public function, provides additional debug information (including caller |
| 1408 | * info), if enabled. This function zeroes the allocated memory. |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1409 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1410 | * Return: |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1411 | * Virtual address of allocated memory block on success, NULL on failure. |
| 1412 | */ |
| 1413 | void * __init memblock_virt_alloc_try_nid_nopanic( |
| 1414 | phys_addr_t size, phys_addr_t align, |
| 1415 | phys_addr_t min_addr, phys_addr_t max_addr, |
| 1416 | int nid) |
| 1417 | { |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1418 | void *ptr; |
| 1419 | |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1420 | memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx %pF\n", |
| 1421 | __func__, (u64)size, (u64)align, nid, (u64)min_addr, |
| 1422 | (u64)max_addr, (void *)_RET_IP_); |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1423 | |
| 1424 | ptr = memblock_virt_alloc_internal(size, align, |
| 1425 | min_addr, max_addr, nid); |
| 1426 | if (ptr) |
| 1427 | memset(ptr, 0, size); |
| 1428 | return ptr; |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | /** |
| 1432 | * memblock_virt_alloc_try_nid - allocate boot memory block with panicking |
| 1433 | * @size: size of memory block to be allocated in bytes |
| 1434 | * @align: alignment of the region and block's size |
| 1435 | * @min_addr: the lower bound of the memory region from where the allocation |
| 1436 | * is preferred (phys address) |
| 1437 | * @max_addr: the upper bound of the memory region from where the allocation |
| 1438 | * is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to |
| 1439 | * allocate only from memory limited by memblock.current_limit value |
| 1440 | * @nid: nid of the free area to find, %NUMA_NO_NODE for any node |
| 1441 | * |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1442 | * Public panicking version of memblock_virt_alloc_try_nid_nopanic() |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1443 | * which provides debug information (including caller info), if enabled, |
| 1444 | * and panics if the request can not be satisfied. |
| 1445 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1446 | * Return: |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1447 | * Virtual address of allocated memory block on success, NULL on failure. |
| 1448 | */ |
| 1449 | void * __init memblock_virt_alloc_try_nid( |
| 1450 | phys_addr_t size, phys_addr_t align, |
| 1451 | phys_addr_t min_addr, phys_addr_t max_addr, |
| 1452 | int nid) |
| 1453 | { |
| 1454 | void *ptr; |
| 1455 | |
| 1456 | memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx %pF\n", |
| 1457 | __func__, (u64)size, (u64)align, nid, (u64)min_addr, |
| 1458 | (u64)max_addr, (void *)_RET_IP_); |
| 1459 | ptr = memblock_virt_alloc_internal(size, align, |
| 1460 | min_addr, max_addr, nid); |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1461 | if (ptr) { |
| 1462 | memset(ptr, 0, size); |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1463 | return ptr; |
Pavel Tatashin | ea1f5f3 | 2017-11-15 17:36:27 -0800 | [diff] [blame] | 1464 | } |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1465 | |
| 1466 | panic("%s: Failed to allocate %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx\n", |
| 1467 | __func__, (u64)size, (u64)align, nid, (u64)min_addr, |
| 1468 | (u64)max_addr); |
| 1469 | return NULL; |
| 1470 | } |
| 1471 | |
| 1472 | /** |
| 1473 | * __memblock_free_early - free boot memory block |
| 1474 | * @base: phys starting address of the boot memory block |
| 1475 | * @size: size of the boot memory block in bytes |
| 1476 | * |
| 1477 | * Free boot memory block previously allocated by memblock_virt_alloc_xx() API. |
| 1478 | * The freeing memory will not be released to the buddy allocator. |
| 1479 | */ |
| 1480 | void __init __memblock_free_early(phys_addr_t base, phys_addr_t size) |
| 1481 | { |
| 1482 | memblock_dbg("%s: [%#016llx-%#016llx] %pF\n", |
| 1483 | __func__, (u64)base, (u64)base + size - 1, |
| 1484 | (void *)_RET_IP_); |
Catalin Marinas | 9099dae | 2016-10-11 13:55:11 -0700 | [diff] [blame] | 1485 | kmemleak_free_part_phys(base, size); |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1486 | memblock_remove_range(&memblock.reserved, base, size); |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1487 | } |
| 1488 | |
Mike Rapoport | 48a833c | 2018-06-30 17:55:03 +0300 | [diff] [blame] | 1489 | /** |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1490 | * __memblock_free_late - free bootmem block pages directly to buddy allocator |
Mike Rapoport | 48a833c | 2018-06-30 17:55:03 +0300 | [diff] [blame] | 1491 | * @base: phys starting address of the boot memory block |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1492 | * @size: size of the boot memory block in bytes |
| 1493 | * |
| 1494 | * This is only useful when the bootmem allocator has already been torn |
| 1495 | * down, but we are still initializing the system. Pages are released directly |
| 1496 | * to the buddy allocator, no bootmem metadata is updated because it is gone. |
| 1497 | */ |
| 1498 | void __init __memblock_free_late(phys_addr_t base, phys_addr_t size) |
| 1499 | { |
| 1500 | u64 cursor, end; |
| 1501 | |
| 1502 | memblock_dbg("%s: [%#016llx-%#016llx] %pF\n", |
| 1503 | __func__, (u64)base, (u64)base + size - 1, |
| 1504 | (void *)_RET_IP_); |
Catalin Marinas | 9099dae | 2016-10-11 13:55:11 -0700 | [diff] [blame] | 1505 | kmemleak_free_part_phys(base, size); |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1506 | cursor = PFN_UP(base); |
| 1507 | end = PFN_DOWN(base + size); |
| 1508 | |
| 1509 | for (; cursor < end; cursor++) { |
Mel Gorman | d70ddd7 | 2015-06-30 14:56:52 -0700 | [diff] [blame] | 1510 | __free_pages_bootmem(pfn_to_page(cursor), cursor, 0); |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 1511 | totalram_pages++; |
| 1512 | } |
| 1513 | } |
Benjamin Herrenschmidt | 9d1e249 | 2010-07-06 15:39:17 -0700 | [diff] [blame] | 1514 | |
| 1515 | /* |
| 1516 | * Remaining API functions |
| 1517 | */ |
| 1518 | |
David Gibson | 1f1ffb8a | 2016-02-05 15:36:19 -0800 | [diff] [blame] | 1519 | phys_addr_t __init_memblock memblock_phys_mem_size(void) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1520 | { |
Tejun Heo | 1440c4e | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 1521 | return memblock.memory.total_size; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1522 | } |
| 1523 | |
Srikar Dronamraju | 8907de5 | 2016-10-07 16:59:18 -0700 | [diff] [blame] | 1524 | phys_addr_t __init_memblock memblock_reserved_size(void) |
| 1525 | { |
| 1526 | return memblock.reserved.total_size; |
| 1527 | } |
| 1528 | |
Yinghai Lu | 595ad9a | 2013-01-24 12:20:09 -0800 | [diff] [blame] | 1529 | phys_addr_t __init memblock_mem_size(unsigned long limit_pfn) |
| 1530 | { |
| 1531 | unsigned long pages = 0; |
| 1532 | struct memblock_region *r; |
| 1533 | unsigned long start_pfn, end_pfn; |
| 1534 | |
| 1535 | for_each_memblock(memory, r) { |
| 1536 | start_pfn = memblock_region_memory_base_pfn(r); |
| 1537 | end_pfn = memblock_region_memory_end_pfn(r); |
| 1538 | start_pfn = min_t(unsigned long, start_pfn, limit_pfn); |
| 1539 | end_pfn = min_t(unsigned long, end_pfn, limit_pfn); |
| 1540 | pages += end_pfn - start_pfn; |
| 1541 | } |
| 1542 | |
Fabian Frederick | 1676323 | 2014-04-07 15:37:53 -0700 | [diff] [blame] | 1543 | return PFN_PHYS(pages); |
Yinghai Lu | 595ad9a | 2013-01-24 12:20:09 -0800 | [diff] [blame] | 1544 | } |
| 1545 | |
Sam Ravnborg | 0a93ebe | 2011-10-31 17:08:16 -0700 | [diff] [blame] | 1546 | /* lowest address */ |
| 1547 | phys_addr_t __init_memblock memblock_start_of_DRAM(void) |
| 1548 | { |
| 1549 | return memblock.memory.regions[0].base; |
| 1550 | } |
| 1551 | |
Yinghai Lu | 10d0643 | 2010-07-28 15:43:02 +1000 | [diff] [blame] | 1552 | phys_addr_t __init_memblock memblock_end_of_DRAM(void) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1553 | { |
| 1554 | int idx = memblock.memory.cnt - 1; |
| 1555 | |
Benjamin Herrenschmidt | e3239ff | 2010-08-04 14:06:41 +1000 | [diff] [blame] | 1556 | return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1557 | } |
| 1558 | |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1559 | static phys_addr_t __init_memblock __find_max_addr(phys_addr_t limit) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1560 | { |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1561 | phys_addr_t max_addr = PHYS_ADDR_MAX; |
Emil Medve | 136199f | 2014-04-07 15:37:52 -0700 | [diff] [blame] | 1562 | struct memblock_region *r; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1563 | |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1564 | /* |
| 1565 | * translate the memory @limit size into the max address within one of |
| 1566 | * the memory memblock regions, if the @limit exceeds the total size |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1567 | * of those regions, max_addr will keep original value PHYS_ADDR_MAX |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1568 | */ |
Emil Medve | 136199f | 2014-04-07 15:37:52 -0700 | [diff] [blame] | 1569 | for_each_memblock(memory, r) { |
Tejun Heo | c0ce8fe | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1570 | if (limit <= r->size) { |
| 1571 | max_addr = r->base + limit; |
| 1572 | break; |
| 1573 | } |
| 1574 | limit -= r->size; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1575 | } |
| 1576 | |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1577 | return max_addr; |
| 1578 | } |
| 1579 | |
| 1580 | void __init memblock_enforce_memory_limit(phys_addr_t limit) |
| 1581 | { |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1582 | phys_addr_t max_addr = PHYS_ADDR_MAX; |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1583 | |
| 1584 | if (!limit) |
| 1585 | return; |
| 1586 | |
| 1587 | max_addr = __find_max_addr(limit); |
| 1588 | |
| 1589 | /* @limit exceeds the total size of the memory, do nothing */ |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1590 | if (max_addr == PHYS_ADDR_MAX) |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1591 | return; |
| 1592 | |
Tejun Heo | c0ce8fe | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1593 | /* truncate both memory and reserved regions */ |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1594 | memblock_remove_range(&memblock.memory, max_addr, |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1595 | PHYS_ADDR_MAX); |
Philipp Hachtmann | f1af9d3 | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1596 | memblock_remove_range(&memblock.reserved, max_addr, |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1597 | PHYS_ADDR_MAX); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1598 | } |
| 1599 | |
AKASHI Takahiro | c9ca9b4 | 2017-04-03 11:23:55 +0900 | [diff] [blame] | 1600 | void __init memblock_cap_memory_range(phys_addr_t base, phys_addr_t size) |
| 1601 | { |
| 1602 | int start_rgn, end_rgn; |
| 1603 | int i, ret; |
| 1604 | |
| 1605 | if (!size) |
| 1606 | return; |
| 1607 | |
| 1608 | ret = memblock_isolate_range(&memblock.memory, base, size, |
| 1609 | &start_rgn, &end_rgn); |
| 1610 | if (ret) |
| 1611 | return; |
| 1612 | |
| 1613 | /* remove all the MAP regions */ |
| 1614 | for (i = memblock.memory.cnt - 1; i >= end_rgn; i--) |
| 1615 | if (!memblock_is_nomap(&memblock.memory.regions[i])) |
| 1616 | memblock_remove_region(&memblock.memory, i); |
| 1617 | |
| 1618 | for (i = start_rgn - 1; i >= 0; i--) |
| 1619 | if (!memblock_is_nomap(&memblock.memory.regions[i])) |
| 1620 | memblock_remove_region(&memblock.memory, i); |
| 1621 | |
| 1622 | /* truncate the reserved regions */ |
| 1623 | memblock_remove_range(&memblock.reserved, 0, base); |
| 1624 | memblock_remove_range(&memblock.reserved, |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1625 | base + size, PHYS_ADDR_MAX); |
AKASHI Takahiro | c9ca9b4 | 2017-04-03 11:23:55 +0900 | [diff] [blame] | 1626 | } |
| 1627 | |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1628 | void __init memblock_mem_limit_remove_map(phys_addr_t limit) |
| 1629 | { |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1630 | phys_addr_t max_addr; |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1631 | |
| 1632 | if (!limit) |
| 1633 | return; |
| 1634 | |
| 1635 | max_addr = __find_max_addr(limit); |
| 1636 | |
| 1637 | /* @limit exceeds the total size of the memory, do nothing */ |
Stefan Agner | 1c4bc43 | 2018-06-07 17:06:15 -0700 | [diff] [blame] | 1638 | if (max_addr == PHYS_ADDR_MAX) |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1639 | return; |
| 1640 | |
AKASHI Takahiro | c9ca9b4 | 2017-04-03 11:23:55 +0900 | [diff] [blame] | 1641 | memblock_cap_memory_range(0, max_addr); |
Dennis Chen | a571d4e | 2016-07-28 15:48:26 -0700 | [diff] [blame] | 1642 | } |
| 1643 | |
Yinghai Lu | cd79481 | 2010-10-11 12:34:09 -0700 | [diff] [blame] | 1644 | static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr) |
Benjamin Herrenschmidt | 72d4b0b | 2010-08-04 14:38:47 +1000 | [diff] [blame] | 1645 | { |
| 1646 | unsigned int left = 0, right = type->cnt; |
| 1647 | |
| 1648 | do { |
| 1649 | unsigned int mid = (right + left) / 2; |
| 1650 | |
| 1651 | if (addr < type->regions[mid].base) |
| 1652 | right = mid; |
| 1653 | else if (addr >= (type->regions[mid].base + |
| 1654 | type->regions[mid].size)) |
| 1655 | left = mid + 1; |
| 1656 | else |
| 1657 | return mid; |
| 1658 | } while (left < right); |
| 1659 | return -1; |
| 1660 | } |
| 1661 | |
Yaowei Bai | b4ad0c7 | 2016-01-14 15:18:54 -0800 | [diff] [blame] | 1662 | bool __init memblock_is_reserved(phys_addr_t addr) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1663 | { |
Benjamin Herrenschmidt | 72d4b0b | 2010-08-04 14:38:47 +1000 | [diff] [blame] | 1664 | return memblock_search(&memblock.reserved, addr) != -1; |
| 1665 | } |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1666 | |
Yaowei Bai | b4ad0c7 | 2016-01-14 15:18:54 -0800 | [diff] [blame] | 1667 | bool __init_memblock memblock_is_memory(phys_addr_t addr) |
Benjamin Herrenschmidt | 72d4b0b | 2010-08-04 14:38:47 +1000 | [diff] [blame] | 1668 | { |
| 1669 | return memblock_search(&memblock.memory, addr) != -1; |
| 1670 | } |
| 1671 | |
Yaowei Bai | 937f0c2 | 2018-02-06 15:41:18 -0800 | [diff] [blame] | 1672 | bool __init_memblock memblock_is_map_memory(phys_addr_t addr) |
Ard Biesheuvel | bf3d3cc | 2015-11-30 13:28:15 +0100 | [diff] [blame] | 1673 | { |
| 1674 | int i = memblock_search(&memblock.memory, addr); |
| 1675 | |
| 1676 | if (i == -1) |
| 1677 | return false; |
| 1678 | return !memblock_is_nomap(&memblock.memory.regions[i]); |
| 1679 | } |
| 1680 | |
Yinghai Lu | e76b63f | 2013-09-11 14:22:17 -0700 | [diff] [blame] | 1681 | #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP |
| 1682 | int __init_memblock memblock_search_pfn_nid(unsigned long pfn, |
| 1683 | unsigned long *start_pfn, unsigned long *end_pfn) |
| 1684 | { |
| 1685 | struct memblock_type *type = &memblock.memory; |
Fabian Frederick | 1676323 | 2014-04-07 15:37:53 -0700 | [diff] [blame] | 1686 | int mid = memblock_search(type, PFN_PHYS(pfn)); |
Yinghai Lu | e76b63f | 2013-09-11 14:22:17 -0700 | [diff] [blame] | 1687 | |
| 1688 | if (mid == -1) |
| 1689 | return -1; |
| 1690 | |
Fabian Frederick | f7e2f7e | 2014-06-04 16:07:51 -0700 | [diff] [blame] | 1691 | *start_pfn = PFN_DOWN(type->regions[mid].base); |
| 1692 | *end_pfn = PFN_DOWN(type->regions[mid].base + type->regions[mid].size); |
Yinghai Lu | e76b63f | 2013-09-11 14:22:17 -0700 | [diff] [blame] | 1693 | |
| 1694 | return type->regions[mid].nid; |
| 1695 | } |
| 1696 | #endif |
| 1697 | |
Stephen Boyd | eab3094 | 2012-05-24 00:45:21 -0700 | [diff] [blame] | 1698 | /** |
| 1699 | * memblock_is_region_memory - check if a region is a subset of memory |
| 1700 | * @base: base of region to check |
| 1701 | * @size: size of region to check |
| 1702 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1703 | * Check if the region [@base, @base + @size) is a subset of a memory block. |
Stephen Boyd | eab3094 | 2012-05-24 00:45:21 -0700 | [diff] [blame] | 1704 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1705 | * Return: |
Stephen Boyd | eab3094 | 2012-05-24 00:45:21 -0700 | [diff] [blame] | 1706 | * 0 if false, non-zero if true |
| 1707 | */ |
Yaowei Bai | 937f0c2 | 2018-02-06 15:41:18 -0800 | [diff] [blame] | 1708 | bool __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size) |
Benjamin Herrenschmidt | 72d4b0b | 2010-08-04 14:38:47 +1000 | [diff] [blame] | 1709 | { |
Tomi Valkeinen | abb6527 | 2011-01-20 14:44:20 -0800 | [diff] [blame] | 1710 | int idx = memblock_search(&memblock.memory, base); |
Tejun Heo | eb18f1b | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1711 | phys_addr_t end = base + memblock_cap_size(base, &size); |
Benjamin Herrenschmidt | 72d4b0b | 2010-08-04 14:38:47 +1000 | [diff] [blame] | 1712 | |
| 1713 | if (idx == -1) |
Yaowei Bai | 937f0c2 | 2018-02-06 15:41:18 -0800 | [diff] [blame] | 1714 | return false; |
Wei Yang | ef415ef | 2017-02-22 15:45:04 -0800 | [diff] [blame] | 1715 | return (memblock.memory.regions[idx].base + |
Tejun Heo | eb18f1b | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1716 | memblock.memory.regions[idx].size) >= end; |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1717 | } |
| 1718 | |
Stephen Boyd | eab3094 | 2012-05-24 00:45:21 -0700 | [diff] [blame] | 1719 | /** |
| 1720 | * memblock_is_region_reserved - check if a region intersects reserved memory |
| 1721 | * @base: base of region to check |
| 1722 | * @size: size of region to check |
| 1723 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1724 | * Check if the region [@base, @base + @size) intersects a reserved |
| 1725 | * memory block. |
Stephen Boyd | eab3094 | 2012-05-24 00:45:21 -0700 | [diff] [blame] | 1726 | * |
Mike Rapoport | 47cec44 | 2018-06-30 17:55:02 +0300 | [diff] [blame] | 1727 | * Return: |
Tang Chen | c5c5c9d | 2015-09-08 15:02:00 -0700 | [diff] [blame] | 1728 | * True if they intersect, false if not. |
Stephen Boyd | eab3094 | 2012-05-24 00:45:21 -0700 | [diff] [blame] | 1729 | */ |
Tang Chen | c5c5c9d | 2015-09-08 15:02:00 -0700 | [diff] [blame] | 1730 | bool __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size) |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1731 | { |
Tejun Heo | eb18f1b | 2011-12-08 10:22:07 -0800 | [diff] [blame] | 1732 | memblock_cap_size(base, &size); |
Tang Chen | c5c5c9d | 2015-09-08 15:02:00 -0700 | [diff] [blame] | 1733 | return memblock_overlaps_region(&memblock.reserved, base, size); |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 1734 | } |
| 1735 | |
Yinghai Lu | 6ede1fd | 2012-10-22 16:35:18 -0700 | [diff] [blame] | 1736 | void __init_memblock memblock_trim_memory(phys_addr_t align) |
| 1737 | { |
Yinghai Lu | 6ede1fd | 2012-10-22 16:35:18 -0700 | [diff] [blame] | 1738 | phys_addr_t start, end, orig_start, orig_end; |
Emil Medve | 136199f | 2014-04-07 15:37:52 -0700 | [diff] [blame] | 1739 | struct memblock_region *r; |
Yinghai Lu | 6ede1fd | 2012-10-22 16:35:18 -0700 | [diff] [blame] | 1740 | |
Emil Medve | 136199f | 2014-04-07 15:37:52 -0700 | [diff] [blame] | 1741 | for_each_memblock(memory, r) { |
| 1742 | orig_start = r->base; |
| 1743 | orig_end = r->base + r->size; |
Yinghai Lu | 6ede1fd | 2012-10-22 16:35:18 -0700 | [diff] [blame] | 1744 | start = round_up(orig_start, align); |
| 1745 | end = round_down(orig_end, align); |
| 1746 | |
| 1747 | if (start == orig_start && end == orig_end) |
| 1748 | continue; |
| 1749 | |
| 1750 | if (start < end) { |
Emil Medve | 136199f | 2014-04-07 15:37:52 -0700 | [diff] [blame] | 1751 | r->base = start; |
| 1752 | r->size = end - start; |
Yinghai Lu | 6ede1fd | 2012-10-22 16:35:18 -0700 | [diff] [blame] | 1753 | } else { |
Emil Medve | 136199f | 2014-04-07 15:37:52 -0700 | [diff] [blame] | 1754 | memblock_remove_region(&memblock.memory, |
| 1755 | r - memblock.memory.regions); |
| 1756 | r--; |
Yinghai Lu | 6ede1fd | 2012-10-22 16:35:18 -0700 | [diff] [blame] | 1757 | } |
| 1758 | } |
| 1759 | } |
Benjamin Herrenschmidt | e63075a | 2010-07-06 15:39:01 -0700 | [diff] [blame] | 1760 | |
Yinghai Lu | 3661ca6 | 2010-09-15 13:05:29 -0700 | [diff] [blame] | 1761 | void __init_memblock memblock_set_current_limit(phys_addr_t limit) |
Benjamin Herrenschmidt | e63075a | 2010-07-06 15:39:01 -0700 | [diff] [blame] | 1762 | { |
| 1763 | memblock.current_limit = limit; |
| 1764 | } |
| 1765 | |
Laura Abbott | fec5101 | 2014-02-27 01:23:43 +0100 | [diff] [blame] | 1766 | phys_addr_t __init_memblock memblock_get_current_limit(void) |
| 1767 | { |
| 1768 | return memblock.current_limit; |
| 1769 | } |
| 1770 | |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 1771 | static void __init_memblock memblock_dump(struct memblock_type *type) |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1772 | { |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 1773 | phys_addr_t base, end, size; |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1774 | enum memblock_flags flags; |
Alexander Kuleshov | 8c9c170 | 2016-01-14 15:20:42 -0800 | [diff] [blame] | 1775 | int idx; |
| 1776 | struct memblock_region *rgn; |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1777 | |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 1778 | pr_info(" %s.cnt = 0x%lx\n", type->name, type->cnt); |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1779 | |
Gioh Kim | 66e8b43 | 2017-11-15 17:33:42 -0800 | [diff] [blame] | 1780 | for_each_memblock_type(idx, type, rgn) { |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1781 | char nid_buf[32] = ""; |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1782 | |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1783 | base = rgn->base; |
| 1784 | size = rgn->size; |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 1785 | end = base + size - 1; |
Tang Chen | 66a2075 | 2014-01-21 15:49:20 -0800 | [diff] [blame] | 1786 | flags = rgn->flags; |
Tejun Heo | 7c0caeb | 2011-07-14 11:43:42 +0200 | [diff] [blame] | 1787 | #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP |
| 1788 | if (memblock_get_region_node(rgn) != MAX_NUMNODES) |
| 1789 | snprintf(nid_buf, sizeof(nid_buf), " on node %d", |
| 1790 | memblock_get_region_node(rgn)); |
| 1791 | #endif |
Mike Rapoport | e1720fe | 2018-06-30 17:55:01 +0300 | [diff] [blame] | 1792 | pr_info(" %s[%#x]\t[%pa-%pa], %pa bytes%s flags: %#x\n", |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 1793 | type->name, idx, &base, &end, &size, nid_buf, flags); |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1794 | } |
| 1795 | } |
| 1796 | |
Tejun Heo | 4ff7b82 | 2011-12-08 10:22:06 -0800 | [diff] [blame] | 1797 | void __init_memblock __memblock_dump_all(void) |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1798 | { |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1799 | pr_info("MEMBLOCK configuration:\n"); |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 1800 | pr_info(" memory size = %pa reserved size = %pa\n", |
| 1801 | &memblock.memory.total_size, |
| 1802 | &memblock.reserved.total_size); |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1803 | |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 1804 | memblock_dump(&memblock.memory); |
| 1805 | memblock_dump(&memblock.reserved); |
Heiko Carstens | 409efd4 | 2017-02-24 14:55:56 -0800 | [diff] [blame] | 1806 | #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP |
Heiko Carstens | 0262d9c | 2017-02-24 14:55:59 -0800 | [diff] [blame] | 1807 | memblock_dump(&memblock.physmem); |
Heiko Carstens | 409efd4 | 2017-02-24 14:55:56 -0800 | [diff] [blame] | 1808 | #endif |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1809 | } |
| 1810 | |
Tejun Heo | 1aadc05 | 2011-12-08 10:22:08 -0800 | [diff] [blame] | 1811 | void __init memblock_allow_resize(void) |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1812 | { |
Benjamin Herrenschmidt | 142b45a | 2010-07-06 15:39:13 -0700 | [diff] [blame] | 1813 | memblock_can_resize = 1; |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1814 | } |
| 1815 | |
Benjamin Herrenschmidt | 6ed311b | 2010-07-12 14:36:48 +1000 | [diff] [blame] | 1816 | static int __init early_memblock(char *p) |
| 1817 | { |
| 1818 | if (p && strstr(p, "debug")) |
| 1819 | memblock_debug = 1; |
| 1820 | return 0; |
| 1821 | } |
| 1822 | early_param("memblock", early_memblock); |
| 1823 | |
Tejun Heo | c378ddd | 2011-07-14 11:46:03 +0200 | [diff] [blame] | 1824 | #if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK) |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 1825 | |
| 1826 | static int memblock_debug_show(struct seq_file *m, void *private) |
| 1827 | { |
| 1828 | struct memblock_type *type = m->private; |
| 1829 | struct memblock_region *reg; |
| 1830 | int i; |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 1831 | phys_addr_t end; |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 1832 | |
| 1833 | for (i = 0; i < type->cnt; i++) { |
| 1834 | reg = &type->regions[i]; |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 1835 | end = reg->base + reg->size - 1; |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 1836 | |
Miles Chen | 5d63f81 | 2017-02-22 15:46:42 -0800 | [diff] [blame] | 1837 | seq_printf(m, "%4d: ", i); |
| 1838 | seq_printf(m, "%pa..%pa\n", ®->base, &end); |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 1839 | } |
| 1840 | return 0; |
| 1841 | } |
Andy Shevchenko | 5ad3509 | 2018-04-05 16:23:16 -0700 | [diff] [blame] | 1842 | DEFINE_SHOW_ATTRIBUTE(memblock_debug); |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 1843 | |
| 1844 | static int __init memblock_init_debugfs(void) |
| 1845 | { |
| 1846 | struct dentry *root = debugfs_create_dir("memblock", NULL); |
| 1847 | if (!root) |
| 1848 | return -ENXIO; |
Joe Perches | 0825a6f | 2018-06-14 15:27:58 -0700 | [diff] [blame] | 1849 | debugfs_create_file("memory", 0444, root, |
| 1850 | &memblock.memory, &memblock_debug_fops); |
| 1851 | debugfs_create_file("reserved", 0444, root, |
| 1852 | &memblock.reserved, &memblock_debug_fops); |
Philipp Hachtmann | 70210ed | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1853 | #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP |
Joe Perches | 0825a6f | 2018-06-14 15:27:58 -0700 | [diff] [blame] | 1854 | debugfs_create_file("physmem", 0444, root, |
| 1855 | &memblock.physmem, &memblock_debug_fops); |
Philipp Hachtmann | 70210ed | 2014-01-29 18:16:01 +0100 | [diff] [blame] | 1856 | #endif |
Benjamin Herrenschmidt | 6d03b88 | 2010-07-06 15:39:19 -0700 | [diff] [blame] | 1857 | |
| 1858 | return 0; |
| 1859 | } |
| 1860 | __initcall(memblock_init_debugfs); |
| 1861 | |
| 1862 | #endif /* CONFIG_DEBUG_FS */ |