Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Simple malloc implementation |
| 4 | * |
| 5 | * Copyright (c) 2014 Google, Inc |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Simon Glass | 7cbd2d2 | 2018-11-18 08:14:26 -0700 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_ALLOC |
| 9 | |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 10 | #include <common.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 12 | #include <malloc.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 13 | #include <mapmem.h> |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | |
| 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Simon Glass | 7cbd2d2 | 2018-11-18 08:14:26 -0700 | [diff] [blame] | 18 | static void *alloc_simple(size_t bytes, int align) |
Simon Glass | b6bfb6f | 2015-05-12 14:55:06 -0600 | [diff] [blame] | 19 | { |
| 20 | ulong addr, new_ptr; |
| 21 | void *ptr; |
| 22 | |
Simon Glass | 972ea53 | 2015-08-14 13:26:43 -0600 | [diff] [blame] | 23 | addr = ALIGN(gd->malloc_base + gd->malloc_ptr, align); |
Philipp Rosenberger | 596380d | 2015-09-08 12:41:24 +0200 | [diff] [blame] | 24 | new_ptr = addr + bytes - gd->malloc_base; |
Simon Glass | 7cbd2d2 | 2018-11-18 08:14:26 -0700 | [diff] [blame] | 25 | log_debug("size=%zx, ptr=%lx, limit=%lx: ", bytes, new_ptr, |
| 26 | gd->malloc_limit); |
Andrew F. Davis | 1923d54 | 2017-01-27 10:39:18 -0600 | [diff] [blame] | 27 | if (new_ptr > gd->malloc_limit) { |
Simon Glass | 7cbd2d2 | 2018-11-18 08:14:26 -0700 | [diff] [blame] | 28 | log_err("alloc space exhausted\n"); |
Simon Glass | b6bfb6f | 2015-05-12 14:55:06 -0600 | [diff] [blame] | 29 | return NULL; |
Andrew F. Davis | 1923d54 | 2017-01-27 10:39:18 -0600 | [diff] [blame] | 30 | } |
| 31 | |
Simon Glass | b6bfb6f | 2015-05-12 14:55:06 -0600 | [diff] [blame] | 32 | ptr = map_sysmem(addr, bytes); |
| 33 | gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr)); |
Simon Glass | 7cbd2d2 | 2018-11-18 08:14:26 -0700 | [diff] [blame] | 34 | |
| 35 | return ptr; |
| 36 | } |
| 37 | |
| 38 | void *malloc_simple(size_t bytes) |
| 39 | { |
| 40 | void *ptr; |
| 41 | |
| 42 | ptr = alloc_simple(bytes, 1); |
| 43 | if (!ptr) |
| 44 | return ptr; |
| 45 | |
| 46 | log_debug("%lx\n", (ulong)ptr); |
| 47 | |
| 48 | return ptr; |
| 49 | } |
| 50 | |
| 51 | void *memalign_simple(size_t align, size_t bytes) |
| 52 | { |
| 53 | void *ptr; |
| 54 | |
| 55 | ptr = alloc_simple(bytes, align); |
| 56 | if (!ptr) |
| 57 | return ptr; |
| 58 | log_debug("aligned to %lx\n", (ulong)ptr); |
Simon Glass | 836ac74 | 2015-09-08 17:52:46 -0600 | [diff] [blame] | 59 | |
Simon Glass | b6bfb6f | 2015-05-12 14:55:06 -0600 | [diff] [blame] | 60 | return ptr; |
| 61 | } |
| 62 | |
Hans de Goede | 1eb0c03 | 2015-09-13 14:45:15 +0200 | [diff] [blame] | 63 | #if CONFIG_IS_ENABLED(SYS_MALLOC_SIMPLE) |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 64 | void *calloc(size_t nmemb, size_t elem_size) |
| 65 | { |
| 66 | size_t size = nmemb * elem_size; |
| 67 | void *ptr; |
| 68 | |
| 69 | ptr = malloc(size); |
Simon Glass | 7cbd2d2 | 2018-11-18 08:14:26 -0700 | [diff] [blame] | 70 | if (!ptr) |
| 71 | return ptr; |
| 72 | memset(ptr, '\0', size); |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 73 | |
| 74 | return ptr; |
| 75 | } |
| 76 | #endif |
Simon Glass | 7cbd2d2 | 2018-11-18 08:14:26 -0700 | [diff] [blame] | 77 | |
| 78 | void malloc_simple_info(void) |
| 79 | { |
| 80 | log_info("malloc_simple: %lx bytes used, %lx remain\n", gd->malloc_ptr, |
| 81 | CONFIG_VAL(SYS_MALLOC_F_LEN) - gd->malloc_ptr); |
| 82 | } |