mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
* drop double error in malloc.c * add extra CFLAGS to reduce code size by 10% * add more build time defines and use them in the LB table. The LB_TAG_COMPILE_TIME is a partly duplicate of LB_TAG_BUILD, as LB_TAG_BUILD contains both date and time. I left this in for compatibility reasons. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@268 f3766cd6-281f-0410-b1cd-43a5c92072e9
75 lines
2.3 KiB
C
75 lines
2.3 KiB
C
/*
|
|
* This file is part of the LinuxBIOS project.
|
|
*
|
|
* Copyright (C) 2007 Ronald G. Minnich <rminnich@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
|
*/
|
|
|
|
/*
|
|
* Simple non-freeing malloc. There have been about a million versions of
|
|
* this but we need one with a known author. Almost every OS and bootloader
|
|
* has had this at some time or other.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <console/console.h>
|
|
|
|
#if 0
|
|
#define MALLOCDBG(x...)
|
|
#else
|
|
#define MALLOCDBG(x...) printk (BIOS_SPEW, x)
|
|
#endif
|
|
|
|
/* instead of ldscript magic, just declare an array. The array
|
|
* will consume no bytes in the image, and it won't run into trouble
|
|
* the way the V2 allocator could. We do not provide zero'd memory.
|
|
* note that the execute-in-place code in top of flash is not allowed to call malloc,
|
|
* since we can't link this in to it. The FLASH-based code should always be dead simple.
|
|
* (in fact, it's not clear we need malloc at all any more -- we're doing our best to
|
|
* remove all usage of it -- the only real users were elfboot and lzma, and we have
|
|
* removed its usage in elfboot, and will try to remove its usage in lzma).
|
|
*/
|
|
|
|
#define HEAPSIZE (256*1024)
|
|
static unsigned char heap[HEAPSIZE];
|
|
static unsigned char *free_mem_ptr = heap;
|
|
static unsigned long freebytes = HEAPSIZE;
|
|
|
|
void *malloc(size_t size)
|
|
{
|
|
void *p;
|
|
|
|
MALLOCDBG("%s Enter, size %d, free_mem_ptr %p\n", __FUNCTION__, size,
|
|
free_mem_ptr);
|
|
|
|
if (size > freebytes) {
|
|
die("OUT OF MEMORY\n");
|
|
}
|
|
|
|
size = (size + 3) & (~3); /* Align */
|
|
|
|
p = free_mem_ptr;
|
|
free_mem_ptr += size;
|
|
freebytes -= size;
|
|
|
|
MALLOCDBG("malloc 0x%08lx\n", (unsigned long)p);
|
|
|
|
return p;
|
|
}
|
|
|
|
void free(void *where)
|
|
{
|
|
/* Don't care */
|
|
}
|