]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/malloc_simple.c
Revert "fdt: fix address cell count checking in fdt_translate_address()"
[people/ms/u-boot.git] / common / malloc_simple.c
CommitLineData
c9356be3
SG
1/*
2 * Simple malloc implementation
3 *
4 * Copyright (c) 2014 Google, Inc
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <malloc.h>
0eb25b61 11#include <mapmem.h>
c9356be3
SG
12#include <asm/io.h>
13
14DECLARE_GLOBAL_DATA_PTR;
15
16void *malloc_simple(size_t bytes)
17{
18 ulong new_ptr;
19 void *ptr;
20
21 new_ptr = gd->malloc_ptr + bytes;
9a01cca7 22 debug("%s: size=%zx, ptr=%lx, limit=%lx: ", __func__, bytes, new_ptr,
836ac74c 23 gd->malloc_limit);
9a01cca7
SG
24 if (new_ptr > gd->malloc_limit) {
25 debug("space exhausted\n");
2c857170 26 return NULL;
9a01cca7 27 }
c9356be3
SG
28 ptr = map_sysmem(gd->malloc_base + gd->malloc_ptr, bytes);
29 gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr));
9a01cca7 30 debug("%lx\n", (ulong)ptr);
836ac74c 31
c9356be3
SG
32 return ptr;
33}
34
b6bfb6ff
SG
35void *memalign_simple(size_t align, size_t bytes)
36{
37 ulong addr, new_ptr;
38 void *ptr;
39
972ea533 40 addr = ALIGN(gd->malloc_base + gd->malloc_ptr, align);
596380db 41 new_ptr = addr + bytes - gd->malloc_base;
b6bfb6ff
SG
42 if (new_ptr > gd->malloc_limit)
43 return NULL;
44 ptr = map_sysmem(addr, bytes);
45 gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr));
836ac74c 46
b6bfb6ff
SG
47 return ptr;
48}
49
1eb0c03c 50#if CONFIG_IS_ENABLED(SYS_MALLOC_SIMPLE)
c9356be3
SG
51void *calloc(size_t nmemb, size_t elem_size)
52{
53 size_t size = nmemb * elem_size;
54 void *ptr;
55
56 ptr = malloc(size);
57 memset(ptr, '\0', size);
58
59 return ptr;
60}
61#endif