2015-08-21 07:04:50 +00:00
|
|
|
/*
|
|
|
|
* QEMU PC System Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2004 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
/* Modified for Unicorn Engine by Nguyen Anh Quynh, 2015 */
|
|
|
|
|
2018-02-19 05:56:22 +00:00
|
|
|
#include "qemu/osdep.h"
|
2018-02-24 06:23:15 +00:00
|
|
|
#include "cpu.h"
|
2018-03-07 17:26:37 +00:00
|
|
|
#include "qapi/error.h"
|
2015-08-21 07:04:50 +00:00
|
|
|
#include "hw/i386/pc.h"
|
|
|
|
#include "hw/boards.h"
|
|
|
|
#include "exec/address-spaces.h"
|
|
|
|
#include "uc_priv.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Make sure that guest addresses aligned at 1Gbyte boundaries get mapped to
|
|
|
|
* host addresses aligned at 1Gbyte boundaries. This way we can use 1GByte
|
|
|
|
* pages in the host.
|
|
|
|
*/
|
|
|
|
#define GIGABYTE_ALIGN true
|
|
|
|
|
|
|
|
/* PC hardware initialisation */
|
2015-11-11 17:43:41 +00:00
|
|
|
static int pc_init1(struct uc_struct *uc, MachineState *machine)
|
2015-08-21 07:04:50 +00:00
|
|
|
{
|
2018-03-20 16:32:00 +00:00
|
|
|
PCMachineState *pcms = PC_MACHINE(uc, machine);
|
|
|
|
return pc_cpus_init(uc, pcms);
|
2015-08-21 07:04:50 +00:00
|
|
|
}
|
|
|
|
|
2018-03-09 19:12:03 +00:00
|
|
|
static void pc_compat_2_2(struct uc_struct *uc, MachineState *machine)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-11 17:41:19 +00:00
|
|
|
// Unicorn: Modified for use with unicorn (no need for an option function)
|
|
|
|
#define DEFINE_I440FX_MACHINE(suffix, name, compatfn) \
|
|
|
|
static int pc_init_##suffix(struct uc_struct *uc, MachineState *machine) \
|
|
|
|
{ \
|
|
|
|
void (*compat)(struct uc_struct *uc, MachineState *m) = (compatfn); \
|
|
|
|
if (compat) { \
|
|
|
|
compat(uc, machine); \
|
|
|
|
} \
|
|
|
|
return pc_init1(uc, machine); \
|
|
|
|
} \
|
|
|
|
DEFINE_PC_MACHINE(suffix, name, pc_init_##suffix)
|
2018-03-09 19:12:03 +00:00
|
|
|
|
2018-03-11 17:41:19 +00:00
|
|
|
DEFINE_I440FX_MACHINE(v2_2, "pc-i440fx-2.2", pc_compat_2_2);
|