Blame view

common/malloc_simple.c 1.11 KB
c9356be30   Simon Glass   dm: Split the sim...
1
2
3
4
5
6
7
8
9
10
  /*
   * Simple malloc implementation
   *
   * Copyright (c) 2014 Google, Inc
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  #include <common.h>
  #include <malloc.h>
0eb25b619   Joe Hershberger   common: Make sure...
11
  #include <mapmem.h>
c9356be30   Simon Glass   dm: Split the sim...
12
13
14
15
16
17
18
19
20
21
  #include <asm/io.h>
  
  DECLARE_GLOBAL_DATA_PTR;
  
  void *malloc_simple(size_t bytes)
  {
  	ulong new_ptr;
  	void *ptr;
  
  	new_ptr = gd->malloc_ptr + bytes;
836ac74c2   Simon Glass   malloc_simple: Ad...
22
23
24
  	debug("%s: size=%zx, ptr=%lx, limit=%lx
  ", __func__, bytes, new_ptr,
  	      gd->malloc_limit);
c9356be30   Simon Glass   dm: Split the sim...
25
  	if (new_ptr > gd->malloc_limit)
2c8571703   Hans de Goede   malloc_simple: Re...
26
  		return NULL;
c9356be30   Simon Glass   dm: Split the sim...
27
28
  	ptr = map_sysmem(gd->malloc_base + gd->malloc_ptr, bytes);
  	gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr));
836ac74c2   Simon Glass   malloc_simple: Ad...
29

c9356be30   Simon Glass   dm: Split the sim...
30
31
  	return ptr;
  }
b6bfb6ff9   Simon Glass   Add a simple vers...
32
33
34
35
  void *memalign_simple(size_t align, size_t bytes)
  {
  	ulong addr, new_ptr;
  	void *ptr;
972ea5339   Simon Glass   malloc_simple: Co...
36
  	addr = ALIGN(gd->malloc_base + gd->malloc_ptr, align);
596380db2   Philipp Rosenberger   malloc_simple: fi...
37
  	new_ptr = addr + bytes - gd->malloc_base;
b6bfb6ff9   Simon Glass   Add a simple vers...
38
39
40
41
  	if (new_ptr > gd->malloc_limit)
  		return NULL;
  	ptr = map_sysmem(addr, bytes);
  	gd->malloc_ptr = ALIGN(new_ptr, sizeof(new_ptr));
836ac74c2   Simon Glass   malloc_simple: Ad...
42

b6bfb6ff9   Simon Glass   Add a simple vers...
43
44
  	return ptr;
  }
1eb0c03c2   Hans de Goede   malloc_simple: Ad...
45
  #if CONFIG_IS_ENABLED(SYS_MALLOC_SIMPLE)
c9356be30   Simon Glass   dm: Split the sim...
46
47
48
49
50
51
52
53
54
55
56
  void *calloc(size_t nmemb, size_t elem_size)
  {
  	size_t size = nmemb * elem_size;
  	void *ptr;
  
  	ptr = malloc(size);
  	memset(ptr, '\0', size);
  
  	return ptr;
  }
  #endif