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.
|
|
|
|
*/
|
|
|
|
|
2016-02-09 02:08:51 +08:00
|
|
|
#include "qemu/osdep.h"
|
2013-04-16 22:45:18 +08:00
|
|
|
#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
|
|
|
|
2018-08-17 23:59:10 +08:00
|
|
|
#include "standard-headers/linux/qemu_fw_cfg.h"
|
2013-04-16 22:45:18 +08:00
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
|
|
|
|
#define PAGE_SIZE (4096)
|
|
|
|
|
2018-11-29 19:37:04 +08:00
|
|
|
void pc_alloc_init(QGuestAllocator *s, QTestState *qts, QAllocOpts flags)
|
2013-04-16 22:45:18 +08:00
|
|
|
{
|
|
|
|
uint64_t ram_size;
|
2017-09-12 01:19:57 +08:00
|
|
|
QFWCFG *fw_cfg = pc_fw_cfg_init(qts);
|
2013-04-16 22:45:18 +08:00
|
|
|
|
|
|
|
ram_size = qfw_cfg_get_u64(fw_cfg, FW_CFG_RAM_SIZE);
|
2018-11-29 19:37:04 +08:00
|
|
|
alloc_init(s, flags, 1 << 20, MIN(ram_size, 0xE0000000), 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-08-01 23:38:58 +08:00
|
|
|
}
|