blob: 1c51a3fc45ef069f4367032a609eb4c0a1e2d1c7 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf5d009952016-03-04 01:10:04 +01002/*
3 * EFI application memory management
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf5d009952016-03-04 01:10:04 +01006 */
7
Alexander Graf5d009952016-03-04 01:10:04 +01008#include <common.h>
9#include <efi_loader.h>
Simon Glass67c4e9f2019-11-14 12:57:45 -070010#include <init.h>
Simon Glassbdecaeb2018-03-08 21:53:27 +010011#include <malloc.h>
Alexander Graf282a06c2018-06-18 17:23:15 +020012#include <mapmem.h>
Alexander Graf5d009952016-03-04 01:10:04 +010013#include <watchdog.h>
Simon Glass90526e92020-05-10 11:39:56 -060014#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Simon Glassbdecaeb2018-03-08 21:53:27 +010016#include <linux/list_sort.h>
Alexander Graf7a82c302018-09-17 13:54:33 +020017#include <linux/sizes.h>
Alexander Graf5d009952016-03-04 01:10:04 +010018
19DECLARE_GLOBAL_DATA_PTR;
20
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +010021/* Magic number identifying memory allocated from pool */
22#define EFI_ALLOC_POOL_MAGIC 0x1fe67ddf6491caa2
23
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +020024efi_uintn_t efi_memory_map_key;
25
Alexander Graf5d009952016-03-04 01:10:04 +010026struct efi_mem_list {
27 struct list_head link;
28 struct efi_mem_desc desc;
29};
30
Alexander Graf74c16ac2016-05-27 12:25:03 +020031#define EFI_CARVE_NO_OVERLAP -1
32#define EFI_CARVE_LOOP_AGAIN -2
33#define EFI_CARVE_OVERLAPS_NONRAM -3
34
Alexander Graf5d009952016-03-04 01:10:04 +010035/* This list contains all memory map items */
36LIST_HEAD(efi_mem);
37
Alexander Graf51735ae2016-05-11 18:25:48 +020038#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
39void *efi_bounce_buffer;
40#endif
41
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +010042/**
Heinrich Schuchardt4be077b2019-07-14 12:28:56 +020043 * struct efi_pool_allocation - memory block allocated from pool
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +010044 *
45 * @num_pages: number of pages allocated
46 * @checksum: checksum
Heinrich Schuchardt4be077b2019-07-14 12:28:56 +020047 * @data: allocated pool memory
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +010048 *
Heinrich Schuchardt4be077b2019-07-14 12:28:56 +020049 * U-Boot services each UEFI AllocatePool() request as a separate
50 * (multiple) page allocation. We have to track the number of pages
Stefan Brüns42417bc2016-10-09 22:17:26 +020051 * to be able to free the correct amount later.
Heinrich Schuchardt4be077b2019-07-14 12:28:56 +020052 *
53 * The checksum calculated in function checksum() is used in FreePool() to avoid
54 * freeing memory not allocated by AllocatePool() and duplicate freeing.
55 *
Stefan Brüns42417bc2016-10-09 22:17:26 +020056 * EFI requires 8 byte alignment for pool allocations, so we can
Heinrich Schuchardt4be077b2019-07-14 12:28:56 +020057 * prepend each allocation with these header fields.
Stefan Brüns42417bc2016-10-09 22:17:26 +020058 */
59struct efi_pool_allocation {
60 u64 num_pages;
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +010061 u64 checksum;
Rob Clark946160f2017-09-13 18:05:36 -040062 char data[] __aligned(ARCH_DMA_MINALIGN);
Stefan Brüns42417bc2016-10-09 22:17:26 +020063};
64
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +010065/**
66 * checksum() - calculate checksum for memory allocated from pool
67 *
68 * @alloc: allocation header
69 * Return: checksum, always non-zero
70 */
71static u64 checksum(struct efi_pool_allocation *alloc)
72{
73 u64 addr = (uintptr_t)alloc;
74 u64 ret = (addr >> 32) ^ (addr << 32) ^ alloc->num_pages ^
75 EFI_ALLOC_POOL_MAGIC;
76 if (!ret)
77 ++ret;
78 return ret;
79}
80
Stefan Brüns42417bc2016-10-09 22:17:26 +020081/*
Alexander Graf38ce65e2016-03-30 16:38:29 +020082 * Sorts the memory list from highest address to lowest address
83 *
84 * When allocating memory we should always start from the highest
85 * address chunk, so sort the memory list such that the first list
86 * iterator gets the highest address and goes lower from there.
87 */
88static int efi_mem_cmp(void *priv, struct list_head *a, struct list_head *b)
89{
90 struct efi_mem_list *mema = list_entry(a, struct efi_mem_list, link);
91 struct efi_mem_list *memb = list_entry(b, struct efi_mem_list, link);
92
93 if (mema->desc.physical_start == memb->desc.physical_start)
94 return 0;
95 else if (mema->desc.physical_start < memb->desc.physical_start)
96 return 1;
97 else
98 return -1;
99}
100
Alexander Graf7b056672018-09-16 17:05:29 +0200101static uint64_t desc_get_end(struct efi_mem_desc *desc)
102{
103 return desc->physical_start + (desc->num_pages << EFI_PAGE_SHIFT);
104}
105
Alexander Graf38ce65e2016-03-30 16:38:29 +0200106static void efi_mem_sort(void)
107{
Alexander Graf7b056672018-09-16 17:05:29 +0200108 struct list_head *lhandle;
109 struct efi_mem_list *prevmem = NULL;
110 bool merge_again = true;
111
Alexander Graf38ce65e2016-03-30 16:38:29 +0200112 list_sort(NULL, &efi_mem, efi_mem_cmp);
Alexander Graf7b056672018-09-16 17:05:29 +0200113
114 /* Now merge entries that can be merged */
115 while (merge_again) {
116 merge_again = false;
117 list_for_each(lhandle, &efi_mem) {
118 struct efi_mem_list *lmem;
119 struct efi_mem_desc *prev = &prevmem->desc;
120 struct efi_mem_desc *cur;
121 uint64_t pages;
122
123 lmem = list_entry(lhandle, struct efi_mem_list, link);
124 if (!prevmem) {
125 prevmem = lmem;
126 continue;
127 }
128
129 cur = &lmem->desc;
130
131 if ((desc_get_end(cur) == prev->physical_start) &&
132 (prev->type == cur->type) &&
133 (prev->attribute == cur->attribute)) {
134 /* There is an existing map before, reuse it */
135 pages = cur->num_pages;
136 prev->num_pages += pages;
137 prev->physical_start -= pages << EFI_PAGE_SHIFT;
138 prev->virtual_start -= pages << EFI_PAGE_SHIFT;
139 list_del(&lmem->link);
140 free(lmem);
141
142 merge_again = true;
143 break;
144 }
145
146 prevmem = lmem;
147 }
148 }
Alexander Graf38ce65e2016-03-30 16:38:29 +0200149}
150
Heinrich Schuchardt32826142018-05-27 16:45:09 +0200151/** efi_mem_carve_out - unmap memory region
Alexander Graf5d009952016-03-04 01:10:04 +0100152 *
Heinrich Schuchardt32826142018-05-27 16:45:09 +0200153 * @map: memory map
154 * @carve_desc: memory region to unmap
155 * @overlap_only_ram: the carved out region may only overlap RAM
156 * Return Value: the number of overlapping pages which have been
157 * removed from the map,
158 * EFI_CARVE_NO_OVERLAP, if the regions don't overlap,
159 * EFI_CARVE_OVERLAPS_NONRAM, if the carve and map overlap,
160 * and the map contains anything but free ram
161 * (only when overlap_only_ram is true),
162 * EFI_CARVE_LOOP_AGAIN, if the mapping list should be
163 * traversed again, as it has been altered.
164 *
165 * Unmaps all memory occupied by the carve_desc region from the list entry
166 * pointed to by map.
Stefan Brüns852efbf2016-10-01 23:32:23 +0200167 *
168 * In case of EFI_CARVE_OVERLAPS_NONRAM it is the callers responsibility
Heinrich Schuchardt32826142018-05-27 16:45:09 +0200169 * to re-add the already carved out pages to the mapping.
Alexander Graf5d009952016-03-04 01:10:04 +0100170 */
Heinrich Schuchardt32826142018-05-27 16:45:09 +0200171static s64 efi_mem_carve_out(struct efi_mem_list *map,
Alexander Graf5d009952016-03-04 01:10:04 +0100172 struct efi_mem_desc *carve_desc,
173 bool overlap_only_ram)
174{
175 struct efi_mem_list *newmap;
176 struct efi_mem_desc *map_desc = &map->desc;
177 uint64_t map_start = map_desc->physical_start;
178 uint64_t map_end = map_start + (map_desc->num_pages << EFI_PAGE_SHIFT);
179 uint64_t carve_start = carve_desc->physical_start;
180 uint64_t carve_end = carve_start +
181 (carve_desc->num_pages << EFI_PAGE_SHIFT);
182
183 /* check whether we're overlapping */
184 if ((carve_end <= map_start) || (carve_start >= map_end))
Alexander Graf74c16ac2016-05-27 12:25:03 +0200185 return EFI_CARVE_NO_OVERLAP;
Alexander Graf5d009952016-03-04 01:10:04 +0100186
187 /* We're overlapping with non-RAM, warn the caller if desired */
188 if (overlap_only_ram && (map_desc->type != EFI_CONVENTIONAL_MEMORY))
Alexander Graf74c16ac2016-05-27 12:25:03 +0200189 return EFI_CARVE_OVERLAPS_NONRAM;
Alexander Graf5d009952016-03-04 01:10:04 +0100190
191 /* Sanitize carve_start and carve_end to lie within our bounds */
192 carve_start = max(carve_start, map_start);
193 carve_end = min(carve_end, map_end);
194
195 /* Carving at the beginning of our map? Just move it! */
196 if (carve_start == map_start) {
197 if (map_end == carve_end) {
198 /* Full overlap, just remove map */
199 list_del(&map->link);
Stefan Brüns511d0b92016-10-01 23:32:29 +0200200 free(map);
201 } else {
202 map->desc.physical_start = carve_end;
Heinrich Schuchardt9631fa02019-04-11 20:08:54 +0200203 map->desc.virtual_start = carve_end;
Stefan Brüns511d0b92016-10-01 23:32:29 +0200204 map->desc.num_pages = (map_end - carve_end)
205 >> EFI_PAGE_SHIFT;
Alexander Graf5d009952016-03-04 01:10:04 +0100206 }
207
Alexander Graf74c16ac2016-05-27 12:25:03 +0200208 return (carve_end - carve_start) >> EFI_PAGE_SHIFT;
Alexander Graf5d009952016-03-04 01:10:04 +0100209 }
210
211 /*
212 * Overlapping maps, just split the list map at carve_start,
213 * it will get moved or removed in the next iteration.
214 *
215 * [ map_desc |__carve_start__| newmap ]
216 */
217
218 /* Create a new map from [ carve_start ... map_end ] */
219 newmap = calloc(1, sizeof(*newmap));
220 newmap->desc = map->desc;
221 newmap->desc.physical_start = carve_start;
Heinrich Schuchardt9631fa02019-04-11 20:08:54 +0200222 newmap->desc.virtual_start = carve_start;
Alexander Graf5d009952016-03-04 01:10:04 +0100223 newmap->desc.num_pages = (map_end - carve_start) >> EFI_PAGE_SHIFT;
Stefan Brünsb6a95172016-10-01 23:32:28 +0200224 /* Insert before current entry (descending address order) */
225 list_add_tail(&newmap->link, &map->link);
Alexander Graf5d009952016-03-04 01:10:04 +0100226
227 /* Shrink the map to [ map_start ... carve_start ] */
228 map_desc->num_pages = (carve_start - map_start) >> EFI_PAGE_SHIFT;
229
Alexander Graf74c16ac2016-05-27 12:25:03 +0200230 return EFI_CARVE_LOOP_AGAIN;
Alexander Graf5d009952016-03-04 01:10:04 +0100231}
232
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100233/**
Michael Walle714497e2020-05-17 12:29:19 +0200234 * efi_add_memory_map_pg() - add pages to the memory map
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100235 *
236 * @start: start address, must be a multiple of EFI_PAGE_SIZE
237 * @pages: number of pages to add
238 * @memory_type: type of memory added
Maxim Uvarovffbeafe2020-08-28 22:47:41 +0300239 * @overlap_only_ram: region may only overlap RAM
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100240 * Return: status code
241 */
Michael Walle714497e2020-05-17 12:29:19 +0200242static efi_status_t efi_add_memory_map_pg(u64 start, u64 pages,
243 int memory_type,
244 bool overlap_only_ram)
Alexander Graf5d009952016-03-04 01:10:04 +0100245{
246 struct list_head *lhandle;
247 struct efi_mem_list *newlist;
Alexander Graf74c16ac2016-05-27 12:25:03 +0200248 bool carve_again;
249 uint64_t carved_pages = 0;
Heinrich Schuchardte80474a2019-06-04 20:55:12 +0200250 struct efi_event *evt;
Alexander Graf5d009952016-03-04 01:10:04 +0100251
Heinrich Schuchardte301e022019-04-04 21:50:02 +0200252 EFI_PRINT("%s: 0x%llx 0x%llx %d %s\n", __func__,
253 start, pages, memory_type, overlap_only_ram ? "yes" : "no");
Andreas Färberc933ed92016-07-17 06:57:11 +0200254
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +0200255 if (memory_type >= EFI_MAX_MEMORY_TYPE)
256 return EFI_INVALID_PARAMETER;
257
Alexander Graf5d009952016-03-04 01:10:04 +0100258 if (!pages)
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100259 return EFI_SUCCESS;
Alexander Graf5d009952016-03-04 01:10:04 +0100260
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +0200261 ++efi_memory_map_key;
Alexander Graf5d009952016-03-04 01:10:04 +0100262 newlist = calloc(1, sizeof(*newlist));
263 newlist->desc.type = memory_type;
264 newlist->desc.physical_start = start;
265 newlist->desc.virtual_start = start;
266 newlist->desc.num_pages = pages;
267
268 switch (memory_type) {
269 case EFI_RUNTIME_SERVICES_CODE:
270 case EFI_RUNTIME_SERVICES_DATA:
Eugeniu Rosca9b891832018-07-14 22:53:30 +0200271 newlist->desc.attribute = EFI_MEMORY_WB | EFI_MEMORY_RUNTIME;
Alexander Graf5d009952016-03-04 01:10:04 +0100272 break;
273 case EFI_MMAP_IO:
Eugeniu Rosca9b891832018-07-14 22:53:30 +0200274 newlist->desc.attribute = EFI_MEMORY_RUNTIME;
Alexander Graf5d009952016-03-04 01:10:04 +0100275 break;
276 default:
Eugeniu Rosca9b891832018-07-14 22:53:30 +0200277 newlist->desc.attribute = EFI_MEMORY_WB;
Alexander Graf5d009952016-03-04 01:10:04 +0100278 break;
279 }
280
281 /* Add our new map */
282 do {
Alexander Graf74c16ac2016-05-27 12:25:03 +0200283 carve_again = false;
Alexander Graf5d009952016-03-04 01:10:04 +0100284 list_for_each(lhandle, &efi_mem) {
285 struct efi_mem_list *lmem;
Heinrich Schuchardt32826142018-05-27 16:45:09 +0200286 s64 r;
Alexander Graf5d009952016-03-04 01:10:04 +0100287
288 lmem = list_entry(lhandle, struct efi_mem_list, link);
289 r = efi_mem_carve_out(lmem, &newlist->desc,
290 overlap_only_ram);
Alexander Graf74c16ac2016-05-27 12:25:03 +0200291 switch (r) {
292 case EFI_CARVE_OVERLAPS_NONRAM:
293 /*
294 * The user requested to only have RAM overlaps,
295 * but we hit a non-RAM region. Error out.
296 */
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100297 return EFI_NO_MAPPING;
Alexander Graf74c16ac2016-05-27 12:25:03 +0200298 case EFI_CARVE_NO_OVERLAP:
299 /* Just ignore this list entry */
300 break;
301 case EFI_CARVE_LOOP_AGAIN:
302 /*
303 * We split an entry, but need to loop through
304 * the list again to actually carve it.
305 */
306 carve_again = true;
307 break;
308 default:
309 /* We carved a number of pages */
310 carved_pages += r;
311 carve_again = true;
312 break;
313 }
314
315 if (carve_again) {
316 /* The list changed, we need to start over */
Alexander Graf5d009952016-03-04 01:10:04 +0100317 break;
318 }
319 }
Alexander Graf74c16ac2016-05-27 12:25:03 +0200320 } while (carve_again);
321
322 if (overlap_only_ram && (carved_pages != pages)) {
323 /*
324 * The payload wanted to have RAM overlaps, but we overlapped
325 * with an unallocated region. Error out.
326 */
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100327 return EFI_NO_MAPPING;
Alexander Graf74c16ac2016-05-27 12:25:03 +0200328 }
Alexander Graf5d009952016-03-04 01:10:04 +0100329
330 /* Add our new map */
331 list_add_tail(&newlist->link, &efi_mem);
332
Alexander Graf38ce65e2016-03-30 16:38:29 +0200333 /* And make sure memory is listed in descending order */
334 efi_mem_sort();
335
Heinrich Schuchardte80474a2019-06-04 20:55:12 +0200336 /* Notify that the memory map was changed */
337 list_for_each_entry(evt, &efi_events, link) {
338 if (evt->group &&
339 !guidcmp(evt->group,
340 &efi_guid_event_group_memory_map_change)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200341 efi_signal_event(evt);
Heinrich Schuchardte80474a2019-06-04 20:55:12 +0200342 break;
343 }
344 }
345
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100346 return EFI_SUCCESS;
Alexander Graf5d009952016-03-04 01:10:04 +0100347}
348
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200349/**
Michael Walle714497e2020-05-17 12:29:19 +0200350 * efi_add_memory_map() - add memory area to the memory map
351 *
352 * @start: start address of the memory area
353 * @size: length in bytes of the memory area
354 * @memory_type: type of memory added
355 *
356 * Return: status code
357 *
358 * This function automatically aligns the start and size of the memory area
359 * to EFI_PAGE_SIZE.
360 */
361efi_status_t efi_add_memory_map(u64 start, u64 size, int memory_type)
362{
363 u64 pages;
364
365 pages = efi_size_in_pages(size + (start & EFI_PAGE_MASK));
366 start &= ~EFI_PAGE_MASK;
367
368 return efi_add_memory_map_pg(start, pages, memory_type, false);
369}
370
371/**
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200372 * efi_check_allocated() - validate address to be freed
373 *
374 * Check that the address is within allocated memory:
375 *
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200376 * * The address must be in a range of the memory map.
377 * * The address may not point to EFI_CONVENTIONAL_MEMORY.
378 *
379 * Page alignment is not checked as this is not a requirement of
380 * efi_free_pool().
381 *
Heinrich Schuchardtf756fe82019-05-11 08:21:17 +0200382 * @addr: address of page to be freed
383 * @must_be_allocated: return success if the page is allocated
384 * Return: status code
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200385 */
Heinrich Schuchardtf756fe82019-05-11 08:21:17 +0200386static efi_status_t efi_check_allocated(u64 addr, bool must_be_allocated)
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200387{
388 struct efi_mem_list *item;
389
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200390 list_for_each_entry(item, &efi_mem, link) {
391 u64 start = item->desc.physical_start;
392 u64 end = start + (item->desc.num_pages << EFI_PAGE_SHIFT);
393
394 if (addr >= start && addr < end) {
Heinrich Schuchardtf756fe82019-05-11 08:21:17 +0200395 if (must_be_allocated ^
396 (item->desc.type == EFI_CONVENTIONAL_MEMORY))
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200397 return EFI_SUCCESS;
398 else
399 return EFI_NOT_FOUND;
400 }
401 }
402
403 return EFI_NOT_FOUND;
404}
405
Alexander Graf5d009952016-03-04 01:10:04 +0100406static uint64_t efi_find_free_memory(uint64_t len, uint64_t max_addr)
407{
408 struct list_head *lhandle;
409
Alexander Grafc2e1ad72018-11-05 00:30:46 +0100410 /*
411 * Prealign input max address, so we simplify our matching
412 * logic below and can just reuse it as return pointer.
413 */
414 max_addr &= ~EFI_PAGE_MASK;
415
Alexander Graf5d009952016-03-04 01:10:04 +0100416 list_for_each(lhandle, &efi_mem) {
417 struct efi_mem_list *lmem = list_entry(lhandle,
418 struct efi_mem_list, link);
419 struct efi_mem_desc *desc = &lmem->desc;
420 uint64_t desc_len = desc->num_pages << EFI_PAGE_SHIFT;
421 uint64_t desc_end = desc->physical_start + desc_len;
422 uint64_t curmax = min(max_addr, desc_end);
423 uint64_t ret = curmax - len;
424
425 /* We only take memory from free RAM */
426 if (desc->type != EFI_CONVENTIONAL_MEMORY)
427 continue;
428
429 /* Out of bounds for max_addr */
430 if ((ret + len) > max_addr)
431 continue;
432
433 /* Out of bounds for upper map limit */
434 if ((ret + len) > desc_end)
435 continue;
436
437 /* Out of bounds for lower map limit */
438 if (ret < desc->physical_start)
439 continue;
440
441 /* Return the highest address in this map within bounds */
442 return ret;
443 }
444
445 return 0;
446}
447
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100448/*
449 * Allocate memory pages.
450 *
451 * @type type of allocation to be performed
452 * @memory_type usage type of the allocated memory
453 * @pages number of pages to be allocated
454 * @memory allocated memory
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100455 * Return: status code
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100456 */
Heinrich Schuchardt49d225e2021-08-17 15:05:31 +0200457efi_status_t efi_allocate_pages(enum efi_allocate_type type,
458 enum efi_memory_type memory_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100459 efi_uintn_t pages, uint64_t *memory)
Alexander Graf5d009952016-03-04 01:10:04 +0100460{
461 u64 len = pages << EFI_PAGE_SHIFT;
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200462 efi_status_t ret;
Alexander Graf5d009952016-03-04 01:10:04 +0100463 uint64_t addr;
464
Heinrich Schuchardtf12bcc92019-04-23 00:30:53 +0200465 /* Check import parameters */
466 if (memory_type >= EFI_PERSISTENT_MEMORY_TYPE &&
467 memory_type <= 0x6FFFFFFF)
468 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt4d5e0712018-07-02 12:53:53 +0200469 if (!memory)
470 return EFI_INVALID_PARAMETER;
471
Alexander Graf5d009952016-03-04 01:10:04 +0100472 switch (type) {
Heinrich Schuchardt7c92fd62018-01-30 21:08:00 +0100473 case EFI_ALLOCATE_ANY_PAGES:
Alexander Graf5d009952016-03-04 01:10:04 +0100474 /* Any page */
Stephen Warren14deb5e2018-08-30 15:43:45 -0600475 addr = efi_find_free_memory(len, -1ULL);
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200476 if (!addr)
477 return EFI_OUT_OF_RESOURCES;
Alexander Graf5d009952016-03-04 01:10:04 +0100478 break;
Heinrich Schuchardt7c92fd62018-01-30 21:08:00 +0100479 case EFI_ALLOCATE_MAX_ADDRESS:
Alexander Graf5d009952016-03-04 01:10:04 +0100480 /* Max address */
481 addr = efi_find_free_memory(len, *memory);
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200482 if (!addr)
483 return EFI_OUT_OF_RESOURCES;
Alexander Graf5d009952016-03-04 01:10:04 +0100484 break;
Heinrich Schuchardt7c92fd62018-01-30 21:08:00 +0100485 case EFI_ALLOCATE_ADDRESS:
Alexander Graf5d009952016-03-04 01:10:04 +0100486 /* Exact address, reserve it. The addr is already in *memory. */
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200487 ret = efi_check_allocated(*memory, false);
488 if (ret != EFI_SUCCESS)
489 return EFI_NOT_FOUND;
Alexander Graf5d009952016-03-04 01:10:04 +0100490 addr = *memory;
491 break;
492 default:
493 /* UEFI doesn't specify other allocation types */
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200494 return EFI_INVALID_PARAMETER;
Alexander Graf5d009952016-03-04 01:10:04 +0100495 }
496
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200497 /* Reserve that map in our memory maps */
Michael Walle714497e2020-05-17 12:29:19 +0200498 ret = efi_add_memory_map_pg(addr, pages, memory_type, true);
499 if (ret != EFI_SUCCESS)
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200500 /* Map would overlap, bail out */
501 return EFI_OUT_OF_RESOURCES;
Alexander Graf5d009952016-03-04 01:10:04 +0100502
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200503 *memory = addr;
Alexander Graf5d009952016-03-04 01:10:04 +0100504
Heinrich Schuchardt8ae39852019-05-11 08:43:30 +0200505 return EFI_SUCCESS;
Alexander Graf5d009952016-03-04 01:10:04 +0100506}
507
508void *efi_alloc(uint64_t len, int memory_type)
509{
510 uint64_t ret = 0;
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100511 uint64_t pages = efi_size_in_pages(len);
Alexander Graf5d009952016-03-04 01:10:04 +0100512 efi_status_t r;
513
Heinrich Schuchardte09159c2018-05-26 10:32:27 +0200514 r = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, memory_type, pages,
515 &ret);
Alexander Graf5d009952016-03-04 01:10:04 +0100516 if (r == EFI_SUCCESS)
517 return (void*)(uintptr_t)ret;
518
519 return NULL;
520}
521
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100522/**
523 * efi_free_pages() - free memory pages
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100524 *
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100525 * @memory: start of the memory area to be freed
526 * @pages: number of pages to be freed
527 * Return: status code
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100528 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100529efi_status_t efi_free_pages(uint64_t memory, efi_uintn_t pages)
Alexander Graf5d009952016-03-04 01:10:04 +0100530{
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200531 efi_status_t ret;
532
Heinrich Schuchardtf756fe82019-05-11 08:21:17 +0200533 ret = efi_check_allocated(memory, true);
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200534 if (ret != EFI_SUCCESS)
535 return ret;
Stefan Brünsb61d8572016-10-01 23:32:27 +0200536
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100537 /* Sanity check */
Heinrich Schuchardte00b82d2019-04-25 18:41:40 +0200538 if (!memory || (memory & EFI_PAGE_MASK) || !pages) {
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100539 printf("%s: illegal free 0x%llx, 0x%zx\n", __func__,
540 memory, pages);
541 return EFI_INVALID_PARAMETER;
542 }
543
Michael Walle714497e2020-05-17 12:29:19 +0200544 ret = efi_add_memory_map_pg(memory, pages, EFI_CONVENTIONAL_MEMORY,
545 false);
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100546 if (ret != EFI_SUCCESS)
547 return EFI_NOT_FOUND;
Stefan Brünsb61d8572016-10-01 23:32:27 +0200548
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100549 return ret;
Alexander Graf5d009952016-03-04 01:10:04 +0100550}
551
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100552/**
Ilias Apalodimasebdea882021-10-11 15:10:23 +0300553 * efi_alloc_aligned_pages - allocate
554 *
555 * @len: len in bytes
556 * @memory_type: usage type of the allocated memory
557 * @align: alignment in bytes
558 * Return: aligned memory or NULL
559 */
560void *efi_alloc_aligned_pages(u64 len, int memory_type, size_t align)
561{
562 u64 req_pages = efi_size_in_pages(len);
563 u64 true_pages = req_pages + efi_size_in_pages(align) - 1;
564 u64 free_pages;
565 u64 aligned_mem;
566 efi_status_t r;
567 u64 mem;
568
569 /* align must be zero or a power of two */
570 if (align & (align - 1))
571 return NULL;
572
573 /* Check for overflow */
574 if (true_pages < req_pages)
575 return NULL;
576
577 if (align < EFI_PAGE_SIZE) {
578 r = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, memory_type,
579 req_pages, &mem);
580 return (r == EFI_SUCCESS) ? (void *)(uintptr_t)mem : NULL;
581 }
582
583 r = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, memory_type,
584 true_pages, &mem);
585 if (r != EFI_SUCCESS)
586 return NULL;
587
588 aligned_mem = ALIGN(mem, align);
589 /* Free pages before alignment */
590 free_pages = efi_size_in_pages(aligned_mem - mem);
591 if (free_pages)
592 efi_free_pages(mem, free_pages);
593
594 /* Free trailing pages */
595 free_pages = true_pages - (req_pages + free_pages);
596 if (free_pages) {
597 mem = aligned_mem + req_pages * EFI_PAGE_SIZE;
598 efi_free_pages(mem, free_pages);
599 }
600
601 return (void *)(uintptr_t)aligned_mem;
602}
603
604/**
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100605 * efi_allocate_pool - allocate memory from pool
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100606 *
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100607 * @pool_type: type of the pool from which memory is to be allocated
608 * @size: number of bytes to be allocated
609 * @buffer: allocated memory
610 * Return: status code
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100611 */
Heinrich Schuchardt49d225e2021-08-17 15:05:31 +0200612efi_status_t efi_allocate_pool(enum efi_memory_type pool_type, efi_uintn_t size, void **buffer)
Stefan Brünsead12742016-10-09 22:17:18 +0200613{
614 efi_status_t r;
Heinrich Schuchardt306b1672019-03-18 20:01:59 +0100615 u64 addr;
Alexander Graf282a06c2018-06-18 17:23:15 +0200616 struct efi_pool_allocation *alloc;
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100617 u64 num_pages = efi_size_in_pages(size +
618 sizeof(struct efi_pool_allocation));
Stefan Brüns42417bc2016-10-09 22:17:26 +0200619
Heinrich Schuchardt4d5e0712018-07-02 12:53:53 +0200620 if (!buffer)
621 return EFI_INVALID_PARAMETER;
622
Stefan Brüns42417bc2016-10-09 22:17:26 +0200623 if (size == 0) {
624 *buffer = NULL;
625 return EFI_SUCCESS;
626 }
Stefan Brünsead12742016-10-09 22:17:18 +0200627
Heinrich Schuchardte09159c2018-05-26 10:32:27 +0200628 r = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, pool_type, num_pages,
Heinrich Schuchardt306b1672019-03-18 20:01:59 +0100629 &addr);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200630 if (r == EFI_SUCCESS) {
Heinrich Schuchardt306b1672019-03-18 20:01:59 +0100631 alloc = (struct efi_pool_allocation *)(uintptr_t)addr;
Stefan Brüns42417bc2016-10-09 22:17:26 +0200632 alloc->num_pages = num_pages;
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100633 alloc->checksum = checksum(alloc);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200634 *buffer = alloc->data;
635 }
636
637 return r;
638}
639
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100640/**
641 * efi_free_pool() - free memory from pool
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100642 *
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100643 * @buffer: start of memory to be freed
644 * Return: status code
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100645 */
Stefan Brüns42417bc2016-10-09 22:17:26 +0200646efi_status_t efi_free_pool(void *buffer)
647{
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200648 efi_status_t ret;
Stefan Brüns42417bc2016-10-09 22:17:26 +0200649 struct efi_pool_allocation *alloc;
650
Heinrich Schuchardt0e22c7c2019-06-12 07:17:04 +0200651 if (!buffer)
652 return EFI_INVALID_PARAMETER;
653
Heinrich Schuchardtf756fe82019-05-11 08:21:17 +0200654 ret = efi_check_allocated((uintptr_t)buffer, true);
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200655 if (ret != EFI_SUCCESS)
656 return ret;
xypron.glpk@gmx.de71275a32017-07-14 19:12:39 +0200657
Stefan Brüns42417bc2016-10-09 22:17:26 +0200658 alloc = container_of(buffer, struct efi_pool_allocation, data);
Heinrich Schuchardt2c3ec282019-03-26 05:31:41 +0100659
660 /* Check that this memory was allocated by efi_allocate_pool() */
661 if (((uintptr_t)alloc & EFI_PAGE_MASK) ||
662 alloc->checksum != checksum(alloc)) {
663 printf("%s: illegal free 0x%p\n", __func__, buffer);
664 return EFI_INVALID_PARAMETER;
665 }
666 /* Avoid double free */
667 alloc->checksum = 0;
Stefan Brüns42417bc2016-10-09 22:17:26 +0200668
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200669 ret = efi_free_pages((uintptr_t)alloc, alloc->num_pages);
Stefan Brünsead12742016-10-09 22:17:18 +0200670
Heinrich Schuchardt7d3af582019-05-10 21:21:30 +0200671 return ret;
Stefan Brünsead12742016-10-09 22:17:18 +0200672}
673
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100674/*
675 * Get map describing memory usage.
676 *
677 * @memory_map_size on entry the size, in bytes, of the memory map buffer,
678 * on exit the size of the copied memory map
679 * @memory_map buffer to which the memory map is written
680 * @map_key key for the memory map
681 * @descriptor_size size of an individual memory descriptor
682 * @descriptor_version version number of the memory descriptor structure
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100683 * Return: status code
Heinrich Schuchardt474a6f52017-12-04 20:52:41 +0100684 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100685efi_status_t efi_get_memory_map(efi_uintn_t *memory_map_size,
686 struct efi_mem_desc *memory_map,
687 efi_uintn_t *map_key,
688 efi_uintn_t *descriptor_size,
689 uint32_t *descriptor_version)
Alexander Graf5d009952016-03-04 01:10:04 +0100690{
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100691 efi_uintn_t map_size = 0;
Alexander Grafcee752f2016-04-11 23:51:02 +0200692 int map_entries = 0;
Alexander Graf5d009952016-03-04 01:10:04 +0100693 struct list_head *lhandle;
Heinrich Schuchardtfa995d0d2018-08-06 22:28:18 +0200694 efi_uintn_t provided_map_size;
Alexander Graf5d009952016-03-04 01:10:04 +0100695
Heinrich Schuchardt8e835552018-07-02 12:53:54 +0200696 if (!memory_map_size)
697 return EFI_INVALID_PARAMETER;
698
Heinrich Schuchardtfa995d0d2018-08-06 22:28:18 +0200699 provided_map_size = *memory_map_size;
700
Alexander Graf5d009952016-03-04 01:10:04 +0100701 list_for_each(lhandle, &efi_mem)
Alexander Grafcee752f2016-04-11 23:51:02 +0200702 map_entries++;
703
704 map_size = map_entries * sizeof(struct efi_mem_desc);
Alexander Graf5d009952016-03-04 01:10:04 +0100705
Rob Clarka1b24822017-07-26 14:34:05 -0400706 *memory_map_size = map_size;
707
Alexander Graf5d009952016-03-04 01:10:04 +0100708 if (descriptor_size)
709 *descriptor_size = sizeof(struct efi_mem_desc);
710
Mian Yousaf Kaukab4c02c112016-09-05 23:59:22 +0200711 if (descriptor_version)
712 *descriptor_version = EFI_MEMORY_DESCRIPTOR_VERSION;
713
AKASHI Takahirob4842962020-03-11 15:18:18 +0900714 if (provided_map_size < map_size)
715 return EFI_BUFFER_TOO_SMALL;
716
717 if (!memory_map)
718 return EFI_INVALID_PARAMETER;
719
Alexander Graf5d009952016-03-04 01:10:04 +0100720 /* Copy list into array */
Heinrich Schuchardt8e835552018-07-02 12:53:54 +0200721 /* Return the list in ascending order */
722 memory_map = &memory_map[map_entries - 1];
723 list_for_each(lhandle, &efi_mem) {
724 struct efi_mem_list *lmem;
Alexander Graf5d009952016-03-04 01:10:04 +0100725
Heinrich Schuchardt8e835552018-07-02 12:53:54 +0200726 lmem = list_entry(lhandle, struct efi_mem_list, link);
727 *memory_map = lmem->desc;
728 memory_map--;
Alexander Graf5d009952016-03-04 01:10:04 +0100729 }
730
Heinrich Schuchardt8e835552018-07-02 12:53:54 +0200731 if (map_key)
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +0200732 *map_key = efi_memory_map_key;
xypron.glpk@gmx.dec6e3c3e2017-07-21 19:05:44 +0200733
Alexander Graf5d009952016-03-04 01:10:04 +0100734 return EFI_SUCCESS;
735}
736
Park, Aidenb5b9eff2019-09-03 17:43:43 +0000737/**
738 * efi_add_conventional_memory_map() - add a RAM memory area to the map
739 *
740 * @ram_start: start address of a RAM memory area
741 * @ram_end: end address of a RAM memory area
742 * @ram_top: max address to be used as conventional memory
743 * Return: status code
744 */
745efi_status_t efi_add_conventional_memory_map(u64 ram_start, u64 ram_end,
746 u64 ram_top)
747{
748 u64 pages;
749
750 /* Remove partial pages */
751 ram_end &= ~EFI_PAGE_MASK;
752 ram_start = (ram_start + EFI_PAGE_MASK) & ~EFI_PAGE_MASK;
753
754 if (ram_end <= ram_start) {
755 /* Invalid mapping */
756 return EFI_INVALID_PARAMETER;
757 }
758
759 pages = (ram_end - ram_start) >> EFI_PAGE_SHIFT;
760
Michael Walle714497e2020-05-17 12:29:19 +0200761 efi_add_memory_map_pg(ram_start, pages,
762 EFI_CONVENTIONAL_MEMORY, false);
Park, Aidenb5b9eff2019-09-03 17:43:43 +0000763
764 /*
765 * Boards may indicate to the U-Boot memory core that they
766 * can not support memory above ram_top. Let's honor this
767 * in the efi_loader subsystem too by declaring any memory
768 * above ram_top as "already occupied by firmware".
769 */
770 if (ram_top < ram_start) {
771 /* ram_top is before this region, reserve all */
Michael Walle714497e2020-05-17 12:29:19 +0200772 efi_add_memory_map_pg(ram_start, pages,
773 EFI_BOOT_SERVICES_DATA, true);
Park, Aidenb5b9eff2019-09-03 17:43:43 +0000774 } else if ((ram_top >= ram_start) && (ram_top < ram_end)) {
775 /* ram_top is inside this region, reserve parts */
776 pages = (ram_end - ram_top) >> EFI_PAGE_SHIFT;
777
Michael Walle714497e2020-05-17 12:29:19 +0200778 efi_add_memory_map_pg(ram_top, pages,
779 EFI_BOOT_SERVICES_DATA, true);
Park, Aidenb5b9eff2019-09-03 17:43:43 +0000780 }
781
782 return EFI_SUCCESS;
783}
784
York Sun42633742017-03-06 09:02:27 -0800785__weak void efi_add_known_memory(void)
Alexander Graf5d009952016-03-04 01:10:04 +0100786{
Alexander Graf7b78d642018-11-30 21:24:56 +0100787 u64 ram_top = board_get_usable_ram_top(0) & ~EFI_PAGE_MASK;
Alexander Graf5d009952016-03-04 01:10:04 +0100788 int i;
789
Heinrich Schuchardt23f5f4a2019-01-05 23:41:36 +0100790 /*
791 * ram_top is just outside mapped memory. So use an offset of one for
792 * mapping the sandbox address.
793 */
794 ram_top = (uintptr_t)map_sysmem(ram_top - 1, 0) + 1;
795
Alexander Graf7b78d642018-11-30 21:24:56 +0100796 /* Fix for 32bit targets with ram_top at 4G */
797 if (!ram_top)
798 ram_top = 0x100000000ULL;
799
Alexander Graf5d009952016-03-04 01:10:04 +0100800 /* Add RAM */
801 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
Park, Aidenb5b9eff2019-09-03 17:43:43 +0000802 u64 ram_end, ram_start;
Alexander Graf5d009952016-03-04 01:10:04 +0100803
Heinrich Schuchardt49759742018-11-18 17:58:46 +0100804 ram_start = (uintptr_t)map_sysmem(gd->bd->bi_dram[i].start, 0);
Heinrich Schuchardt108bdff2018-11-12 18:55:24 +0100805 ram_end = ram_start + gd->bd->bi_dram[i].size;
806
Park, Aidenb5b9eff2019-09-03 17:43:43 +0000807 efi_add_conventional_memory_map(ram_start, ram_end, ram_top);
Alexander Graf5d009952016-03-04 01:10:04 +0100808 }
York Sun42633742017-03-06 09:02:27 -0800809}
810
Simon Glass69259b82018-06-18 17:23:12 +0200811/* Add memory regions for U-Boot's memory and for the runtime services code */
812static void add_u_boot_and_runtime(void)
York Sun42633742017-03-06 09:02:27 -0800813{
814 unsigned long runtime_start, runtime_end, runtime_pages;
Alexander Graf7a82c302018-09-17 13:54:33 +0200815 unsigned long runtime_mask = EFI_PAGE_MASK;
York Sun42633742017-03-06 09:02:27 -0800816 unsigned long uboot_start, uboot_pages;
Heinrich Schuchardt74b869b2020-07-29 12:37:35 +0200817 unsigned long uboot_stack_size = CONFIG_STACK_SIZE;
York Sun42633742017-03-06 09:02:27 -0800818
Alexander Graf5d009952016-03-04 01:10:04 +0100819 /* Add U-Boot */
Heinrich Schuchardt7264e212019-11-08 20:42:53 +0100820 uboot_start = ((uintptr_t)map_sysmem(gd->start_addr_sp, 0) -
821 uboot_stack_size) & ~EFI_PAGE_MASK;
822 uboot_pages = ((uintptr_t)map_sysmem(gd->ram_top - 1, 0) -
823 uboot_start + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
Michael Walle714497e2020-05-17 12:29:19 +0200824 efi_add_memory_map_pg(uboot_start, uboot_pages, EFI_LOADER_DATA,
825 false);
Alexander Graf5d009952016-03-04 01:10:04 +0100826
Alexander Graf7a82c302018-09-17 13:54:33 +0200827#if defined(__aarch64__)
828 /*
829 * Runtime Services must be 64KiB aligned according to the
830 * "AArch64 Platforms" section in the UEFI spec (2.7+).
831 */
832
833 runtime_mask = SZ_64K - 1;
834#endif
835
836 /*
837 * Add Runtime Services. We mark surrounding boottime code as runtime as
838 * well to fulfill the runtime alignment constraints but avoid padding.
839 */
840 runtime_start = (ulong)&__efi_runtime_start & ~runtime_mask;
Alexander Graf5d009952016-03-04 01:10:04 +0100841 runtime_end = (ulong)&__efi_runtime_stop;
Alexander Graf7a82c302018-09-17 13:54:33 +0200842 runtime_end = (runtime_end + runtime_mask) & ~runtime_mask;
Alexander Graf5d009952016-03-04 01:10:04 +0100843 runtime_pages = (runtime_end - runtime_start) >> EFI_PAGE_SHIFT;
Michael Walle714497e2020-05-17 12:29:19 +0200844 efi_add_memory_map_pg(runtime_start, runtime_pages,
845 EFI_RUNTIME_SERVICES_CODE, false);
Simon Glass69259b82018-06-18 17:23:12 +0200846}
847
848int efi_memory_init(void)
849{
850 efi_add_known_memory();
851
Heinrich Schuchardt7264e212019-11-08 20:42:53 +0100852 add_u_boot_and_runtime();
Alexander Graf5d009952016-03-04 01:10:04 +0100853
Alexander Graf51735ae2016-05-11 18:25:48 +0200854#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
855 /* Request a 32bit 64MB bounce buffer region */
856 uint64_t efi_bounce_buffer_addr = 0xffffffff;
857
Heinrich Schuchardte09159c2018-05-26 10:32:27 +0200858 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, EFI_LOADER_DATA,
Alexander Graf51735ae2016-05-11 18:25:48 +0200859 (64 * 1024 * 1024) >> EFI_PAGE_SHIFT,
860 &efi_bounce_buffer_addr) != EFI_SUCCESS)
861 return -1;
862
863 efi_bounce_buffer = (void*)(uintptr_t)efi_bounce_buffer_addr;
864#endif
865
Alexander Graf5d009952016-03-04 01:10:04 +0100866 return 0;
867}