blob: 24d5d67371938cb61b4b60e6d4591cb721ce8380 [file] [log] [blame]
Paolo Bonzini5f861462012-06-07 08:22:56 +02001/*
2 * QEMU memory mapping
3 *
4 * Copyright Fujitsu, Corp. 2011, 2012
5 *
6 * Authors:
7 * Wen Congyang <wency@cn.fujitsu.com>
8 *
Stefan Weilfc0608a2012-06-10 19:49:18 +00009 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
Paolo Bonzini5f861462012-06-07 08:22:56 +020011 *
12 */
13
14#include "cpu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010015#include "exec/cpu-all.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010016#include "sysemu/memory_mapping.h"
Paolo Bonzini5f861462012-06-07 08:22:56 +020017
18int qemu_get_guest_memory_mapping(MemoryMappingList *list)
19{
20 return -2;
21}
22
23int cpu_get_memory_mapping(MemoryMappingList *list,
24 CPUArchState *env)
25{
26 return -1;
27}
28
29bool cpu_paging_enabled(CPUArchState *env)
30{
31 return true;
32}
33