2013-04-16 22:45:18 +08:00
|
|
|
/*
|
|
|
|
* libqos malloc support for PC
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2012-2013
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libqos/malloc-pc.h"
|
2013-06-26 21:52:22 +08:00
|
|
|
#include "libqos/fw_cfg.h"
|
2013-04-16 22:45:18 +08:00
|
|
|
|
|
|
|
#define NO_QEMU_PROTOS
|
|
|
|
#include "hw/nvram/fw_cfg.h"
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#define PAGE_SIZE (4096)
|
|
|
|
|
2014-08-01 23:38:58 +08:00
|
|
|
/*
|
|
|
|
* Mostly for valgrind happiness, but it does offer
|
|
|
|
* a chokepoint for debugging guest memory leaks, too.
|
|
|
|
*/
|
|
|
|
void pc_alloc_uninit(QGuestAllocator *allocator)
|
|
|
|
{
|
2014-10-23 16:12:42 +08:00
|
|
|
alloc_uninit(allocator);
|
2013-04-16 22:45:18 +08:00
|
|
|
}
|
|
|
|
|
2014-10-23 16:12:42 +08:00
|
|
|
QGuestAllocator *pc_alloc_init_flags(QAllocOpts flags)
|
2013-04-16 22:45:18 +08:00
|
|
|
{
|
2015-01-20 04:15:49 +08:00
|
|
|
QGuestAllocator *s;
|
2013-04-16 22:45:18 +08:00
|
|
|
uint64_t ram_size;
|
|
|
|
QFWCFG *fw_cfg = pc_fw_cfg_init();
|
|
|
|
|
|
|
|
ram_size = qfw_cfg_get_u64(fw_cfg, FW_CFG_RAM_SIZE);
|
2015-01-20 04:15:53 +08:00
|
|
|
s = alloc_init_flags(flags, 1 << 20, MIN(ram_size, 0xE0000000));
|
2015-01-20 04:15:54 +08:00
|
|
|
alloc_set_page_size(s, PAGE_SIZE);
|
2013-04-16 22:45:18 +08:00
|
|
|
|
2014-08-05 05:11:21 +08:00
|
|
|
/* clean-up */
|
|
|
|
g_free(fw_cfg);
|
|
|
|
|
2014-10-23 16:12:42 +08:00
|
|
|
return s;
|
2013-04-16 22:45:18 +08:00
|
|
|
}
|
2014-08-01 23:38:58 +08:00
|
|
|
|
|
|
|
inline QGuestAllocator *pc_alloc_init(void)
|
|
|
|
{
|
2014-10-23 16:12:42 +08:00
|
|
|
return pc_alloc_init_flags(ALLOC_NO_FLAGS);
|
2014-08-01 23:38:58 +08:00
|
|
|
}
|