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