blob: 4462edf076c29a27285f0ee84dc5d5d29d94ae23 [file] [log] [blame]
bellard54936002003-05-13 00:25:15 +00001/*
Blue Swirl5b6dd862012-12-02 16:04:43 +00002 * Virtual page mapping
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard54936002003-05-13 00:25:15 +00004 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellard54936002003-05-13 00:25:15 +000018 */
bellard67b915a2004-03-31 23:37:16 +000019#include "config.h"
bellardd5a8f072004-09-29 21:15:28 +000020#ifdef _WIN32
21#include <windows.h>
22#else
bellarda98d49b2004-11-14 16:22:05 +000023#include <sys/types.h>
bellardd5a8f072004-09-29 21:15:28 +000024#include <sys/mman.h>
25#endif
bellard54936002003-05-13 00:25:15 +000026
Stefan Weil055403b2010-10-22 23:03:32 +020027#include "qemu-common.h"
bellard6180a182003-09-30 21:04:53 +000028#include "cpu.h"
bellardb67d9a52008-05-23 09:57:34 +000029#include "tcg.h"
pbrookb3c77242008-06-30 16:31:04 +000030#include "hw/hw.h"
Alex Williamsoncc9e98c2010-06-25 11:09:43 -060031#include "hw/qdev.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010032#include "qemu/osdep.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010033#include "sysemu/kvm.h"
Jun Nakajima432d2682010-08-31 16:41:25 +010034#include "hw/xen.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010035#include "qemu/timer.h"
36#include "qemu/config-file.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010037#include "exec/memory.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010038#include "sysemu/dma.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010039#include "exec/address-spaces.h"
pbrook53a59602006-03-25 19:31:22 +000040#if defined(CONFIG_USER_ONLY)
41#include <qemu.h>
Jun Nakajima432d2682010-08-31 16:41:25 +010042#else /* !CONFIG_USER_ONLY */
Paolo Bonzini9c17d612012-12-17 18:20:04 +010043#include "sysemu/xen-mapcache.h"
Stefano Stabellini6506e4f2011-05-19 18:35:44 +010044#include "trace.h"
pbrook53a59602006-03-25 19:31:22 +000045#endif
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +010046#include "exec/cpu-all.h"
bellard54936002003-05-13 00:25:15 +000047
Paolo Bonzini022c62c2012-12-17 18:19:49 +010048#include "exec/cputlb.h"
Blue Swirl5b6dd862012-12-02 16:04:43 +000049#include "translate-all.h"
Blue Swirl0cac1b62012-04-09 16:50:52 +000050
Paolo Bonzini022c62c2012-12-17 18:19:49 +010051#include "exec/memory-internal.h"
Avi Kivity67d95c12011-12-15 15:25:22 +020052
pbrook67d3b952006-12-18 05:03:52 +000053//#define DEBUG_UNASSIGNED
blueswir1db7b5422007-05-26 17:36:03 +000054//#define DEBUG_SUBPAGE
ths1196be32007-03-17 15:17:58 +000055
pbrook99773bd2006-04-16 15:14:59 +000056#if !defined(CONFIG_USER_ONLY)
bellard9fa3e852004-01-04 18:06:42 +000057int phys_ram_fd;
aliguori74576192008-10-06 14:02:03 +000058static int in_migration;
pbrook94a6b542009-04-11 17:15:54 +000059
Paolo Bonzinia3161032012-11-14 15:54:48 +010060RAMList ram_list = { .blocks = QTAILQ_HEAD_INITIALIZER(ram_list.blocks) };
Avi Kivity62152b82011-07-26 14:26:14 +030061
62static MemoryRegion *system_memory;
Avi Kivity309cb472011-08-08 16:09:03 +030063static MemoryRegion *system_io;
Avi Kivity62152b82011-07-26 14:26:14 +030064
Avi Kivityf6790af2012-10-02 20:13:51 +020065AddressSpace address_space_io;
66AddressSpace address_space_memory;
Peter Maydell9e119082012-10-29 11:34:32 +100067DMAContext dma_context_memory;
Avi Kivity2673a5d2012-10-02 18:49:28 +020068
Avi Kivity0e0df1e2012-01-02 00:32:15 +020069MemoryRegion io_mem_ram, io_mem_rom, io_mem_unassigned, io_mem_notdirty;
Avi Kivityde712f92012-01-02 12:41:07 +020070static MemoryRegion io_mem_subpage_ram;
Avi Kivity0e0df1e2012-01-02 00:32:15 +020071
pbrooke2eef172008-06-08 01:09:01 +000072#endif
bellard9fa3e852004-01-04 18:06:42 +000073
Andreas Färber9349b4f2012-03-14 01:38:32 +010074CPUArchState *first_cpu;
bellard6a00d602005-11-21 23:25:50 +000075/* current CPU in the current thread. It is only valid inside
76 cpu_exec() */
Andreas Färber9349b4f2012-03-14 01:38:32 +010077DEFINE_TLS(CPUArchState *,cpu_single_env);
pbrook2e70f6e2008-06-29 01:03:05 +000078/* 0 = Do not count executed instructions.
thsbf20dc02008-06-30 17:22:19 +000079 1 = Precise instruction counting.
pbrook2e70f6e2008-06-29 01:03:05 +000080 2 = Adaptive rate instruction counting. */
Paolo Bonzini5708fc62012-11-26 15:36:40 +010081int use_icount;
bellard6a00d602005-11-21 23:25:50 +000082
pbrooke2eef172008-06-08 01:09:01 +000083#if !defined(CONFIG_USER_ONLY)
Avi Kivity4346ae32012-02-10 17:00:01 +020084
Avi Kivity5312bd82012-02-12 18:32:55 +020085static MemoryRegionSection *phys_sections;
86static unsigned phys_sections_nb, phys_sections_nb_alloc;
87static uint16_t phys_section_unassigned;
Avi Kivityaa102232012-03-08 17:06:55 +020088static uint16_t phys_section_notdirty;
89static uint16_t phys_section_rom;
90static uint16_t phys_section_watch;
Avi Kivity5312bd82012-02-12 18:32:55 +020091
Avi Kivityd6f2ea22012-02-12 20:12:49 +020092/* Simple allocator for PhysPageEntry nodes */
93static PhysPageEntry (*phys_map_nodes)[L2_SIZE];
94static unsigned phys_map_nodes_nb, phys_map_nodes_nb_alloc;
95
Avi Kivity07f07b32012-02-13 20:45:32 +020096#define PHYS_MAP_NODE_NIL (((uint16_t)~0) >> 1)
Avi Kivityd6f2ea22012-02-12 20:12:49 +020097
pbrooke2eef172008-06-08 01:09:01 +000098static void io_mem_init(void);
Avi Kivity62152b82011-07-26 14:26:14 +030099static void memory_map_init(void);
Blue Swirl8b9c99d2012-10-28 11:04:51 +0000100static void *qemu_safe_ram_ptr(ram_addr_t addr);
pbrooke2eef172008-06-08 01:09:01 +0000101
Avi Kivity1ec9b902012-01-02 12:47:48 +0200102static MemoryRegion io_mem_watch;
pbrook6658ffb2007-03-16 23:58:11 +0000103#endif
bellard54936002003-05-13 00:25:15 +0000104
Paul Brook6d9a1302010-02-28 23:55:53 +0000105#if !defined(CONFIG_USER_ONLY)
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200106
Avi Kivityf7bf5462012-02-13 20:12:05 +0200107static void phys_map_node_reserve(unsigned nodes)
108{
109 if (phys_map_nodes_nb + nodes > phys_map_nodes_nb_alloc) {
110 typedef PhysPageEntry Node[L2_SIZE];
111 phys_map_nodes_nb_alloc = MAX(phys_map_nodes_nb_alloc * 2, 16);
112 phys_map_nodes_nb_alloc = MAX(phys_map_nodes_nb_alloc,
113 phys_map_nodes_nb + nodes);
114 phys_map_nodes = g_renew(Node, phys_map_nodes,
115 phys_map_nodes_nb_alloc);
116 }
117}
118
119static uint16_t phys_map_node_alloc(void)
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200120{
121 unsigned i;
122 uint16_t ret;
123
Avi Kivityf7bf5462012-02-13 20:12:05 +0200124 ret = phys_map_nodes_nb++;
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200125 assert(ret != PHYS_MAP_NODE_NIL);
Avi Kivityf7bf5462012-02-13 20:12:05 +0200126 assert(ret != phys_map_nodes_nb_alloc);
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200127 for (i = 0; i < L2_SIZE; ++i) {
Avi Kivity07f07b32012-02-13 20:45:32 +0200128 phys_map_nodes[ret][i].is_leaf = 0;
Avi Kivityc19e8802012-02-13 20:25:31 +0200129 phys_map_nodes[ret][i].ptr = PHYS_MAP_NODE_NIL;
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200130 }
Avi Kivityf7bf5462012-02-13 20:12:05 +0200131 return ret;
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200132}
133
134static void phys_map_nodes_reset(void)
135{
136 phys_map_nodes_nb = 0;
137}
138
Avi Kivityf7bf5462012-02-13 20:12:05 +0200139
Avi Kivitya8170e52012-10-23 12:30:10 +0200140static void phys_page_set_level(PhysPageEntry *lp, hwaddr *index,
141 hwaddr *nb, uint16_t leaf,
Avi Kivity29990972012-02-13 20:21:20 +0200142 int level)
Avi Kivityf7bf5462012-02-13 20:12:05 +0200143{
144 PhysPageEntry *p;
145 int i;
Avi Kivitya8170e52012-10-23 12:30:10 +0200146 hwaddr step = (hwaddr)1 << (level * L2_BITS);
Avi Kivityf7bf5462012-02-13 20:12:05 +0200147
Avi Kivity07f07b32012-02-13 20:45:32 +0200148 if (!lp->is_leaf && lp->ptr == PHYS_MAP_NODE_NIL) {
Avi Kivityc19e8802012-02-13 20:25:31 +0200149 lp->ptr = phys_map_node_alloc();
150 p = phys_map_nodes[lp->ptr];
Avi Kivityf7bf5462012-02-13 20:12:05 +0200151 if (level == 0) {
152 for (i = 0; i < L2_SIZE; i++) {
Avi Kivity07f07b32012-02-13 20:45:32 +0200153 p[i].is_leaf = 1;
Avi Kivityc19e8802012-02-13 20:25:31 +0200154 p[i].ptr = phys_section_unassigned;
Avi Kivityf7bf5462012-02-13 20:12:05 +0200155 }
156 }
157 } else {
Avi Kivityc19e8802012-02-13 20:25:31 +0200158 p = phys_map_nodes[lp->ptr];
Avi Kivityf7bf5462012-02-13 20:12:05 +0200159 }
Avi Kivity29990972012-02-13 20:21:20 +0200160 lp = &p[(*index >> (level * L2_BITS)) & (L2_SIZE - 1)];
Avi Kivityf7bf5462012-02-13 20:12:05 +0200161
Avi Kivity29990972012-02-13 20:21:20 +0200162 while (*nb && lp < &p[L2_SIZE]) {
Avi Kivity07f07b32012-02-13 20:45:32 +0200163 if ((*index & (step - 1)) == 0 && *nb >= step) {
164 lp->is_leaf = true;
Avi Kivityc19e8802012-02-13 20:25:31 +0200165 lp->ptr = leaf;
Avi Kivity07f07b32012-02-13 20:45:32 +0200166 *index += step;
167 *nb -= step;
Avi Kivity29990972012-02-13 20:21:20 +0200168 } else {
169 phys_page_set_level(lp, index, nb, leaf, level - 1);
170 }
171 ++lp;
Avi Kivityf7bf5462012-02-13 20:12:05 +0200172 }
173}
174
Avi Kivityac1970f2012-10-03 16:22:53 +0200175static void phys_page_set(AddressSpaceDispatch *d,
Avi Kivitya8170e52012-10-23 12:30:10 +0200176 hwaddr index, hwaddr nb,
Avi Kivity29990972012-02-13 20:21:20 +0200177 uint16_t leaf)
bellard92e873b2004-05-21 14:52:29 +0000178{
Avi Kivity29990972012-02-13 20:21:20 +0200179 /* Wildly overreserve - it doesn't matter much. */
Avi Kivity07f07b32012-02-13 20:45:32 +0200180 phys_map_node_reserve(3 * P_L2_LEVELS);
bellard92e873b2004-05-21 14:52:29 +0000181
Avi Kivityac1970f2012-10-03 16:22:53 +0200182 phys_page_set_level(&d->phys_map, &index, &nb, leaf, P_L2_LEVELS - 1);
bellard92e873b2004-05-21 14:52:29 +0000183}
184
Avi Kivitya8170e52012-10-23 12:30:10 +0200185MemoryRegionSection *phys_page_find(AddressSpaceDispatch *d, hwaddr index)
bellard92e873b2004-05-21 14:52:29 +0000186{
Avi Kivityac1970f2012-10-03 16:22:53 +0200187 PhysPageEntry lp = d->phys_map;
Avi Kivity31ab2b42012-02-13 16:44:19 +0200188 PhysPageEntry *p;
189 int i;
Avi Kivity31ab2b42012-02-13 16:44:19 +0200190 uint16_t s_index = phys_section_unassigned;
Avi Kivityf1f6e3b2011-11-20 17:52:22 +0200191
Avi Kivity07f07b32012-02-13 20:45:32 +0200192 for (i = P_L2_LEVELS - 1; i >= 0 && !lp.is_leaf; i--) {
Avi Kivityc19e8802012-02-13 20:25:31 +0200193 if (lp.ptr == PHYS_MAP_NODE_NIL) {
Avi Kivity31ab2b42012-02-13 16:44:19 +0200194 goto not_found;
195 }
Avi Kivityc19e8802012-02-13 20:25:31 +0200196 p = phys_map_nodes[lp.ptr];
Avi Kivity31ab2b42012-02-13 16:44:19 +0200197 lp = p[(index >> (i * L2_BITS)) & (L2_SIZE - 1)];
Avi Kivityf1f6e3b2011-11-20 17:52:22 +0200198 }
Avi Kivity31ab2b42012-02-13 16:44:19 +0200199
Avi Kivityc19e8802012-02-13 20:25:31 +0200200 s_index = lp.ptr;
Avi Kivity31ab2b42012-02-13 16:44:19 +0200201not_found:
Avi Kivityf3705d52012-03-08 16:16:34 +0200202 return &phys_sections[s_index];
203}
204
Blue Swirle5548612012-04-21 13:08:33 +0000205bool memory_region_is_unassigned(MemoryRegion *mr)
206{
207 return mr != &io_mem_ram && mr != &io_mem_rom
208 && mr != &io_mem_notdirty && !mr->rom_device
209 && mr != &io_mem_watch;
210}
bellard9fa3e852004-01-04 18:06:42 +0000211#endif
bellardfd6ce8f2003-05-14 19:00:11 +0000212
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200213void cpu_exec_init_all(void)
214{
215#if !defined(CONFIG_USER_ONLY)
Umesh Deshpandeb2a86582011-08-17 00:01:33 -0700216 qemu_mutex_init(&ram_list.mutex);
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200217 memory_map_init();
218 io_mem_init();
219#endif
220}
221
Andreas Färberb170fce2013-01-20 20:23:22 +0100222#if !defined(CONFIG_USER_ONLY)
pbrook9656f322008-07-01 20:01:19 +0000223
Juan Quintelae59fb372009-09-29 22:48:21 +0200224static int cpu_common_post_load(void *opaque, int version_id)
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200225{
Andreas Färber259186a2013-01-17 18:51:17 +0100226 CPUState *cpu = opaque;
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200227
aurel323098dba2009-03-07 21:28:24 +0000228 /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
229 version_id is increased. */
Andreas Färber259186a2013-01-17 18:51:17 +0100230 cpu->interrupt_request &= ~0x01;
231 tlb_flush(cpu->env_ptr, 1);
pbrook9656f322008-07-01 20:01:19 +0000232
233 return 0;
234}
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200235
236static const VMStateDescription vmstate_cpu_common = {
237 .name = "cpu_common",
238 .version_id = 1,
239 .minimum_version_id = 1,
240 .minimum_version_id_old = 1,
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200241 .post_load = cpu_common_post_load,
242 .fields = (VMStateField []) {
Andreas Färber259186a2013-01-17 18:51:17 +0100243 VMSTATE_UINT32(halted, CPUState),
244 VMSTATE_UINT32(interrupt_request, CPUState),
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200245 VMSTATE_END_OF_LIST()
246 }
247};
Andreas Färberb170fce2013-01-20 20:23:22 +0100248#else
249#define vmstate_cpu_common vmstate_dummy
pbrook9656f322008-07-01 20:01:19 +0000250#endif
251
Andreas Färber38d8f5c2012-12-17 19:47:15 +0100252CPUState *qemu_get_cpu(int index)
Glauber Costa950f1472009-06-09 12:15:18 -0400253{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100254 CPUArchState *env = first_cpu;
Andreas Färber38d8f5c2012-12-17 19:47:15 +0100255 CPUState *cpu = NULL;
Glauber Costa950f1472009-06-09 12:15:18 -0400256
257 while (env) {
Andreas Färber55e5c282012-12-17 06:18:02 +0100258 cpu = ENV_GET_CPU(env);
259 if (cpu->cpu_index == index) {
Glauber Costa950f1472009-06-09 12:15:18 -0400260 break;
Andreas Färber55e5c282012-12-17 06:18:02 +0100261 }
Glauber Costa950f1472009-06-09 12:15:18 -0400262 env = env->next_cpu;
263 }
264
Igor Mammedovd76fdda2013-03-07 19:12:43 +0100265 return env ? cpu : NULL;
Glauber Costa950f1472009-06-09 12:15:18 -0400266}
267
Andreas Färber9349b4f2012-03-14 01:38:32 +0100268void cpu_exec_init(CPUArchState *env)
bellardfd6ce8f2003-05-14 19:00:11 +0000269{
Andreas Färber9f09e182012-05-03 06:59:07 +0200270 CPUState *cpu = ENV_GET_CPU(env);
Andreas Färberb170fce2013-01-20 20:23:22 +0100271 CPUClass *cc = CPU_GET_CLASS(cpu);
Andreas Färber9349b4f2012-03-14 01:38:32 +0100272 CPUArchState **penv;
bellard6a00d602005-11-21 23:25:50 +0000273 int cpu_index;
274
pbrookc2764712009-03-07 15:24:59 +0000275#if defined(CONFIG_USER_ONLY)
276 cpu_list_lock();
277#endif
bellard6a00d602005-11-21 23:25:50 +0000278 env->next_cpu = NULL;
279 penv = &first_cpu;
280 cpu_index = 0;
281 while (*penv != NULL) {
Nathan Froyd1e9fa732009-06-03 11:33:08 -0700282 penv = &(*penv)->next_cpu;
bellard6a00d602005-11-21 23:25:50 +0000283 cpu_index++;
284 }
Andreas Färber55e5c282012-12-17 06:18:02 +0100285 cpu->cpu_index = cpu_index;
Andreas Färber1b1ed8d2012-12-17 04:22:03 +0100286 cpu->numa_node = 0;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000287 QTAILQ_INIT(&env->breakpoints);
288 QTAILQ_INIT(&env->watchpoints);
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100289#ifndef CONFIG_USER_ONLY
Andreas Färber9f09e182012-05-03 06:59:07 +0200290 cpu->thread_id = qemu_get_thread_id();
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100291#endif
bellard6a00d602005-11-21 23:25:50 +0000292 *penv = env;
pbrookc2764712009-03-07 15:24:59 +0000293#if defined(CONFIG_USER_ONLY)
294 cpu_list_unlock();
295#endif
Andreas Färber259186a2013-01-17 18:51:17 +0100296 vmstate_register(NULL, cpu_index, &vmstate_cpu_common, cpu);
Andreas Färberb170fce2013-01-20 20:23:22 +0100297#if defined(CPU_SAVE_VERSION) && !defined(CONFIG_USER_ONLY)
Alex Williamson0be71e32010-06-25 11:09:07 -0600298 register_savevm(NULL, "cpu", cpu_index, CPU_SAVE_VERSION,
pbrookb3c77242008-06-30 16:31:04 +0000299 cpu_save, cpu_load, env);
Andreas Färberb170fce2013-01-20 20:23:22 +0100300 assert(cc->vmsd == NULL);
pbrookb3c77242008-06-30 16:31:04 +0000301#endif
Andreas Färberb170fce2013-01-20 20:23:22 +0100302 if (cc->vmsd != NULL) {
303 vmstate_register(NULL, cpu_index, cc->vmsd, cpu);
304 }
bellardfd6ce8f2003-05-14 19:00:11 +0000305}
306
bellard1fddef42005-04-17 19:16:13 +0000307#if defined(TARGET_HAS_ICE)
Paul Brook94df27f2010-02-28 23:47:45 +0000308#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +0100309static void breakpoint_invalidate(CPUArchState *env, target_ulong pc)
Paul Brook94df27f2010-02-28 23:47:45 +0000310{
311 tb_invalidate_phys_page_range(pc, pc + 1, 0);
312}
313#else
Max Filippov1e7855a2012-04-10 02:48:17 +0400314static void breakpoint_invalidate(CPUArchState *env, target_ulong pc)
315{
Max Filippov9d70c4b2012-05-27 20:21:08 +0400316 tb_invalidate_phys_addr(cpu_get_phys_page_debug(env, pc) |
317 (pc & ~TARGET_PAGE_MASK));
Max Filippov1e7855a2012-04-10 02:48:17 +0400318}
bellardc27004e2005-01-03 23:35:10 +0000319#endif
Paul Brook94df27f2010-02-28 23:47:45 +0000320#endif /* TARGET_HAS_ICE */
bellardd720b932004-04-25 17:57:43 +0000321
Paul Brookc527ee82010-03-01 03:31:14 +0000322#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +0100323void cpu_watchpoint_remove_all(CPUArchState *env, int mask)
Paul Brookc527ee82010-03-01 03:31:14 +0000324
325{
326}
327
Andreas Färber9349b4f2012-03-14 01:38:32 +0100328int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len,
Paul Brookc527ee82010-03-01 03:31:14 +0000329 int flags, CPUWatchpoint **watchpoint)
330{
331 return -ENOSYS;
332}
333#else
pbrook6658ffb2007-03-16 23:58:11 +0000334/* Add a watchpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100335int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len,
aliguoria1d1bb32008-11-18 20:07:32 +0000336 int flags, CPUWatchpoint **watchpoint)
pbrook6658ffb2007-03-16 23:58:11 +0000337{
aliguorib4051332008-11-18 20:14:20 +0000338 target_ulong len_mask = ~(len - 1);
aliguoric0ce9982008-11-25 22:13:57 +0000339 CPUWatchpoint *wp;
pbrook6658ffb2007-03-16 23:58:11 +0000340
aliguorib4051332008-11-18 20:14:20 +0000341 /* sanity checks: allow power-of-2 lengths, deny unaligned watchpoints */
Max Filippov0dc23822012-01-29 03:15:23 +0400342 if ((len & (len - 1)) || (addr & ~len_mask) ||
343 len == 0 || len > TARGET_PAGE_SIZE) {
aliguorib4051332008-11-18 20:14:20 +0000344 fprintf(stderr, "qemu: tried to set invalid watchpoint at "
345 TARGET_FMT_lx ", len=" TARGET_FMT_lu "\n", addr, len);
346 return -EINVAL;
347 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500348 wp = g_malloc(sizeof(*wp));
pbrook6658ffb2007-03-16 23:58:11 +0000349
aliguoria1d1bb32008-11-18 20:07:32 +0000350 wp->vaddr = addr;
aliguorib4051332008-11-18 20:14:20 +0000351 wp->len_mask = len_mask;
aliguoria1d1bb32008-11-18 20:07:32 +0000352 wp->flags = flags;
353
aliguori2dc9f412008-11-18 20:56:59 +0000354 /* keep all GDB-injected watchpoints in front */
aliguoric0ce9982008-11-25 22:13:57 +0000355 if (flags & BP_GDB)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000356 QTAILQ_INSERT_HEAD(&env->watchpoints, wp, entry);
aliguoric0ce9982008-11-25 22:13:57 +0000357 else
Blue Swirl72cf2d42009-09-12 07:36:22 +0000358 QTAILQ_INSERT_TAIL(&env->watchpoints, wp, entry);
aliguoria1d1bb32008-11-18 20:07:32 +0000359
pbrook6658ffb2007-03-16 23:58:11 +0000360 tlb_flush_page(env, addr);
aliguoria1d1bb32008-11-18 20:07:32 +0000361
362 if (watchpoint)
363 *watchpoint = wp;
364 return 0;
pbrook6658ffb2007-03-16 23:58:11 +0000365}
366
aliguoria1d1bb32008-11-18 20:07:32 +0000367/* Remove a specific watchpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100368int cpu_watchpoint_remove(CPUArchState *env, target_ulong addr, target_ulong len,
aliguoria1d1bb32008-11-18 20:07:32 +0000369 int flags)
pbrook6658ffb2007-03-16 23:58:11 +0000370{
aliguorib4051332008-11-18 20:14:20 +0000371 target_ulong len_mask = ~(len - 1);
aliguoria1d1bb32008-11-18 20:07:32 +0000372 CPUWatchpoint *wp;
pbrook6658ffb2007-03-16 23:58:11 +0000373
Blue Swirl72cf2d42009-09-12 07:36:22 +0000374 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
aliguorib4051332008-11-18 20:14:20 +0000375 if (addr == wp->vaddr && len_mask == wp->len_mask
aliguori6e140f22008-11-18 20:37:55 +0000376 && flags == (wp->flags & ~BP_WATCHPOINT_HIT)) {
aliguoria1d1bb32008-11-18 20:07:32 +0000377 cpu_watchpoint_remove_by_ref(env, wp);
pbrook6658ffb2007-03-16 23:58:11 +0000378 return 0;
379 }
380 }
aliguoria1d1bb32008-11-18 20:07:32 +0000381 return -ENOENT;
pbrook6658ffb2007-03-16 23:58:11 +0000382}
383
aliguoria1d1bb32008-11-18 20:07:32 +0000384/* Remove a specific watchpoint by reference. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100385void cpu_watchpoint_remove_by_ref(CPUArchState *env, CPUWatchpoint *watchpoint)
aliguoria1d1bb32008-11-18 20:07:32 +0000386{
Blue Swirl72cf2d42009-09-12 07:36:22 +0000387 QTAILQ_REMOVE(&env->watchpoints, watchpoint, entry);
edgar_igl7d03f822008-05-17 18:58:29 +0000388
aliguoria1d1bb32008-11-18 20:07:32 +0000389 tlb_flush_page(env, watchpoint->vaddr);
390
Anthony Liguori7267c092011-08-20 22:09:37 -0500391 g_free(watchpoint);
edgar_igl7d03f822008-05-17 18:58:29 +0000392}
393
aliguoria1d1bb32008-11-18 20:07:32 +0000394/* Remove all matching watchpoints. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100395void cpu_watchpoint_remove_all(CPUArchState *env, int mask)
aliguoria1d1bb32008-11-18 20:07:32 +0000396{
aliguoric0ce9982008-11-25 22:13:57 +0000397 CPUWatchpoint *wp, *next;
aliguoria1d1bb32008-11-18 20:07:32 +0000398
Blue Swirl72cf2d42009-09-12 07:36:22 +0000399 QTAILQ_FOREACH_SAFE(wp, &env->watchpoints, entry, next) {
aliguoria1d1bb32008-11-18 20:07:32 +0000400 if (wp->flags & mask)
401 cpu_watchpoint_remove_by_ref(env, wp);
aliguoric0ce9982008-11-25 22:13:57 +0000402 }
aliguoria1d1bb32008-11-18 20:07:32 +0000403}
Paul Brookc527ee82010-03-01 03:31:14 +0000404#endif
aliguoria1d1bb32008-11-18 20:07:32 +0000405
406/* Add a breakpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100407int cpu_breakpoint_insert(CPUArchState *env, target_ulong pc, int flags,
aliguoria1d1bb32008-11-18 20:07:32 +0000408 CPUBreakpoint **breakpoint)
bellard4c3a88a2003-07-26 12:06:08 +0000409{
bellard1fddef42005-04-17 19:16:13 +0000410#if defined(TARGET_HAS_ICE)
aliguoric0ce9982008-11-25 22:13:57 +0000411 CPUBreakpoint *bp;
ths3b46e622007-09-17 08:09:54 +0000412
Anthony Liguori7267c092011-08-20 22:09:37 -0500413 bp = g_malloc(sizeof(*bp));
aliguoria1d1bb32008-11-18 20:07:32 +0000414
415 bp->pc = pc;
416 bp->flags = flags;
417
aliguori2dc9f412008-11-18 20:56:59 +0000418 /* keep all GDB-injected breakpoints in front */
aliguoric0ce9982008-11-25 22:13:57 +0000419 if (flags & BP_GDB)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000420 QTAILQ_INSERT_HEAD(&env->breakpoints, bp, entry);
aliguoric0ce9982008-11-25 22:13:57 +0000421 else
Blue Swirl72cf2d42009-09-12 07:36:22 +0000422 QTAILQ_INSERT_TAIL(&env->breakpoints, bp, entry);
aliguoria1d1bb32008-11-18 20:07:32 +0000423
424 breakpoint_invalidate(env, pc);
425
426 if (breakpoint)
427 *breakpoint = bp;
428 return 0;
429#else
430 return -ENOSYS;
431#endif
432}
433
434/* Remove a specific breakpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100435int cpu_breakpoint_remove(CPUArchState *env, target_ulong pc, int flags)
aliguoria1d1bb32008-11-18 20:07:32 +0000436{
437#if defined(TARGET_HAS_ICE)
438 CPUBreakpoint *bp;
439
Blue Swirl72cf2d42009-09-12 07:36:22 +0000440 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
aliguoria1d1bb32008-11-18 20:07:32 +0000441 if (bp->pc == pc && bp->flags == flags) {
442 cpu_breakpoint_remove_by_ref(env, bp);
bellard4c3a88a2003-07-26 12:06:08 +0000443 return 0;
aliguoria1d1bb32008-11-18 20:07:32 +0000444 }
bellard4c3a88a2003-07-26 12:06:08 +0000445 }
aliguoria1d1bb32008-11-18 20:07:32 +0000446 return -ENOENT;
bellard4c3a88a2003-07-26 12:06:08 +0000447#else
aliguoria1d1bb32008-11-18 20:07:32 +0000448 return -ENOSYS;
bellard4c3a88a2003-07-26 12:06:08 +0000449#endif
450}
451
aliguoria1d1bb32008-11-18 20:07:32 +0000452/* Remove a specific breakpoint by reference. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100453void cpu_breakpoint_remove_by_ref(CPUArchState *env, CPUBreakpoint *breakpoint)
bellard4c3a88a2003-07-26 12:06:08 +0000454{
bellard1fddef42005-04-17 19:16:13 +0000455#if defined(TARGET_HAS_ICE)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000456 QTAILQ_REMOVE(&env->breakpoints, breakpoint, entry);
bellardd720b932004-04-25 17:57:43 +0000457
aliguoria1d1bb32008-11-18 20:07:32 +0000458 breakpoint_invalidate(env, breakpoint->pc);
459
Anthony Liguori7267c092011-08-20 22:09:37 -0500460 g_free(breakpoint);
aliguoria1d1bb32008-11-18 20:07:32 +0000461#endif
462}
463
464/* Remove all matching breakpoints. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100465void cpu_breakpoint_remove_all(CPUArchState *env, int mask)
aliguoria1d1bb32008-11-18 20:07:32 +0000466{
467#if defined(TARGET_HAS_ICE)
aliguoric0ce9982008-11-25 22:13:57 +0000468 CPUBreakpoint *bp, *next;
aliguoria1d1bb32008-11-18 20:07:32 +0000469
Blue Swirl72cf2d42009-09-12 07:36:22 +0000470 QTAILQ_FOREACH_SAFE(bp, &env->breakpoints, entry, next) {
aliguoria1d1bb32008-11-18 20:07:32 +0000471 if (bp->flags & mask)
472 cpu_breakpoint_remove_by_ref(env, bp);
aliguoric0ce9982008-11-25 22:13:57 +0000473 }
bellard4c3a88a2003-07-26 12:06:08 +0000474#endif
475}
476
bellardc33a3462003-07-29 20:50:33 +0000477/* enable or disable single step mode. EXCP_DEBUG is returned by the
478 CPU loop after each instruction */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100479void cpu_single_step(CPUArchState *env, int enabled)
bellardc33a3462003-07-29 20:50:33 +0000480{
bellard1fddef42005-04-17 19:16:13 +0000481#if defined(TARGET_HAS_ICE)
bellardc33a3462003-07-29 20:50:33 +0000482 if (env->singlestep_enabled != enabled) {
483 env->singlestep_enabled = enabled;
aliguorie22a25c2009-03-12 20:12:48 +0000484 if (kvm_enabled())
485 kvm_update_guest_debug(env, 0);
486 else {
Stuart Bradyccbb4d42009-05-03 12:15:06 +0100487 /* must flush all the translated code to avoid inconsistencies */
aliguorie22a25c2009-03-12 20:12:48 +0000488 /* XXX: only flush what is necessary */
489 tb_flush(env);
490 }
bellardc33a3462003-07-29 20:50:33 +0000491 }
492#endif
493}
494
Andreas Färber9349b4f2012-03-14 01:38:32 +0100495void cpu_reset_interrupt(CPUArchState *env, int mask)
bellardb54ad042004-05-20 13:42:52 +0000496{
Andreas Färber259186a2013-01-17 18:51:17 +0100497 CPUState *cpu = ENV_GET_CPU(env);
498
499 cpu->interrupt_request &= ~mask;
bellardb54ad042004-05-20 13:42:52 +0000500}
501
Andreas Färber9349b4f2012-03-14 01:38:32 +0100502void cpu_exit(CPUArchState *env)
aurel323098dba2009-03-07 21:28:24 +0000503{
Andreas Färberfcd7d002012-12-17 08:02:44 +0100504 CPUState *cpu = ENV_GET_CPU(env);
505
506 cpu->exit_request = 1;
Peter Maydell378df4b2013-02-22 18:10:03 +0000507 cpu->tcg_exit_req = 1;
aurel323098dba2009-03-07 21:28:24 +0000508}
509
Andreas Färber9349b4f2012-03-14 01:38:32 +0100510void cpu_abort(CPUArchState *env, const char *fmt, ...)
bellard75012672003-06-21 13:11:07 +0000511{
512 va_list ap;
pbrook493ae1f2007-11-23 16:53:59 +0000513 va_list ap2;
bellard75012672003-06-21 13:11:07 +0000514
515 va_start(ap, fmt);
pbrook493ae1f2007-11-23 16:53:59 +0000516 va_copy(ap2, ap);
bellard75012672003-06-21 13:11:07 +0000517 fprintf(stderr, "qemu: fatal: ");
518 vfprintf(stderr, fmt, ap);
519 fprintf(stderr, "\n");
Peter Maydell6fd2a022012-10-05 15:04:43 +0100520 cpu_dump_state(env, stderr, fprintf, CPU_DUMP_FPU | CPU_DUMP_CCOP);
aliguori93fcfe32009-01-15 22:34:14 +0000521 if (qemu_log_enabled()) {
522 qemu_log("qemu: fatal: ");
523 qemu_log_vprintf(fmt, ap2);
524 qemu_log("\n");
Peter Maydell6fd2a022012-10-05 15:04:43 +0100525 log_cpu_state(env, CPU_DUMP_FPU | CPU_DUMP_CCOP);
aliguori31b1a7b2009-01-15 22:35:09 +0000526 qemu_log_flush();
aliguori93fcfe32009-01-15 22:34:14 +0000527 qemu_log_close();
balrog924edca2007-06-10 14:07:13 +0000528 }
pbrook493ae1f2007-11-23 16:53:59 +0000529 va_end(ap2);
j_mayerf9373292007-09-29 12:18:20 +0000530 va_end(ap);
Riku Voipiofd052bf2010-01-25 14:30:49 +0200531#if defined(CONFIG_USER_ONLY)
532 {
533 struct sigaction act;
534 sigfillset(&act.sa_mask);
535 act.sa_handler = SIG_DFL;
536 sigaction(SIGABRT, &act, NULL);
537 }
538#endif
bellard75012672003-06-21 13:11:07 +0000539 abort();
540}
541
Andreas Färber9349b4f2012-03-14 01:38:32 +0100542CPUArchState *cpu_copy(CPUArchState *env)
thsc5be9f02007-02-28 20:20:53 +0000543{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100544 CPUArchState *new_env = cpu_init(env->cpu_model_str);
545 CPUArchState *next_cpu = new_env->next_cpu;
aliguori5a38f082009-01-15 20:16:51 +0000546#if defined(TARGET_HAS_ICE)
547 CPUBreakpoint *bp;
548 CPUWatchpoint *wp;
549#endif
550
Andreas Färber9349b4f2012-03-14 01:38:32 +0100551 memcpy(new_env, env, sizeof(CPUArchState));
aliguori5a38f082009-01-15 20:16:51 +0000552
Andreas Färber55e5c282012-12-17 06:18:02 +0100553 /* Preserve chaining. */
thsc5be9f02007-02-28 20:20:53 +0000554 new_env->next_cpu = next_cpu;
aliguori5a38f082009-01-15 20:16:51 +0000555
556 /* Clone all break/watchpoints.
557 Note: Once we support ptrace with hw-debug register access, make sure
558 BP_CPU break/watchpoints are handled correctly on clone. */
Blue Swirl72cf2d42009-09-12 07:36:22 +0000559 QTAILQ_INIT(&env->breakpoints);
560 QTAILQ_INIT(&env->watchpoints);
aliguori5a38f082009-01-15 20:16:51 +0000561#if defined(TARGET_HAS_ICE)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000562 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
aliguori5a38f082009-01-15 20:16:51 +0000563 cpu_breakpoint_insert(new_env, bp->pc, bp->flags, NULL);
564 }
Blue Swirl72cf2d42009-09-12 07:36:22 +0000565 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
aliguori5a38f082009-01-15 20:16:51 +0000566 cpu_watchpoint_insert(new_env, wp->vaddr, (~wp->len_mask) + 1,
567 wp->flags, NULL);
568 }
569#endif
570
thsc5be9f02007-02-28 20:20:53 +0000571 return new_env;
572}
573
bellard01243112004-01-04 15:48:17 +0000574#if !defined(CONFIG_USER_ONLY)
Juan Quintelad24981d2012-05-22 00:42:40 +0200575static void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t end,
576 uintptr_t length)
bellard1ccde1c2004-02-06 19:46:14 +0000577{
Juan Quintelad24981d2012-05-22 00:42:40 +0200578 uintptr_t start1;
bellardf23db162005-08-21 19:12:28 +0000579
bellard1ccde1c2004-02-06 19:46:14 +0000580 /* we modify the TLB cache so that the dirty bit will be set again
581 when accessing the range */
Stefan Weil8efe0ca2012-04-12 15:42:19 +0200582 start1 = (uintptr_t)qemu_safe_ram_ptr(start);
Stefan Weila57d23e2011-04-30 22:49:26 +0200583 /* Check that we don't span multiple blocks - this breaks the
pbrook5579c7f2009-04-11 14:47:08 +0000584 address comparisons below. */
Stefan Weil8efe0ca2012-04-12 15:42:19 +0200585 if ((uintptr_t)qemu_safe_ram_ptr(end - 1) - start1
pbrook5579c7f2009-04-11 14:47:08 +0000586 != (end - 1) - start) {
587 abort();
588 }
Blue Swirle5548612012-04-21 13:08:33 +0000589 cpu_tlb_reset_dirty_all(start1, length);
Juan Quintelad24981d2012-05-22 00:42:40 +0200590
591}
592
593/* Note: start and end must be within the same ram block. */
594void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
595 int dirty_flags)
596{
597 uintptr_t length;
598
599 start &= TARGET_PAGE_MASK;
600 end = TARGET_PAGE_ALIGN(end);
601
602 length = end - start;
603 if (length == 0)
604 return;
605 cpu_physical_memory_mask_dirty_range(start, length, dirty_flags);
606
607 if (tcg_enabled()) {
608 tlb_reset_dirty_range_all(start, end, length);
609 }
bellard1ccde1c2004-02-06 19:46:14 +0000610}
611
Blue Swirl8b9c99d2012-10-28 11:04:51 +0000612static int cpu_physical_memory_set_dirty_tracking(int enable)
aliguori74576192008-10-06 14:02:03 +0000613{
Michael S. Tsirkinf6f3fbc2010-01-27 22:06:57 +0200614 int ret = 0;
aliguori74576192008-10-06 14:02:03 +0000615 in_migration = enable;
Michael S. Tsirkinf6f3fbc2010-01-27 22:06:57 +0200616 return ret;
aliguori74576192008-10-06 14:02:03 +0000617}
618
Avi Kivitya8170e52012-10-23 12:30:10 +0200619hwaddr memory_region_section_get_iotlb(CPUArchState *env,
Blue Swirle5548612012-04-21 13:08:33 +0000620 MemoryRegionSection *section,
621 target_ulong vaddr,
Avi Kivitya8170e52012-10-23 12:30:10 +0200622 hwaddr paddr,
Blue Swirle5548612012-04-21 13:08:33 +0000623 int prot,
624 target_ulong *address)
625{
Avi Kivitya8170e52012-10-23 12:30:10 +0200626 hwaddr iotlb;
Blue Swirle5548612012-04-21 13:08:33 +0000627 CPUWatchpoint *wp;
628
Blue Swirlcc5bea62012-04-14 14:56:48 +0000629 if (memory_region_is_ram(section->mr)) {
Blue Swirle5548612012-04-21 13:08:33 +0000630 /* Normal RAM. */
631 iotlb = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +0000632 + memory_region_section_addr(section, paddr);
Blue Swirle5548612012-04-21 13:08:33 +0000633 if (!section->readonly) {
634 iotlb |= phys_section_notdirty;
635 } else {
636 iotlb |= phys_section_rom;
637 }
638 } else {
639 /* IO handlers are currently passed a physical address.
640 It would be nice to pass an offset from the base address
641 of that region. This would avoid having to special case RAM,
642 and avoid full address decoding in every device.
643 We can't use the high bits of pd for this because
644 IO_MEM_ROMD uses these as a ram address. */
645 iotlb = section - phys_sections;
Blue Swirlcc5bea62012-04-14 14:56:48 +0000646 iotlb += memory_region_section_addr(section, paddr);
Blue Swirle5548612012-04-21 13:08:33 +0000647 }
648
649 /* Make accesses to pages with watchpoints go via the
650 watchpoint trap routines. */
651 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
652 if (vaddr == (wp->vaddr & TARGET_PAGE_MASK)) {
653 /* Avoid trapping reads of pages with a write breakpoint. */
654 if ((prot & PAGE_WRITE) || (wp->flags & BP_MEM_READ)) {
655 iotlb = phys_section_watch + paddr;
656 *address |= TLB_MMIO;
657 break;
658 }
659 }
660 }
661
662 return iotlb;
663}
bellard9fa3e852004-01-04 18:06:42 +0000664#endif /* defined(CONFIG_USER_ONLY) */
665
pbrooke2eef172008-06-08 01:09:01 +0000666#if !defined(CONFIG_USER_ONLY)
pbrook8da3ff12008-12-01 18:59:50 +0000667
Paul Brookc04b2b72010-03-01 03:31:14 +0000668#define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK)
669typedef struct subpage_t {
Avi Kivity70c68e42012-01-02 12:32:48 +0200670 MemoryRegion iomem;
Avi Kivitya8170e52012-10-23 12:30:10 +0200671 hwaddr base;
Avi Kivity5312bd82012-02-12 18:32:55 +0200672 uint16_t sub_section[TARGET_PAGE_SIZE];
Paul Brookc04b2b72010-03-01 03:31:14 +0000673} subpage_t;
674
Anthony Liguoric227f092009-10-01 16:12:16 -0500675static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
Avi Kivity5312bd82012-02-12 18:32:55 +0200676 uint16_t section);
Avi Kivitya8170e52012-10-23 12:30:10 +0200677static subpage_t *subpage_init(hwaddr base);
Avi Kivity5312bd82012-02-12 18:32:55 +0200678static void destroy_page_desc(uint16_t section_index)
Avi Kivity54688b12012-02-09 17:34:32 +0200679{
Avi Kivity5312bd82012-02-12 18:32:55 +0200680 MemoryRegionSection *section = &phys_sections[section_index];
681 MemoryRegion *mr = section->mr;
Avi Kivity54688b12012-02-09 17:34:32 +0200682
683 if (mr->subpage) {
684 subpage_t *subpage = container_of(mr, subpage_t, iomem);
685 memory_region_destroy(&subpage->iomem);
686 g_free(subpage);
687 }
688}
689
Avi Kivity4346ae32012-02-10 17:00:01 +0200690static void destroy_l2_mapping(PhysPageEntry *lp, unsigned level)
Avi Kivity54688b12012-02-09 17:34:32 +0200691{
692 unsigned i;
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200693 PhysPageEntry *p;
Avi Kivity54688b12012-02-09 17:34:32 +0200694
Avi Kivityc19e8802012-02-13 20:25:31 +0200695 if (lp->ptr == PHYS_MAP_NODE_NIL) {
Avi Kivity54688b12012-02-09 17:34:32 +0200696 return;
697 }
698
Avi Kivityc19e8802012-02-13 20:25:31 +0200699 p = phys_map_nodes[lp->ptr];
Avi Kivity4346ae32012-02-10 17:00:01 +0200700 for (i = 0; i < L2_SIZE; ++i) {
Avi Kivity07f07b32012-02-13 20:45:32 +0200701 if (!p[i].is_leaf) {
Avi Kivity54688b12012-02-09 17:34:32 +0200702 destroy_l2_mapping(&p[i], level - 1);
Avi Kivity4346ae32012-02-10 17:00:01 +0200703 } else {
Avi Kivityc19e8802012-02-13 20:25:31 +0200704 destroy_page_desc(p[i].ptr);
Avi Kivity54688b12012-02-09 17:34:32 +0200705 }
Avi Kivity54688b12012-02-09 17:34:32 +0200706 }
Avi Kivity07f07b32012-02-13 20:45:32 +0200707 lp->is_leaf = 0;
Avi Kivityc19e8802012-02-13 20:25:31 +0200708 lp->ptr = PHYS_MAP_NODE_NIL;
Avi Kivity54688b12012-02-09 17:34:32 +0200709}
710
Avi Kivityac1970f2012-10-03 16:22:53 +0200711static void destroy_all_mappings(AddressSpaceDispatch *d)
Avi Kivity54688b12012-02-09 17:34:32 +0200712{
Avi Kivityac1970f2012-10-03 16:22:53 +0200713 destroy_l2_mapping(&d->phys_map, P_L2_LEVELS - 1);
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200714 phys_map_nodes_reset();
Avi Kivity54688b12012-02-09 17:34:32 +0200715}
716
Avi Kivity5312bd82012-02-12 18:32:55 +0200717static uint16_t phys_section_add(MemoryRegionSection *section)
718{
719 if (phys_sections_nb == phys_sections_nb_alloc) {
720 phys_sections_nb_alloc = MAX(phys_sections_nb_alloc * 2, 16);
721 phys_sections = g_renew(MemoryRegionSection, phys_sections,
722 phys_sections_nb_alloc);
723 }
724 phys_sections[phys_sections_nb] = *section;
725 return phys_sections_nb++;
726}
727
728static void phys_sections_clear(void)
729{
730 phys_sections_nb = 0;
731}
732
Avi Kivityac1970f2012-10-03 16:22:53 +0200733static void register_subpage(AddressSpaceDispatch *d, MemoryRegionSection *section)
Avi Kivity0f0cb162012-02-13 17:14:32 +0200734{
735 subpage_t *subpage;
Avi Kivitya8170e52012-10-23 12:30:10 +0200736 hwaddr base = section->offset_within_address_space
Avi Kivity0f0cb162012-02-13 17:14:32 +0200737 & TARGET_PAGE_MASK;
Avi Kivityac1970f2012-10-03 16:22:53 +0200738 MemoryRegionSection *existing = phys_page_find(d, base >> TARGET_PAGE_BITS);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200739 MemoryRegionSection subsection = {
740 .offset_within_address_space = base,
741 .size = TARGET_PAGE_SIZE,
742 };
Avi Kivitya8170e52012-10-23 12:30:10 +0200743 hwaddr start, end;
Avi Kivity0f0cb162012-02-13 17:14:32 +0200744
Avi Kivityf3705d52012-03-08 16:16:34 +0200745 assert(existing->mr->subpage || existing->mr == &io_mem_unassigned);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200746
Avi Kivityf3705d52012-03-08 16:16:34 +0200747 if (!(existing->mr->subpage)) {
Avi Kivity0f0cb162012-02-13 17:14:32 +0200748 subpage = subpage_init(base);
749 subsection.mr = &subpage->iomem;
Avi Kivityac1970f2012-10-03 16:22:53 +0200750 phys_page_set(d, base >> TARGET_PAGE_BITS, 1,
Avi Kivity29990972012-02-13 20:21:20 +0200751 phys_section_add(&subsection));
Avi Kivity0f0cb162012-02-13 17:14:32 +0200752 } else {
Avi Kivityf3705d52012-03-08 16:16:34 +0200753 subpage = container_of(existing->mr, subpage_t, iomem);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200754 }
755 start = section->offset_within_address_space & ~TARGET_PAGE_MASK;
Tyler Halladb2a9b2012-07-25 18:45:03 -0400756 end = start + section->size - 1;
Avi Kivity0f0cb162012-02-13 17:14:32 +0200757 subpage_register(subpage, start, end, phys_section_add(section));
758}
759
760
Avi Kivityac1970f2012-10-03 16:22:53 +0200761static void register_multipage(AddressSpaceDispatch *d, MemoryRegionSection *section)
bellard33417e72003-08-10 21:47:01 +0000762{
Avi Kivitya8170e52012-10-23 12:30:10 +0200763 hwaddr start_addr = section->offset_within_address_space;
Avi Kivitydd811242012-01-02 12:17:03 +0200764 ram_addr_t size = section->size;
Avi Kivitya8170e52012-10-23 12:30:10 +0200765 hwaddr addr;
Avi Kivity5312bd82012-02-12 18:32:55 +0200766 uint16_t section_index = phys_section_add(section);
Avi Kivitydd811242012-01-02 12:17:03 +0200767
Edgar E. Iglesias3b8e6a22011-04-05 13:00:36 +0200768 assert(size);
Michael S. Tsirkinf6f3fbc2010-01-27 22:06:57 +0200769
Edgar E. Iglesias3b8e6a22011-04-05 13:00:36 +0200770 addr = start_addr;
Avi Kivityac1970f2012-10-03 16:22:53 +0200771 phys_page_set(d, addr >> TARGET_PAGE_BITS, size >> TARGET_PAGE_BITS,
Avi Kivity29990972012-02-13 20:21:20 +0200772 section_index);
bellard33417e72003-08-10 21:47:01 +0000773}
774
Avi Kivityac1970f2012-10-03 16:22:53 +0200775static void mem_add(MemoryListener *listener, MemoryRegionSection *section)
Avi Kivity0f0cb162012-02-13 17:14:32 +0200776{
Avi Kivityac1970f2012-10-03 16:22:53 +0200777 AddressSpaceDispatch *d = container_of(listener, AddressSpaceDispatch, listener);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200778 MemoryRegionSection now = *section, remain = *section;
779
780 if ((now.offset_within_address_space & ~TARGET_PAGE_MASK)
781 || (now.size < TARGET_PAGE_SIZE)) {
782 now.size = MIN(TARGET_PAGE_ALIGN(now.offset_within_address_space)
783 - now.offset_within_address_space,
784 now.size);
Avi Kivityac1970f2012-10-03 16:22:53 +0200785 register_subpage(d, &now);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200786 remain.size -= now.size;
787 remain.offset_within_address_space += now.size;
788 remain.offset_within_region += now.size;
789 }
Tyler Hall69b67642012-07-25 18:45:04 -0400790 while (remain.size >= TARGET_PAGE_SIZE) {
791 now = remain;
792 if (remain.offset_within_region & ~TARGET_PAGE_MASK) {
793 now.size = TARGET_PAGE_SIZE;
Avi Kivityac1970f2012-10-03 16:22:53 +0200794 register_subpage(d, &now);
Tyler Hall69b67642012-07-25 18:45:04 -0400795 } else {
796 now.size &= TARGET_PAGE_MASK;
Avi Kivityac1970f2012-10-03 16:22:53 +0200797 register_multipage(d, &now);
Tyler Hall69b67642012-07-25 18:45:04 -0400798 }
Avi Kivity0f0cb162012-02-13 17:14:32 +0200799 remain.size -= now.size;
800 remain.offset_within_address_space += now.size;
801 remain.offset_within_region += now.size;
802 }
803 now = remain;
804 if (now.size) {
Avi Kivityac1970f2012-10-03 16:22:53 +0200805 register_subpage(d, &now);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200806 }
807}
808
Sheng Yang62a27442010-01-26 19:21:16 +0800809void qemu_flush_coalesced_mmio_buffer(void)
810{
811 if (kvm_enabled())
812 kvm_flush_coalesced_mmio_buffer();
813}
814
Umesh Deshpandeb2a86582011-08-17 00:01:33 -0700815void qemu_mutex_lock_ramlist(void)
816{
817 qemu_mutex_lock(&ram_list.mutex);
818}
819
820void qemu_mutex_unlock_ramlist(void)
821{
822 qemu_mutex_unlock(&ram_list.mutex);
823}
824
Marcelo Tosattic9027602010-03-01 20:25:08 -0300825#if defined(__linux__) && !defined(TARGET_S390X)
826
827#include <sys/vfs.h>
828
829#define HUGETLBFS_MAGIC 0x958458f6
830
831static long gethugepagesize(const char *path)
832{
833 struct statfs fs;
834 int ret;
835
836 do {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900837 ret = statfs(path, &fs);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300838 } while (ret != 0 && errno == EINTR);
839
840 if (ret != 0) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900841 perror(path);
842 return 0;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300843 }
844
845 if (fs.f_type != HUGETLBFS_MAGIC)
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900846 fprintf(stderr, "Warning: path not on HugeTLBFS: %s\n", path);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300847
848 return fs.f_bsize;
849}
850
Alex Williamson04b16652010-07-02 11:13:17 -0600851static void *file_ram_alloc(RAMBlock *block,
852 ram_addr_t memory,
853 const char *path)
Marcelo Tosattic9027602010-03-01 20:25:08 -0300854{
855 char *filename;
856 void *area;
857 int fd;
858#ifdef MAP_POPULATE
859 int flags;
860#endif
861 unsigned long hpagesize;
862
863 hpagesize = gethugepagesize(path);
864 if (!hpagesize) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900865 return NULL;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300866 }
867
868 if (memory < hpagesize) {
869 return NULL;
870 }
871
872 if (kvm_enabled() && !kvm_has_sync_mmu()) {
873 fprintf(stderr, "host lacks kvm mmu notifiers, -mem-path unsupported\n");
874 return NULL;
875 }
876
Stefan Weile4ada482013-01-16 18:37:23 +0100877 filename = g_strdup_printf("%s/qemu_back_mem.XXXXXX", path);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300878
879 fd = mkstemp(filename);
880 if (fd < 0) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900881 perror("unable to create backing store for hugepages");
Stefan Weile4ada482013-01-16 18:37:23 +0100882 g_free(filename);
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900883 return NULL;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300884 }
885 unlink(filename);
Stefan Weile4ada482013-01-16 18:37:23 +0100886 g_free(filename);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300887
888 memory = (memory+hpagesize-1) & ~(hpagesize-1);
889
890 /*
891 * ftruncate is not supported by hugetlbfs in older
892 * hosts, so don't bother bailing out on errors.
893 * If anything goes wrong with it under other filesystems,
894 * mmap will fail.
895 */
896 if (ftruncate(fd, memory))
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900897 perror("ftruncate");
Marcelo Tosattic9027602010-03-01 20:25:08 -0300898
899#ifdef MAP_POPULATE
900 /* NB: MAP_POPULATE won't exhaustively alloc all phys pages in the case
901 * MAP_PRIVATE is requested. For mem_prealloc we mmap as MAP_SHARED
902 * to sidestep this quirk.
903 */
904 flags = mem_prealloc ? MAP_POPULATE | MAP_SHARED : MAP_PRIVATE;
905 area = mmap(0, memory, PROT_READ | PROT_WRITE, flags, fd, 0);
906#else
907 area = mmap(0, memory, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
908#endif
909 if (area == MAP_FAILED) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900910 perror("file_ram_alloc: can't mmap RAM pages");
911 close(fd);
912 return (NULL);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300913 }
Alex Williamson04b16652010-07-02 11:13:17 -0600914 block->fd = fd;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300915 return area;
916}
917#endif
918
Alex Williamsond17b5282010-06-25 11:08:38 -0600919static ram_addr_t find_ram_offset(ram_addr_t size)
920{
Alex Williamson04b16652010-07-02 11:13:17 -0600921 RAMBlock *block, *next_block;
Alex Williamson3e837b22011-10-31 08:54:09 -0600922 ram_addr_t offset = RAM_ADDR_MAX, mingap = RAM_ADDR_MAX;
Alex Williamson04b16652010-07-02 11:13:17 -0600923
Paolo Bonzinia3161032012-11-14 15:54:48 +0100924 if (QTAILQ_EMPTY(&ram_list.blocks))
Alex Williamson04b16652010-07-02 11:13:17 -0600925 return 0;
926
Paolo Bonzinia3161032012-11-14 15:54:48 +0100927 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Anthony PERARDf15fbc42011-07-20 08:17:42 +0000928 ram_addr_t end, next = RAM_ADDR_MAX;
Alex Williamson04b16652010-07-02 11:13:17 -0600929
930 end = block->offset + block->length;
931
Paolo Bonzinia3161032012-11-14 15:54:48 +0100932 QTAILQ_FOREACH(next_block, &ram_list.blocks, next) {
Alex Williamson04b16652010-07-02 11:13:17 -0600933 if (next_block->offset >= end) {
934 next = MIN(next, next_block->offset);
935 }
936 }
937 if (next - end >= size && next - end < mingap) {
Alex Williamson3e837b22011-10-31 08:54:09 -0600938 offset = end;
Alex Williamson04b16652010-07-02 11:13:17 -0600939 mingap = next - end;
940 }
941 }
Alex Williamson3e837b22011-10-31 08:54:09 -0600942
943 if (offset == RAM_ADDR_MAX) {
944 fprintf(stderr, "Failed to find gap of requested size: %" PRIu64 "\n",
945 (uint64_t)size);
946 abort();
947 }
948
Alex Williamson04b16652010-07-02 11:13:17 -0600949 return offset;
950}
951
Juan Quintela652d7ec2012-07-20 10:37:54 +0200952ram_addr_t last_ram_offset(void)
Alex Williamson04b16652010-07-02 11:13:17 -0600953{
Alex Williamsond17b5282010-06-25 11:08:38 -0600954 RAMBlock *block;
955 ram_addr_t last = 0;
956
Paolo Bonzinia3161032012-11-14 15:54:48 +0100957 QTAILQ_FOREACH(block, &ram_list.blocks, next)
Alex Williamsond17b5282010-06-25 11:08:38 -0600958 last = MAX(last, block->offset + block->length);
959
960 return last;
961}
962
Jason Baronddb97f12012-08-02 15:44:16 -0400963static void qemu_ram_setup_dump(void *addr, ram_addr_t size)
964{
965 int ret;
966 QemuOpts *machine_opts;
967
968 /* Use MADV_DONTDUMP, if user doesn't want the guest memory in the core */
969 machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
970 if (machine_opts &&
971 !qemu_opt_get_bool(machine_opts, "dump-guest-core", true)) {
972 ret = qemu_madvise(addr, size, QEMU_MADV_DONTDUMP);
973 if (ret) {
974 perror("qemu_madvise");
975 fprintf(stderr, "madvise doesn't support MADV_DONTDUMP, "
976 "but dump_guest_core=off specified\n");
977 }
978 }
979}
980
Avi Kivityc5705a72011-12-20 15:59:12 +0200981void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev)
Cam Macdonell84b89d72010-07-26 18:10:57 -0600982{
983 RAMBlock *new_block, *block;
984
Avi Kivityc5705a72011-12-20 15:59:12 +0200985 new_block = NULL;
Paolo Bonzinia3161032012-11-14 15:54:48 +0100986 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Avi Kivityc5705a72011-12-20 15:59:12 +0200987 if (block->offset == addr) {
988 new_block = block;
989 break;
990 }
991 }
992 assert(new_block);
993 assert(!new_block->idstr[0]);
Cam Macdonell84b89d72010-07-26 18:10:57 -0600994
Anthony Liguori09e5ab62012-02-03 12:28:43 -0600995 if (dev) {
996 char *id = qdev_get_dev_path(dev);
Cam Macdonell84b89d72010-07-26 18:10:57 -0600997 if (id) {
998 snprintf(new_block->idstr, sizeof(new_block->idstr), "%s/", id);
Anthony Liguori7267c092011-08-20 22:09:37 -0500999 g_free(id);
Cam Macdonell84b89d72010-07-26 18:10:57 -06001000 }
1001 }
1002 pstrcat(new_block->idstr, sizeof(new_block->idstr), name);
1003
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001004 /* This assumes the iothread lock is taken here too. */
1005 qemu_mutex_lock_ramlist();
Paolo Bonzinia3161032012-11-14 15:54:48 +01001006 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Avi Kivityc5705a72011-12-20 15:59:12 +02001007 if (block != new_block && !strcmp(block->idstr, new_block->idstr)) {
Cam Macdonell84b89d72010-07-26 18:10:57 -06001008 fprintf(stderr, "RAMBlock \"%s\" already registered, abort!\n",
1009 new_block->idstr);
1010 abort();
1011 }
1012 }
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001013 qemu_mutex_unlock_ramlist();
Avi Kivityc5705a72011-12-20 15:59:12 +02001014}
1015
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001016static int memory_try_enable_merging(void *addr, size_t len)
1017{
1018 QemuOpts *opts;
1019
1020 opts = qemu_opts_find(qemu_find_opts("machine"), 0);
1021 if (opts && !qemu_opt_get_bool(opts, "mem-merge", true)) {
1022 /* disabled by the user */
1023 return 0;
1024 }
1025
1026 return qemu_madvise(addr, len, QEMU_MADV_MERGEABLE);
1027}
1028
Avi Kivityc5705a72011-12-20 15:59:12 +02001029ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
1030 MemoryRegion *mr)
1031{
Paolo Bonziniabb26d62012-11-14 16:00:51 +01001032 RAMBlock *block, *new_block;
Avi Kivityc5705a72011-12-20 15:59:12 +02001033
1034 size = TARGET_PAGE_ALIGN(size);
1035 new_block = g_malloc0(sizeof(*new_block));
Cam Macdonell84b89d72010-07-26 18:10:57 -06001036
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001037 /* This assumes the iothread lock is taken here too. */
1038 qemu_mutex_lock_ramlist();
Avi Kivity7c637362011-12-21 13:09:49 +02001039 new_block->mr = mr;
Jun Nakajima432d2682010-08-31 16:41:25 +01001040 new_block->offset = find_ram_offset(size);
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001041 if (host) {
1042 new_block->host = host;
Huang Yingcd19cfa2011-03-02 08:56:19 +01001043 new_block->flags |= RAM_PREALLOC_MASK;
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001044 } else {
1045 if (mem_path) {
1046#if defined (__linux__) && !defined(TARGET_S390X)
1047 new_block->host = file_ram_alloc(new_block, size, mem_path);
1048 if (!new_block->host) {
1049 new_block->host = qemu_vmalloc(size);
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001050 memory_try_enable_merging(new_block->host, size);
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001051 }
1052#else
1053 fprintf(stderr, "-mem-path option unsupported\n");
1054 exit(1);
1055#endif
1056 } else {
Jan Kiszka868bb332011-06-21 22:59:09 +02001057 if (xen_enabled()) {
Avi Kivityfce537d2011-12-18 15:48:55 +02001058 xen_ram_alloc(new_block->offset, size, mr);
Christian Borntraegerfdec9912012-06-15 05:10:30 +00001059 } else if (kvm_enabled()) {
1060 /* some s390/kvm configurations have special constraints */
1061 new_block->host = kvm_vmalloc(size);
Jun Nakajima432d2682010-08-31 16:41:25 +01001062 } else {
1063 new_block->host = qemu_vmalloc(size);
1064 }
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001065 memory_try_enable_merging(new_block->host, size);
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001066 }
1067 }
Cam Macdonell84b89d72010-07-26 18:10:57 -06001068 new_block->length = size;
1069
Paolo Bonziniabb26d62012-11-14 16:00:51 +01001070 /* Keep the list sorted from biggest to smallest block. */
1071 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
1072 if (block->length < new_block->length) {
1073 break;
1074 }
1075 }
1076 if (block) {
1077 QTAILQ_INSERT_BEFORE(block, new_block, next);
1078 } else {
1079 QTAILQ_INSERT_TAIL(&ram_list.blocks, new_block, next);
1080 }
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001081 ram_list.mru_block = NULL;
Cam Macdonell84b89d72010-07-26 18:10:57 -06001082
Umesh Deshpandef798b072011-08-18 11:41:17 -07001083 ram_list.version++;
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001084 qemu_mutex_unlock_ramlist();
Umesh Deshpandef798b072011-08-18 11:41:17 -07001085
Anthony Liguori7267c092011-08-20 22:09:37 -05001086 ram_list.phys_dirty = g_realloc(ram_list.phys_dirty,
Cam Macdonell84b89d72010-07-26 18:10:57 -06001087 last_ram_offset() >> TARGET_PAGE_BITS);
Igor Mitsyanko5fda0432012-08-10 18:45:11 +04001088 memset(ram_list.phys_dirty + (new_block->offset >> TARGET_PAGE_BITS),
1089 0, size >> TARGET_PAGE_BITS);
Juan Quintela1720aee2012-06-22 13:14:17 +02001090 cpu_physical_memory_set_dirty_range(new_block->offset, size, 0xff);
Cam Macdonell84b89d72010-07-26 18:10:57 -06001091
Jason Baronddb97f12012-08-02 15:44:16 -04001092 qemu_ram_setup_dump(new_block->host, size);
Luiz Capitulinoad0b5322012-10-05 16:47:57 -03001093 qemu_madvise(new_block->host, size, QEMU_MADV_HUGEPAGE);
Jason Baronddb97f12012-08-02 15:44:16 -04001094
Cam Macdonell84b89d72010-07-26 18:10:57 -06001095 if (kvm_enabled())
1096 kvm_setup_guest_memory(new_block->host, size);
1097
1098 return new_block->offset;
1099}
1100
Avi Kivityc5705a72011-12-20 15:59:12 +02001101ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr)
pbrook94a6b542009-04-11 17:15:54 +00001102{
Avi Kivityc5705a72011-12-20 15:59:12 +02001103 return qemu_ram_alloc_from_ptr(size, NULL, mr);
pbrook94a6b542009-04-11 17:15:54 +00001104}
bellarde9a1ab12007-02-08 23:08:38 +00001105
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001106void qemu_ram_free_from_ptr(ram_addr_t addr)
1107{
1108 RAMBlock *block;
1109
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001110 /* This assumes the iothread lock is taken here too. */
1111 qemu_mutex_lock_ramlist();
Paolo Bonzinia3161032012-11-14 15:54:48 +01001112 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001113 if (addr == block->offset) {
Paolo Bonzinia3161032012-11-14 15:54:48 +01001114 QTAILQ_REMOVE(&ram_list.blocks, block, next);
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001115 ram_list.mru_block = NULL;
Umesh Deshpandef798b072011-08-18 11:41:17 -07001116 ram_list.version++;
Anthony Liguori7267c092011-08-20 22:09:37 -05001117 g_free(block);
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001118 break;
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001119 }
1120 }
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001121 qemu_mutex_unlock_ramlist();
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001122}
1123
Anthony Liguoric227f092009-10-01 16:12:16 -05001124void qemu_ram_free(ram_addr_t addr)
bellarde9a1ab12007-02-08 23:08:38 +00001125{
Alex Williamson04b16652010-07-02 11:13:17 -06001126 RAMBlock *block;
1127
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001128 /* This assumes the iothread lock is taken here too. */
1129 qemu_mutex_lock_ramlist();
Paolo Bonzinia3161032012-11-14 15:54:48 +01001130 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Alex Williamson04b16652010-07-02 11:13:17 -06001131 if (addr == block->offset) {
Paolo Bonzinia3161032012-11-14 15:54:48 +01001132 QTAILQ_REMOVE(&ram_list.blocks, block, next);
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001133 ram_list.mru_block = NULL;
Umesh Deshpandef798b072011-08-18 11:41:17 -07001134 ram_list.version++;
Huang Yingcd19cfa2011-03-02 08:56:19 +01001135 if (block->flags & RAM_PREALLOC_MASK) {
1136 ;
1137 } else if (mem_path) {
Alex Williamson04b16652010-07-02 11:13:17 -06001138#if defined (__linux__) && !defined(TARGET_S390X)
1139 if (block->fd) {
1140 munmap(block->host, block->length);
1141 close(block->fd);
1142 } else {
1143 qemu_vfree(block->host);
1144 }
Jan Kiszkafd28aa12011-03-15 12:26:14 +01001145#else
1146 abort();
Alex Williamson04b16652010-07-02 11:13:17 -06001147#endif
1148 } else {
1149#if defined(TARGET_S390X) && defined(CONFIG_KVM)
1150 munmap(block->host, block->length);
1151#else
Jan Kiszka868bb332011-06-21 22:59:09 +02001152 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001153 xen_invalidate_map_cache_entry(block->host);
Jun Nakajima432d2682010-08-31 16:41:25 +01001154 } else {
1155 qemu_vfree(block->host);
1156 }
Alex Williamson04b16652010-07-02 11:13:17 -06001157#endif
1158 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001159 g_free(block);
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001160 break;
Alex Williamson04b16652010-07-02 11:13:17 -06001161 }
1162 }
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001163 qemu_mutex_unlock_ramlist();
Alex Williamson04b16652010-07-02 11:13:17 -06001164
bellarde9a1ab12007-02-08 23:08:38 +00001165}
1166
Huang Yingcd19cfa2011-03-02 08:56:19 +01001167#ifndef _WIN32
1168void qemu_ram_remap(ram_addr_t addr, ram_addr_t length)
1169{
1170 RAMBlock *block;
1171 ram_addr_t offset;
1172 int flags;
1173 void *area, *vaddr;
1174
Paolo Bonzinia3161032012-11-14 15:54:48 +01001175 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Huang Yingcd19cfa2011-03-02 08:56:19 +01001176 offset = addr - block->offset;
1177 if (offset < block->length) {
1178 vaddr = block->host + offset;
1179 if (block->flags & RAM_PREALLOC_MASK) {
1180 ;
1181 } else {
1182 flags = MAP_FIXED;
1183 munmap(vaddr, length);
1184 if (mem_path) {
1185#if defined(__linux__) && !defined(TARGET_S390X)
1186 if (block->fd) {
1187#ifdef MAP_POPULATE
1188 flags |= mem_prealloc ? MAP_POPULATE | MAP_SHARED :
1189 MAP_PRIVATE;
1190#else
1191 flags |= MAP_PRIVATE;
1192#endif
1193 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1194 flags, block->fd, offset);
1195 } else {
1196 flags |= MAP_PRIVATE | MAP_ANONYMOUS;
1197 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1198 flags, -1, 0);
1199 }
Jan Kiszkafd28aa12011-03-15 12:26:14 +01001200#else
1201 abort();
Huang Yingcd19cfa2011-03-02 08:56:19 +01001202#endif
1203 } else {
1204#if defined(TARGET_S390X) && defined(CONFIG_KVM)
1205 flags |= MAP_SHARED | MAP_ANONYMOUS;
1206 area = mmap(vaddr, length, PROT_EXEC|PROT_READ|PROT_WRITE,
1207 flags, -1, 0);
1208#else
1209 flags |= MAP_PRIVATE | MAP_ANONYMOUS;
1210 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1211 flags, -1, 0);
1212#endif
1213 }
1214 if (area != vaddr) {
Anthony PERARDf15fbc42011-07-20 08:17:42 +00001215 fprintf(stderr, "Could not remap addr: "
1216 RAM_ADDR_FMT "@" RAM_ADDR_FMT "\n",
Huang Yingcd19cfa2011-03-02 08:56:19 +01001217 length, addr);
1218 exit(1);
1219 }
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001220 memory_try_enable_merging(vaddr, length);
Jason Baronddb97f12012-08-02 15:44:16 -04001221 qemu_ram_setup_dump(vaddr, length);
Huang Yingcd19cfa2011-03-02 08:56:19 +01001222 }
1223 return;
1224 }
1225 }
1226}
1227#endif /* !_WIN32 */
1228
pbrookdc828ca2009-04-09 22:21:07 +00001229/* Return a host pointer to ram allocated with qemu_ram_alloc.
pbrook5579c7f2009-04-11 14:47:08 +00001230 With the exception of the softmmu code in this file, this should
1231 only be used for local memory (e.g. video ram) that the device owns,
1232 and knows it isn't going to access beyond the end of the block.
1233
1234 It should not be used for general purpose DMA.
1235 Use cpu_physical_memory_map/cpu_physical_memory_rw instead.
1236 */
Anthony Liguoric227f092009-10-01 16:12:16 -05001237void *qemu_get_ram_ptr(ram_addr_t addr)
pbrookdc828ca2009-04-09 22:21:07 +00001238{
pbrook94a6b542009-04-11 17:15:54 +00001239 RAMBlock *block;
1240
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001241 /* The list is protected by the iothread lock here. */
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001242 block = ram_list.mru_block;
1243 if (block && addr - block->offset < block->length) {
1244 goto found;
1245 }
Paolo Bonzinia3161032012-11-14 15:54:48 +01001246 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Alex Williamsonf471a172010-06-11 11:11:42 -06001247 if (addr - block->offset < block->length) {
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001248 goto found;
Alex Williamsonf471a172010-06-11 11:11:42 -06001249 }
pbrook94a6b542009-04-11 17:15:54 +00001250 }
Alex Williamsonf471a172010-06-11 11:11:42 -06001251
1252 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1253 abort();
1254
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001255found:
1256 ram_list.mru_block = block;
1257 if (xen_enabled()) {
1258 /* We need to check if the requested address is in the RAM
1259 * because we don't want to map the entire memory in QEMU.
1260 * In that case just map until the end of the page.
1261 */
1262 if (block->offset == 0) {
1263 return xen_map_cache(addr, 0, 0);
1264 } else if (block->host == NULL) {
1265 block->host =
1266 xen_map_cache(block->offset, block->length, 1);
1267 }
1268 }
1269 return block->host + (addr - block->offset);
pbrookdc828ca2009-04-09 22:21:07 +00001270}
1271
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001272/* Return a host pointer to ram allocated with qemu_ram_alloc. Same as
1273 * qemu_get_ram_ptr but do not touch ram_list.mru_block.
1274 *
1275 * ??? Is this still necessary?
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001276 */
Blue Swirl8b9c99d2012-10-28 11:04:51 +00001277static void *qemu_safe_ram_ptr(ram_addr_t addr)
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001278{
1279 RAMBlock *block;
1280
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001281 /* The list is protected by the iothread lock here. */
Paolo Bonzinia3161032012-11-14 15:54:48 +01001282 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001283 if (addr - block->offset < block->length) {
Jan Kiszka868bb332011-06-21 22:59:09 +02001284 if (xen_enabled()) {
Jun Nakajima432d2682010-08-31 16:41:25 +01001285 /* We need to check if the requested address is in the RAM
1286 * because we don't want to map the entire memory in QEMU.
Stefano Stabellini712c2b42011-05-19 18:35:46 +01001287 * In that case just map until the end of the page.
Jun Nakajima432d2682010-08-31 16:41:25 +01001288 */
1289 if (block->offset == 0) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001290 return xen_map_cache(addr, 0, 0);
Jun Nakajima432d2682010-08-31 16:41:25 +01001291 } else if (block->host == NULL) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001292 block->host =
1293 xen_map_cache(block->offset, block->length, 1);
Jun Nakajima432d2682010-08-31 16:41:25 +01001294 }
1295 }
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001296 return block->host + (addr - block->offset);
1297 }
1298 }
1299
1300 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1301 abort();
1302
1303 return NULL;
1304}
1305
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001306/* Return a host pointer to guest's ram. Similar to qemu_get_ram_ptr
1307 * but takes a size argument */
Blue Swirl8b9c99d2012-10-28 11:04:51 +00001308static void *qemu_ram_ptr_length(ram_addr_t addr, ram_addr_t *size)
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001309{
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01001310 if (*size == 0) {
1311 return NULL;
1312 }
Jan Kiszka868bb332011-06-21 22:59:09 +02001313 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001314 return xen_map_cache(addr, *size, 1);
Jan Kiszka868bb332011-06-21 22:59:09 +02001315 } else {
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001316 RAMBlock *block;
1317
Paolo Bonzinia3161032012-11-14 15:54:48 +01001318 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001319 if (addr - block->offset < block->length) {
1320 if (addr - block->offset + *size > block->length)
1321 *size = block->length - addr + block->offset;
1322 return block->host + (addr - block->offset);
1323 }
1324 }
1325
1326 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1327 abort();
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001328 }
1329}
1330
Anthony PERARD050a0dd2010-09-16 13:57:49 +01001331void qemu_put_ram_ptr(void *addr)
1332{
1333 trace_qemu_put_ram_ptr(addr);
Anthony PERARD050a0dd2010-09-16 13:57:49 +01001334}
1335
Marcelo Tosattie8902612010-10-11 15:31:19 -03001336int qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr)
pbrook5579c7f2009-04-11 14:47:08 +00001337{
pbrook94a6b542009-04-11 17:15:54 +00001338 RAMBlock *block;
1339 uint8_t *host = ptr;
1340
Jan Kiszka868bb332011-06-21 22:59:09 +02001341 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001342 *ram_addr = xen_ram_addr_from_mapcache(ptr);
Stefano Stabellini712c2b42011-05-19 18:35:46 +01001343 return 0;
1344 }
1345
Paolo Bonzinia3161032012-11-14 15:54:48 +01001346 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Jun Nakajima432d2682010-08-31 16:41:25 +01001347 /* This case append when the block is not mapped. */
1348 if (block->host == NULL) {
1349 continue;
1350 }
Alex Williamsonf471a172010-06-11 11:11:42 -06001351 if (host - block->host < block->length) {
Marcelo Tosattie8902612010-10-11 15:31:19 -03001352 *ram_addr = block->offset + (host - block->host);
1353 return 0;
Alex Williamsonf471a172010-06-11 11:11:42 -06001354 }
pbrook94a6b542009-04-11 17:15:54 +00001355 }
Jun Nakajima432d2682010-08-31 16:41:25 +01001356
Marcelo Tosattie8902612010-10-11 15:31:19 -03001357 return -1;
1358}
Alex Williamsonf471a172010-06-11 11:11:42 -06001359
Marcelo Tosattie8902612010-10-11 15:31:19 -03001360/* Some of the softmmu routines need to translate from a host pointer
1361 (typically a TLB entry) back to a ram offset. */
1362ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr)
1363{
1364 ram_addr_t ram_addr;
Alex Williamsonf471a172010-06-11 11:11:42 -06001365
Marcelo Tosattie8902612010-10-11 15:31:19 -03001366 if (qemu_ram_addr_from_host(ptr, &ram_addr)) {
1367 fprintf(stderr, "Bad ram pointer %p\n", ptr);
1368 abort();
1369 }
1370 return ram_addr;
pbrook5579c7f2009-04-11 14:47:08 +00001371}
1372
Avi Kivitya8170e52012-10-23 12:30:10 +02001373static uint64_t unassigned_mem_read(void *opaque, hwaddr addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001374 unsigned size)
bellard33417e72003-08-10 21:47:01 +00001375{
pbrook67d3b952006-12-18 05:03:52 +00001376#ifdef DEBUG_UNASSIGNED
blueswir1ab3d1722007-11-04 07:31:40 +00001377 printf("Unassigned mem read " TARGET_FMT_plx "\n", addr);
pbrook67d3b952006-12-18 05:03:52 +00001378#endif
Richard Henderson5b450402011-04-18 16:13:12 -07001379#if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE)
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001380 cpu_unassigned_access(cpu_single_env, addr, 0, 0, 0, size);
blueswir1e18231a2008-10-06 18:46:28 +00001381#endif
1382 return 0;
1383}
1384
Avi Kivitya8170e52012-10-23 12:30:10 +02001385static void unassigned_mem_write(void *opaque, hwaddr addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001386 uint64_t val, unsigned size)
blueswir1e18231a2008-10-06 18:46:28 +00001387{
1388#ifdef DEBUG_UNASSIGNED
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001389 printf("Unassigned mem write " TARGET_FMT_plx " = 0x%"PRIx64"\n", addr, val);
blueswir1e18231a2008-10-06 18:46:28 +00001390#endif
Richard Henderson5b450402011-04-18 16:13:12 -07001391#if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE)
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001392 cpu_unassigned_access(cpu_single_env, addr, 1, 0, 0, size);
blueswir1e18231a2008-10-06 18:46:28 +00001393#endif
1394}
1395
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001396static const MemoryRegionOps unassigned_mem_ops = {
1397 .read = unassigned_mem_read,
1398 .write = unassigned_mem_write,
1399 .endianness = DEVICE_NATIVE_ENDIAN,
bellard33417e72003-08-10 21:47:01 +00001400};
1401
Avi Kivitya8170e52012-10-23 12:30:10 +02001402static uint64_t error_mem_read(void *opaque, hwaddr addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001403 unsigned size)
1404{
1405 abort();
1406}
1407
Avi Kivitya8170e52012-10-23 12:30:10 +02001408static void error_mem_write(void *opaque, hwaddr addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001409 uint64_t value, unsigned size)
1410{
1411 abort();
1412}
1413
1414static const MemoryRegionOps error_mem_ops = {
1415 .read = error_mem_read,
1416 .write = error_mem_write,
1417 .endianness = DEVICE_NATIVE_ENDIAN,
bellard33417e72003-08-10 21:47:01 +00001418};
1419
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001420static const MemoryRegionOps rom_mem_ops = {
1421 .read = error_mem_read,
1422 .write = unassigned_mem_write,
1423 .endianness = DEVICE_NATIVE_ENDIAN,
1424};
1425
Avi Kivitya8170e52012-10-23 12:30:10 +02001426static void notdirty_mem_write(void *opaque, hwaddr ram_addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001427 uint64_t val, unsigned size)
bellard1ccde1c2004-02-06 19:46:14 +00001428{
bellard3a7d9292005-08-21 09:26:42 +00001429 int dirty_flags;
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09001430 dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
bellard3a7d9292005-08-21 09:26:42 +00001431 if (!(dirty_flags & CODE_DIRTY_FLAG)) {
1432#if !defined(CONFIG_USER_ONLY)
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001433 tb_invalidate_phys_page_fast(ram_addr, size);
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09001434 dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
bellard3a7d9292005-08-21 09:26:42 +00001435#endif
1436 }
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001437 switch (size) {
1438 case 1:
1439 stb_p(qemu_get_ram_ptr(ram_addr), val);
1440 break;
1441 case 2:
1442 stw_p(qemu_get_ram_ptr(ram_addr), val);
1443 break;
1444 case 4:
1445 stl_p(qemu_get_ram_ptr(ram_addr), val);
1446 break;
1447 default:
1448 abort();
1449 }
bellardf23db162005-08-21 19:12:28 +00001450 dirty_flags |= (0xff & ~CODE_DIRTY_FLAG);
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09001451 cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
bellardf23db162005-08-21 19:12:28 +00001452 /* we remove the notdirty callback only if the code has been
1453 flushed */
1454 if (dirty_flags == 0xff)
pbrook2e70f6e2008-06-29 01:03:05 +00001455 tlb_set_dirty(cpu_single_env, cpu_single_env->mem_io_vaddr);
bellard1ccde1c2004-02-06 19:46:14 +00001456}
1457
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001458static const MemoryRegionOps notdirty_mem_ops = {
1459 .read = error_mem_read,
1460 .write = notdirty_mem_write,
1461 .endianness = DEVICE_NATIVE_ENDIAN,
bellard1ccde1c2004-02-06 19:46:14 +00001462};
1463
pbrook0f459d12008-06-09 00:20:13 +00001464/* Generate a debug exception if a watchpoint has been hit. */
aliguorib4051332008-11-18 20:14:20 +00001465static void check_watchpoint(int offset, int len_mask, int flags)
pbrook0f459d12008-06-09 00:20:13 +00001466{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001467 CPUArchState *env = cpu_single_env;
aliguori06d55cc2008-11-18 20:24:06 +00001468 target_ulong pc, cs_base;
pbrook0f459d12008-06-09 00:20:13 +00001469 target_ulong vaddr;
aliguoria1d1bb32008-11-18 20:07:32 +00001470 CPUWatchpoint *wp;
aliguori06d55cc2008-11-18 20:24:06 +00001471 int cpu_flags;
pbrook0f459d12008-06-09 00:20:13 +00001472
aliguori06d55cc2008-11-18 20:24:06 +00001473 if (env->watchpoint_hit) {
1474 /* We re-entered the check after replacing the TB. Now raise
1475 * the debug interrupt so that is will trigger after the
1476 * current instruction. */
1477 cpu_interrupt(env, CPU_INTERRUPT_DEBUG);
1478 return;
1479 }
pbrook2e70f6e2008-06-29 01:03:05 +00001480 vaddr = (env->mem_io_vaddr & TARGET_PAGE_MASK) + offset;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001481 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
aliguorib4051332008-11-18 20:14:20 +00001482 if ((vaddr == (wp->vaddr & len_mask) ||
1483 (vaddr & wp->len_mask) == wp->vaddr) && (wp->flags & flags)) {
aliguori6e140f22008-11-18 20:37:55 +00001484 wp->flags |= BP_WATCHPOINT_HIT;
1485 if (!env->watchpoint_hit) {
1486 env->watchpoint_hit = wp;
Blue Swirl5a316522012-12-02 21:28:09 +00001487 tb_check_watchpoint(env);
aliguori6e140f22008-11-18 20:37:55 +00001488 if (wp->flags & BP_STOP_BEFORE_ACCESS) {
1489 env->exception_index = EXCP_DEBUG;
Max Filippov488d6572012-01-29 02:24:39 +04001490 cpu_loop_exit(env);
aliguori6e140f22008-11-18 20:37:55 +00001491 } else {
1492 cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags);
1493 tb_gen_code(env, pc, cs_base, cpu_flags, 1);
Max Filippov488d6572012-01-29 02:24:39 +04001494 cpu_resume_from_signal(env, NULL);
aliguori6e140f22008-11-18 20:37:55 +00001495 }
aliguori06d55cc2008-11-18 20:24:06 +00001496 }
aliguori6e140f22008-11-18 20:37:55 +00001497 } else {
1498 wp->flags &= ~BP_WATCHPOINT_HIT;
pbrook0f459d12008-06-09 00:20:13 +00001499 }
1500 }
1501}
1502
pbrook6658ffb2007-03-16 23:58:11 +00001503/* Watchpoint access routines. Watchpoints are inserted using TLB tricks,
1504 so these check for a hit then pass through to the normal out-of-line
1505 phys routines. */
Avi Kivitya8170e52012-10-23 12:30:10 +02001506static uint64_t watch_mem_read(void *opaque, hwaddr addr,
Avi Kivity1ec9b902012-01-02 12:47:48 +02001507 unsigned size)
pbrook6658ffb2007-03-16 23:58:11 +00001508{
Avi Kivity1ec9b902012-01-02 12:47:48 +02001509 check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_READ);
1510 switch (size) {
1511 case 1: return ldub_phys(addr);
1512 case 2: return lduw_phys(addr);
1513 case 4: return ldl_phys(addr);
1514 default: abort();
1515 }
pbrook6658ffb2007-03-16 23:58:11 +00001516}
1517
Avi Kivitya8170e52012-10-23 12:30:10 +02001518static void watch_mem_write(void *opaque, hwaddr addr,
Avi Kivity1ec9b902012-01-02 12:47:48 +02001519 uint64_t val, unsigned size)
pbrook6658ffb2007-03-16 23:58:11 +00001520{
Avi Kivity1ec9b902012-01-02 12:47:48 +02001521 check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_WRITE);
1522 switch (size) {
Max Filippov67364152012-01-29 00:01:40 +04001523 case 1:
1524 stb_phys(addr, val);
1525 break;
1526 case 2:
1527 stw_phys(addr, val);
1528 break;
1529 case 4:
1530 stl_phys(addr, val);
1531 break;
Avi Kivity1ec9b902012-01-02 12:47:48 +02001532 default: abort();
1533 }
pbrook6658ffb2007-03-16 23:58:11 +00001534}
1535
Avi Kivity1ec9b902012-01-02 12:47:48 +02001536static const MemoryRegionOps watch_mem_ops = {
1537 .read = watch_mem_read,
1538 .write = watch_mem_write,
1539 .endianness = DEVICE_NATIVE_ENDIAN,
pbrook6658ffb2007-03-16 23:58:11 +00001540};
pbrook6658ffb2007-03-16 23:58:11 +00001541
Avi Kivitya8170e52012-10-23 12:30:10 +02001542static uint64_t subpage_read(void *opaque, hwaddr addr,
Avi Kivity70c68e42012-01-02 12:32:48 +02001543 unsigned len)
blueswir1db7b5422007-05-26 17:36:03 +00001544{
Avi Kivity70c68e42012-01-02 12:32:48 +02001545 subpage_t *mmio = opaque;
Richard Hendersonf6405242010-04-22 16:47:31 -07001546 unsigned int idx = SUBPAGE_IDX(addr);
Avi Kivity5312bd82012-02-12 18:32:55 +02001547 MemoryRegionSection *section;
blueswir1db7b5422007-05-26 17:36:03 +00001548#if defined(DEBUG_SUBPAGE)
1549 printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d\n", __func__,
1550 mmio, len, addr, idx);
1551#endif
blueswir1db7b5422007-05-26 17:36:03 +00001552
Avi Kivity5312bd82012-02-12 18:32:55 +02001553 section = &phys_sections[mmio->sub_section[idx]];
1554 addr += mmio->base;
1555 addr -= section->offset_within_address_space;
1556 addr += section->offset_within_region;
Avi Kivity37ec01d2012-03-08 18:08:35 +02001557 return io_mem_read(section->mr, addr, len);
blueswir1db7b5422007-05-26 17:36:03 +00001558}
1559
Avi Kivitya8170e52012-10-23 12:30:10 +02001560static void subpage_write(void *opaque, hwaddr addr,
Avi Kivity70c68e42012-01-02 12:32:48 +02001561 uint64_t value, unsigned len)
blueswir1db7b5422007-05-26 17:36:03 +00001562{
Avi Kivity70c68e42012-01-02 12:32:48 +02001563 subpage_t *mmio = opaque;
Richard Hendersonf6405242010-04-22 16:47:31 -07001564 unsigned int idx = SUBPAGE_IDX(addr);
Avi Kivity5312bd82012-02-12 18:32:55 +02001565 MemoryRegionSection *section;
blueswir1db7b5422007-05-26 17:36:03 +00001566#if defined(DEBUG_SUBPAGE)
Avi Kivity70c68e42012-01-02 12:32:48 +02001567 printf("%s: subpage %p len %d addr " TARGET_FMT_plx
1568 " idx %d value %"PRIx64"\n",
Richard Hendersonf6405242010-04-22 16:47:31 -07001569 __func__, mmio, len, addr, idx, value);
blueswir1db7b5422007-05-26 17:36:03 +00001570#endif
Richard Hendersonf6405242010-04-22 16:47:31 -07001571
Avi Kivity5312bd82012-02-12 18:32:55 +02001572 section = &phys_sections[mmio->sub_section[idx]];
1573 addr += mmio->base;
1574 addr -= section->offset_within_address_space;
1575 addr += section->offset_within_region;
Avi Kivity37ec01d2012-03-08 18:08:35 +02001576 io_mem_write(section->mr, addr, value, len);
blueswir1db7b5422007-05-26 17:36:03 +00001577}
1578
Avi Kivity70c68e42012-01-02 12:32:48 +02001579static const MemoryRegionOps subpage_ops = {
1580 .read = subpage_read,
1581 .write = subpage_write,
1582 .endianness = DEVICE_NATIVE_ENDIAN,
blueswir1db7b5422007-05-26 17:36:03 +00001583};
1584
Avi Kivitya8170e52012-10-23 12:30:10 +02001585static uint64_t subpage_ram_read(void *opaque, hwaddr addr,
Avi Kivityde712f92012-01-02 12:41:07 +02001586 unsigned size)
Andreas Färber56384e82011-11-30 16:26:21 +01001587{
1588 ram_addr_t raddr = addr;
1589 void *ptr = qemu_get_ram_ptr(raddr);
Avi Kivityde712f92012-01-02 12:41:07 +02001590 switch (size) {
1591 case 1: return ldub_p(ptr);
1592 case 2: return lduw_p(ptr);
1593 case 4: return ldl_p(ptr);
1594 default: abort();
1595 }
Andreas Färber56384e82011-11-30 16:26:21 +01001596}
1597
Avi Kivitya8170e52012-10-23 12:30:10 +02001598static void subpage_ram_write(void *opaque, hwaddr addr,
Avi Kivityde712f92012-01-02 12:41:07 +02001599 uint64_t value, unsigned size)
Andreas Färber56384e82011-11-30 16:26:21 +01001600{
1601 ram_addr_t raddr = addr;
1602 void *ptr = qemu_get_ram_ptr(raddr);
Avi Kivityde712f92012-01-02 12:41:07 +02001603 switch (size) {
1604 case 1: return stb_p(ptr, value);
1605 case 2: return stw_p(ptr, value);
1606 case 4: return stl_p(ptr, value);
1607 default: abort();
1608 }
Andreas Färber56384e82011-11-30 16:26:21 +01001609}
1610
Avi Kivityde712f92012-01-02 12:41:07 +02001611static const MemoryRegionOps subpage_ram_ops = {
1612 .read = subpage_ram_read,
1613 .write = subpage_ram_write,
1614 .endianness = DEVICE_NATIVE_ENDIAN,
Andreas Färber56384e82011-11-30 16:26:21 +01001615};
1616
Anthony Liguoric227f092009-10-01 16:12:16 -05001617static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
Avi Kivity5312bd82012-02-12 18:32:55 +02001618 uint16_t section)
blueswir1db7b5422007-05-26 17:36:03 +00001619{
1620 int idx, eidx;
1621
1622 if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE)
1623 return -1;
1624 idx = SUBPAGE_IDX(start);
1625 eidx = SUBPAGE_IDX(end);
1626#if defined(DEBUG_SUBPAGE)
Blue Swirl0bf9e312009-07-20 17:19:25 +00001627 printf("%s: %p start %08x end %08x idx %08x eidx %08x mem %ld\n", __func__,
blueswir1db7b5422007-05-26 17:36:03 +00001628 mmio, start, end, idx, eidx, memory);
1629#endif
Avi Kivity5312bd82012-02-12 18:32:55 +02001630 if (memory_region_is_ram(phys_sections[section].mr)) {
1631 MemoryRegionSection new_section = phys_sections[section];
1632 new_section.mr = &io_mem_subpage_ram;
1633 section = phys_section_add(&new_section);
Andreas Färber56384e82011-11-30 16:26:21 +01001634 }
blueswir1db7b5422007-05-26 17:36:03 +00001635 for (; idx <= eidx; idx++) {
Avi Kivity5312bd82012-02-12 18:32:55 +02001636 mmio->sub_section[idx] = section;
blueswir1db7b5422007-05-26 17:36:03 +00001637 }
1638
1639 return 0;
1640}
1641
Avi Kivitya8170e52012-10-23 12:30:10 +02001642static subpage_t *subpage_init(hwaddr base)
blueswir1db7b5422007-05-26 17:36:03 +00001643{
Anthony Liguoric227f092009-10-01 16:12:16 -05001644 subpage_t *mmio;
blueswir1db7b5422007-05-26 17:36:03 +00001645
Anthony Liguori7267c092011-08-20 22:09:37 -05001646 mmio = g_malloc0(sizeof(subpage_t));
aliguori1eec6142009-02-05 22:06:18 +00001647
1648 mmio->base = base;
Avi Kivity70c68e42012-01-02 12:32:48 +02001649 memory_region_init_io(&mmio->iomem, &subpage_ops, mmio,
1650 "subpage", TARGET_PAGE_SIZE);
Avi Kivityb3b00c72012-01-02 13:20:11 +02001651 mmio->iomem.subpage = true;
blueswir1db7b5422007-05-26 17:36:03 +00001652#if defined(DEBUG_SUBPAGE)
aliguori1eec6142009-02-05 22:06:18 +00001653 printf("%s: %p base " TARGET_FMT_plx " len %08x %d\n", __func__,
1654 mmio, base, TARGET_PAGE_SIZE, subpage_memory);
blueswir1db7b5422007-05-26 17:36:03 +00001655#endif
Avi Kivity0f0cb162012-02-13 17:14:32 +02001656 subpage_register(mmio, 0, TARGET_PAGE_SIZE-1, phys_section_unassigned);
blueswir1db7b5422007-05-26 17:36:03 +00001657
1658 return mmio;
1659}
1660
Avi Kivity5312bd82012-02-12 18:32:55 +02001661static uint16_t dummy_section(MemoryRegion *mr)
1662{
1663 MemoryRegionSection section = {
1664 .mr = mr,
1665 .offset_within_address_space = 0,
1666 .offset_within_region = 0,
1667 .size = UINT64_MAX,
1668 };
1669
1670 return phys_section_add(&section);
1671}
1672
Avi Kivitya8170e52012-10-23 12:30:10 +02001673MemoryRegion *iotlb_to_region(hwaddr index)
Avi Kivityaa102232012-03-08 17:06:55 +02001674{
Avi Kivity37ec01d2012-03-08 18:08:35 +02001675 return phys_sections[index & ~TARGET_PAGE_MASK].mr;
Avi Kivityaa102232012-03-08 17:06:55 +02001676}
1677
Avi Kivitye9179ce2009-06-14 11:38:52 +03001678static void io_mem_init(void)
1679{
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001680 memory_region_init_io(&io_mem_ram, &error_mem_ops, NULL, "ram", UINT64_MAX);
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001681 memory_region_init_io(&io_mem_rom, &rom_mem_ops, NULL, "rom", UINT64_MAX);
1682 memory_region_init_io(&io_mem_unassigned, &unassigned_mem_ops, NULL,
1683 "unassigned", UINT64_MAX);
1684 memory_region_init_io(&io_mem_notdirty, &notdirty_mem_ops, NULL,
1685 "notdirty", UINT64_MAX);
Avi Kivityde712f92012-01-02 12:41:07 +02001686 memory_region_init_io(&io_mem_subpage_ram, &subpage_ram_ops, NULL,
1687 "subpage-ram", UINT64_MAX);
Avi Kivity1ec9b902012-01-02 12:47:48 +02001688 memory_region_init_io(&io_mem_watch, &watch_mem_ops, NULL,
1689 "watch", UINT64_MAX);
Avi Kivitye9179ce2009-06-14 11:38:52 +03001690}
1691
Avi Kivityac1970f2012-10-03 16:22:53 +02001692static void mem_begin(MemoryListener *listener)
1693{
1694 AddressSpaceDispatch *d = container_of(listener, AddressSpaceDispatch, listener);
1695
1696 destroy_all_mappings(d);
1697 d->phys_map.ptr = PHYS_MAP_NODE_NIL;
1698}
1699
Avi Kivity50c1e142012-02-08 21:36:02 +02001700static void core_begin(MemoryListener *listener)
1701{
Avi Kivity5312bd82012-02-12 18:32:55 +02001702 phys_sections_clear();
1703 phys_section_unassigned = dummy_section(&io_mem_unassigned);
Avi Kivityaa102232012-03-08 17:06:55 +02001704 phys_section_notdirty = dummy_section(&io_mem_notdirty);
1705 phys_section_rom = dummy_section(&io_mem_rom);
1706 phys_section_watch = dummy_section(&io_mem_watch);
Avi Kivity50c1e142012-02-08 21:36:02 +02001707}
1708
Avi Kivity1d711482012-10-02 18:54:45 +02001709static void tcg_commit(MemoryListener *listener)
Avi Kivity50c1e142012-02-08 21:36:02 +02001710{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001711 CPUArchState *env;
Avi Kivity117712c2012-02-12 21:23:17 +02001712
1713 /* since each CPU stores ram addresses in its TLB cache, we must
1714 reset the modified entries */
1715 /* XXX: slow ! */
1716 for(env = first_cpu; env != NULL; env = env->next_cpu) {
1717 tlb_flush(env, 1);
1718 }
Avi Kivity50c1e142012-02-08 21:36:02 +02001719}
1720
Avi Kivity93632742012-02-08 16:54:16 +02001721static void core_log_global_start(MemoryListener *listener)
1722{
1723 cpu_physical_memory_set_dirty_tracking(1);
1724}
1725
1726static void core_log_global_stop(MemoryListener *listener)
1727{
1728 cpu_physical_memory_set_dirty_tracking(0);
1729}
1730
Avi Kivity4855d412012-02-08 21:16:05 +02001731static void io_region_add(MemoryListener *listener,
1732 MemoryRegionSection *section)
1733{
Avi Kivitya2d33522012-03-05 17:40:12 +02001734 MemoryRegionIORange *mrio = g_new(MemoryRegionIORange, 1);
1735
1736 mrio->mr = section->mr;
1737 mrio->offset = section->offset_within_region;
1738 iorange_init(&mrio->iorange, &memory_region_iorange_ops,
Avi Kivity4855d412012-02-08 21:16:05 +02001739 section->offset_within_address_space, section->size);
Avi Kivitya2d33522012-03-05 17:40:12 +02001740 ioport_register(&mrio->iorange);
Avi Kivity4855d412012-02-08 21:16:05 +02001741}
1742
1743static void io_region_del(MemoryListener *listener,
1744 MemoryRegionSection *section)
1745{
1746 isa_unassign_ioport(section->offset_within_address_space, section->size);
1747}
1748
Avi Kivity93632742012-02-08 16:54:16 +02001749static MemoryListener core_memory_listener = {
Avi Kivity50c1e142012-02-08 21:36:02 +02001750 .begin = core_begin,
Avi Kivity93632742012-02-08 16:54:16 +02001751 .log_global_start = core_log_global_start,
1752 .log_global_stop = core_log_global_stop,
Avi Kivityac1970f2012-10-03 16:22:53 +02001753 .priority = 1,
Avi Kivity93632742012-02-08 16:54:16 +02001754};
1755
Avi Kivity4855d412012-02-08 21:16:05 +02001756static MemoryListener io_memory_listener = {
1757 .region_add = io_region_add,
1758 .region_del = io_region_del,
Avi Kivity4855d412012-02-08 21:16:05 +02001759 .priority = 0,
1760};
1761
Avi Kivity1d711482012-10-02 18:54:45 +02001762static MemoryListener tcg_memory_listener = {
1763 .commit = tcg_commit,
1764};
1765
Avi Kivityac1970f2012-10-03 16:22:53 +02001766void address_space_init_dispatch(AddressSpace *as)
1767{
1768 AddressSpaceDispatch *d = g_new(AddressSpaceDispatch, 1);
1769
1770 d->phys_map = (PhysPageEntry) { .ptr = PHYS_MAP_NODE_NIL, .is_leaf = 0 };
1771 d->listener = (MemoryListener) {
1772 .begin = mem_begin,
1773 .region_add = mem_add,
1774 .region_nop = mem_add,
1775 .priority = 0,
1776 };
1777 as->dispatch = d;
1778 memory_listener_register(&d->listener, as);
1779}
1780
Avi Kivity83f3c252012-10-07 12:59:55 +02001781void address_space_destroy_dispatch(AddressSpace *as)
1782{
1783 AddressSpaceDispatch *d = as->dispatch;
1784
1785 memory_listener_unregister(&d->listener);
1786 destroy_l2_mapping(&d->phys_map, P_L2_LEVELS - 1);
1787 g_free(d);
1788 as->dispatch = NULL;
1789}
1790
Avi Kivity62152b82011-07-26 14:26:14 +03001791static void memory_map_init(void)
1792{
Anthony Liguori7267c092011-08-20 22:09:37 -05001793 system_memory = g_malloc(sizeof(*system_memory));
Avi Kivity8417ceb2011-08-03 11:56:14 +03001794 memory_region_init(system_memory, "system", INT64_MAX);
Avi Kivity2673a5d2012-10-02 18:49:28 +02001795 address_space_init(&address_space_memory, system_memory);
1796 address_space_memory.name = "memory";
Avi Kivity309cb472011-08-08 16:09:03 +03001797
Anthony Liguori7267c092011-08-20 22:09:37 -05001798 system_io = g_malloc(sizeof(*system_io));
Avi Kivity309cb472011-08-08 16:09:03 +03001799 memory_region_init(system_io, "io", 65536);
Avi Kivity2673a5d2012-10-02 18:49:28 +02001800 address_space_init(&address_space_io, system_io);
1801 address_space_io.name = "I/O";
Avi Kivity93632742012-02-08 16:54:16 +02001802
Avi Kivityf6790af2012-10-02 20:13:51 +02001803 memory_listener_register(&core_memory_listener, &address_space_memory);
1804 memory_listener_register(&io_memory_listener, &address_space_io);
1805 memory_listener_register(&tcg_memory_listener, &address_space_memory);
Peter Maydell9e119082012-10-29 11:34:32 +10001806
1807 dma_context_init(&dma_context_memory, &address_space_memory,
1808 NULL, NULL, NULL);
Avi Kivity62152b82011-07-26 14:26:14 +03001809}
1810
1811MemoryRegion *get_system_memory(void)
1812{
1813 return system_memory;
1814}
1815
Avi Kivity309cb472011-08-08 16:09:03 +03001816MemoryRegion *get_system_io(void)
1817{
1818 return system_io;
1819}
1820
pbrooke2eef172008-06-08 01:09:01 +00001821#endif /* !defined(CONFIG_USER_ONLY) */
1822
bellard13eb76e2004-01-24 15:23:36 +00001823/* physical memory access (slow version, mainly for debug) */
1824#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +01001825int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr,
Paul Brooka68fe892010-03-01 00:08:59 +00001826 uint8_t *buf, int len, int is_write)
bellard13eb76e2004-01-24 15:23:36 +00001827{
1828 int l, flags;
1829 target_ulong page;
pbrook53a59602006-03-25 19:31:22 +00001830 void * p;
bellard13eb76e2004-01-24 15:23:36 +00001831
1832 while (len > 0) {
1833 page = addr & TARGET_PAGE_MASK;
1834 l = (page + TARGET_PAGE_SIZE) - addr;
1835 if (l > len)
1836 l = len;
1837 flags = page_get_flags(page);
1838 if (!(flags & PAGE_VALID))
Paul Brooka68fe892010-03-01 00:08:59 +00001839 return -1;
bellard13eb76e2004-01-24 15:23:36 +00001840 if (is_write) {
1841 if (!(flags & PAGE_WRITE))
Paul Brooka68fe892010-03-01 00:08:59 +00001842 return -1;
bellard579a97f2007-11-11 14:26:47 +00001843 /* XXX: this code should not depend on lock_user */
aurel3272fb7da2008-04-27 23:53:45 +00001844 if (!(p = lock_user(VERIFY_WRITE, addr, l, 0)))
Paul Brooka68fe892010-03-01 00:08:59 +00001845 return -1;
aurel3272fb7da2008-04-27 23:53:45 +00001846 memcpy(p, buf, l);
1847 unlock_user(p, addr, l);
bellard13eb76e2004-01-24 15:23:36 +00001848 } else {
1849 if (!(flags & PAGE_READ))
Paul Brooka68fe892010-03-01 00:08:59 +00001850 return -1;
bellard579a97f2007-11-11 14:26:47 +00001851 /* XXX: this code should not depend on lock_user */
aurel3272fb7da2008-04-27 23:53:45 +00001852 if (!(p = lock_user(VERIFY_READ, addr, l, 1)))
Paul Brooka68fe892010-03-01 00:08:59 +00001853 return -1;
aurel3272fb7da2008-04-27 23:53:45 +00001854 memcpy(buf, p, l);
aurel325b257572008-04-28 08:54:59 +00001855 unlock_user(p, addr, 0);
bellard13eb76e2004-01-24 15:23:36 +00001856 }
1857 len -= l;
1858 buf += l;
1859 addr += l;
1860 }
Paul Brooka68fe892010-03-01 00:08:59 +00001861 return 0;
bellard13eb76e2004-01-24 15:23:36 +00001862}
bellard8df1cd02005-01-28 22:37:22 +00001863
bellard13eb76e2004-01-24 15:23:36 +00001864#else
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001865
Avi Kivitya8170e52012-10-23 12:30:10 +02001866static void invalidate_and_set_dirty(hwaddr addr,
1867 hwaddr length)
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001868{
1869 if (!cpu_physical_memory_is_dirty(addr)) {
1870 /* invalidate code */
1871 tb_invalidate_phys_page_range(addr, addr + length, 0);
1872 /* set dirty bit */
1873 cpu_physical_memory_set_dirty_flags(addr, (0xff & ~CODE_DIRTY_FLAG));
1874 }
Anthony PERARDe2269392012-10-03 13:49:22 +00001875 xen_modified_memory(addr, length);
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001876}
1877
Avi Kivitya8170e52012-10-23 12:30:10 +02001878void address_space_rw(AddressSpace *as, hwaddr addr, uint8_t *buf,
Avi Kivityac1970f2012-10-03 16:22:53 +02001879 int len, bool is_write)
bellard13eb76e2004-01-24 15:23:36 +00001880{
Avi Kivityac1970f2012-10-03 16:22:53 +02001881 AddressSpaceDispatch *d = as->dispatch;
Avi Kivity37ec01d2012-03-08 18:08:35 +02001882 int l;
bellard13eb76e2004-01-24 15:23:36 +00001883 uint8_t *ptr;
1884 uint32_t val;
Avi Kivitya8170e52012-10-23 12:30:10 +02001885 hwaddr page;
Avi Kivityf3705d52012-03-08 16:16:34 +02001886 MemoryRegionSection *section;
ths3b46e622007-09-17 08:09:54 +00001887
bellard13eb76e2004-01-24 15:23:36 +00001888 while (len > 0) {
1889 page = addr & TARGET_PAGE_MASK;
1890 l = (page + TARGET_PAGE_SIZE) - addr;
1891 if (l > len)
1892 l = len;
Avi Kivityac1970f2012-10-03 16:22:53 +02001893 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00001894
bellard13eb76e2004-01-24 15:23:36 +00001895 if (is_write) {
Avi Kivityf3705d52012-03-08 16:16:34 +02001896 if (!memory_region_is_ram(section->mr)) {
Avi Kivitya8170e52012-10-23 12:30:10 +02001897 hwaddr addr1;
Blue Swirlcc5bea62012-04-14 14:56:48 +00001898 addr1 = memory_region_section_addr(section, addr);
bellard6a00d602005-11-21 23:25:50 +00001899 /* XXX: could force cpu_single_env to NULL to avoid
1900 potential bugs */
aurel326c2934d2009-02-18 21:37:17 +00001901 if (l >= 4 && ((addr1 & 3) == 0)) {
bellard1c213d12005-09-03 10:49:04 +00001902 /* 32 bit write access */
bellardc27004e2005-01-03 23:35:10 +00001903 val = ldl_p(buf);
Avi Kivity37ec01d2012-03-08 18:08:35 +02001904 io_mem_write(section->mr, addr1, val, 4);
bellard13eb76e2004-01-24 15:23:36 +00001905 l = 4;
aurel326c2934d2009-02-18 21:37:17 +00001906 } else if (l >= 2 && ((addr1 & 1) == 0)) {
bellard1c213d12005-09-03 10:49:04 +00001907 /* 16 bit write access */
bellardc27004e2005-01-03 23:35:10 +00001908 val = lduw_p(buf);
Avi Kivity37ec01d2012-03-08 18:08:35 +02001909 io_mem_write(section->mr, addr1, val, 2);
bellard13eb76e2004-01-24 15:23:36 +00001910 l = 2;
1911 } else {
bellard1c213d12005-09-03 10:49:04 +00001912 /* 8 bit write access */
bellardc27004e2005-01-03 23:35:10 +00001913 val = ldub_p(buf);
Avi Kivity37ec01d2012-03-08 18:08:35 +02001914 io_mem_write(section->mr, addr1, val, 1);
bellard13eb76e2004-01-24 15:23:36 +00001915 l = 1;
1916 }
Avi Kivityf3705d52012-03-08 16:16:34 +02001917 } else if (!section->readonly) {
Anthony PERARD8ca56922011-07-15 04:32:53 +00001918 ram_addr_t addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02001919 addr1 = memory_region_get_ram_addr(section->mr)
Blue Swirlcc5bea62012-04-14 14:56:48 +00001920 + memory_region_section_addr(section, addr);
bellard13eb76e2004-01-24 15:23:36 +00001921 /* RAM case */
pbrook5579c7f2009-04-11 14:47:08 +00001922 ptr = qemu_get_ram_ptr(addr1);
bellard13eb76e2004-01-24 15:23:36 +00001923 memcpy(ptr, buf, l);
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001924 invalidate_and_set_dirty(addr1, l);
Anthony PERARD050a0dd2010-09-16 13:57:49 +01001925 qemu_put_ram_ptr(ptr);
bellard13eb76e2004-01-24 15:23:36 +00001926 }
1927 } else {
Blue Swirlcc5bea62012-04-14 14:56:48 +00001928 if (!(memory_region_is_ram(section->mr) ||
1929 memory_region_is_romd(section->mr))) {
Avi Kivitya8170e52012-10-23 12:30:10 +02001930 hwaddr addr1;
bellard13eb76e2004-01-24 15:23:36 +00001931 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00001932 addr1 = memory_region_section_addr(section, addr);
aurel326c2934d2009-02-18 21:37:17 +00001933 if (l >= 4 && ((addr1 & 3) == 0)) {
bellard13eb76e2004-01-24 15:23:36 +00001934 /* 32 bit read access */
Avi Kivity37ec01d2012-03-08 18:08:35 +02001935 val = io_mem_read(section->mr, addr1, 4);
bellardc27004e2005-01-03 23:35:10 +00001936 stl_p(buf, val);
bellard13eb76e2004-01-24 15:23:36 +00001937 l = 4;
aurel326c2934d2009-02-18 21:37:17 +00001938 } else if (l >= 2 && ((addr1 & 1) == 0)) {
bellard13eb76e2004-01-24 15:23:36 +00001939 /* 16 bit read access */
Avi Kivity37ec01d2012-03-08 18:08:35 +02001940 val = io_mem_read(section->mr, addr1, 2);
bellardc27004e2005-01-03 23:35:10 +00001941 stw_p(buf, val);
bellard13eb76e2004-01-24 15:23:36 +00001942 l = 2;
1943 } else {
bellard1c213d12005-09-03 10:49:04 +00001944 /* 8 bit read access */
Avi Kivity37ec01d2012-03-08 18:08:35 +02001945 val = io_mem_read(section->mr, addr1, 1);
bellardc27004e2005-01-03 23:35:10 +00001946 stb_p(buf, val);
bellard13eb76e2004-01-24 15:23:36 +00001947 l = 1;
1948 }
1949 } else {
1950 /* RAM case */
Anthony PERARD0a1b3572012-03-19 15:54:34 +00001951 ptr = qemu_get_ram_ptr(section->mr->ram_addr
Blue Swirlcc5bea62012-04-14 14:56:48 +00001952 + memory_region_section_addr(section,
1953 addr));
Avi Kivityf3705d52012-03-08 16:16:34 +02001954 memcpy(buf, ptr, l);
Anthony PERARD050a0dd2010-09-16 13:57:49 +01001955 qemu_put_ram_ptr(ptr);
bellard13eb76e2004-01-24 15:23:36 +00001956 }
1957 }
1958 len -= l;
1959 buf += l;
1960 addr += l;
1961 }
1962}
bellard8df1cd02005-01-28 22:37:22 +00001963
Avi Kivitya8170e52012-10-23 12:30:10 +02001964void address_space_write(AddressSpace *as, hwaddr addr,
Avi Kivityac1970f2012-10-03 16:22:53 +02001965 const uint8_t *buf, int len)
1966{
1967 address_space_rw(as, addr, (uint8_t *)buf, len, true);
1968}
1969
1970/**
1971 * address_space_read: read from an address space.
1972 *
1973 * @as: #AddressSpace to be accessed
1974 * @addr: address within that address space
1975 * @buf: buffer with the data transferred
1976 */
Avi Kivitya8170e52012-10-23 12:30:10 +02001977void address_space_read(AddressSpace *as, hwaddr addr, uint8_t *buf, int len)
Avi Kivityac1970f2012-10-03 16:22:53 +02001978{
1979 address_space_rw(as, addr, buf, len, false);
1980}
1981
1982
Avi Kivitya8170e52012-10-23 12:30:10 +02001983void cpu_physical_memory_rw(hwaddr addr, uint8_t *buf,
Avi Kivityac1970f2012-10-03 16:22:53 +02001984 int len, int is_write)
1985{
1986 return address_space_rw(&address_space_memory, addr, buf, len, is_write);
1987}
1988
bellardd0ecd2a2006-04-23 17:14:48 +00001989/* used for ROM loading : can write in RAM and ROM */
Avi Kivitya8170e52012-10-23 12:30:10 +02001990void cpu_physical_memory_write_rom(hwaddr addr,
bellardd0ecd2a2006-04-23 17:14:48 +00001991 const uint8_t *buf, int len)
1992{
Avi Kivityac1970f2012-10-03 16:22:53 +02001993 AddressSpaceDispatch *d = address_space_memory.dispatch;
bellardd0ecd2a2006-04-23 17:14:48 +00001994 int l;
1995 uint8_t *ptr;
Avi Kivitya8170e52012-10-23 12:30:10 +02001996 hwaddr page;
Avi Kivityf3705d52012-03-08 16:16:34 +02001997 MemoryRegionSection *section;
ths3b46e622007-09-17 08:09:54 +00001998
bellardd0ecd2a2006-04-23 17:14:48 +00001999 while (len > 0) {
2000 page = addr & TARGET_PAGE_MASK;
2001 l = (page + TARGET_PAGE_SIZE) - addr;
2002 if (l > len)
2003 l = len;
Avi Kivityac1970f2012-10-03 16:22:53 +02002004 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002005
Blue Swirlcc5bea62012-04-14 14:56:48 +00002006 if (!(memory_region_is_ram(section->mr) ||
2007 memory_region_is_romd(section->mr))) {
bellardd0ecd2a2006-04-23 17:14:48 +00002008 /* do nothing */
2009 } else {
2010 unsigned long addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02002011 addr1 = memory_region_get_ram_addr(section->mr)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002012 + memory_region_section_addr(section, addr);
bellardd0ecd2a2006-04-23 17:14:48 +00002013 /* ROM/RAM case */
pbrook5579c7f2009-04-11 14:47:08 +00002014 ptr = qemu_get_ram_ptr(addr1);
bellardd0ecd2a2006-04-23 17:14:48 +00002015 memcpy(ptr, buf, l);
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002016 invalidate_and_set_dirty(addr1, l);
Anthony PERARD050a0dd2010-09-16 13:57:49 +01002017 qemu_put_ram_ptr(ptr);
bellardd0ecd2a2006-04-23 17:14:48 +00002018 }
2019 len -= l;
2020 buf += l;
2021 addr += l;
2022 }
2023}
2024
aliguori6d16c2f2009-01-22 16:59:11 +00002025typedef struct {
2026 void *buffer;
Avi Kivitya8170e52012-10-23 12:30:10 +02002027 hwaddr addr;
2028 hwaddr len;
aliguori6d16c2f2009-01-22 16:59:11 +00002029} BounceBuffer;
2030
2031static BounceBuffer bounce;
2032
aliguoriba223c22009-01-22 16:59:16 +00002033typedef struct MapClient {
2034 void *opaque;
2035 void (*callback)(void *opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002036 QLIST_ENTRY(MapClient) link;
aliguoriba223c22009-01-22 16:59:16 +00002037} MapClient;
2038
Blue Swirl72cf2d42009-09-12 07:36:22 +00002039static QLIST_HEAD(map_client_list, MapClient) map_client_list
2040 = QLIST_HEAD_INITIALIZER(map_client_list);
aliguoriba223c22009-01-22 16:59:16 +00002041
2042void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque))
2043{
Anthony Liguori7267c092011-08-20 22:09:37 -05002044 MapClient *client = g_malloc(sizeof(*client));
aliguoriba223c22009-01-22 16:59:16 +00002045
2046 client->opaque = opaque;
2047 client->callback = callback;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002048 QLIST_INSERT_HEAD(&map_client_list, client, link);
aliguoriba223c22009-01-22 16:59:16 +00002049 return client;
2050}
2051
Blue Swirl8b9c99d2012-10-28 11:04:51 +00002052static void cpu_unregister_map_client(void *_client)
aliguoriba223c22009-01-22 16:59:16 +00002053{
2054 MapClient *client = (MapClient *)_client;
2055
Blue Swirl72cf2d42009-09-12 07:36:22 +00002056 QLIST_REMOVE(client, link);
Anthony Liguori7267c092011-08-20 22:09:37 -05002057 g_free(client);
aliguoriba223c22009-01-22 16:59:16 +00002058}
2059
2060static void cpu_notify_map_clients(void)
2061{
2062 MapClient *client;
2063
Blue Swirl72cf2d42009-09-12 07:36:22 +00002064 while (!QLIST_EMPTY(&map_client_list)) {
2065 client = QLIST_FIRST(&map_client_list);
aliguoriba223c22009-01-22 16:59:16 +00002066 client->callback(client->opaque);
Isaku Yamahata34d5e942009-06-26 18:57:18 +09002067 cpu_unregister_map_client(client);
aliguoriba223c22009-01-22 16:59:16 +00002068 }
2069}
2070
aliguori6d16c2f2009-01-22 16:59:11 +00002071/* Map a physical memory region into a host virtual address.
2072 * May map a subset of the requested range, given by and returned in *plen.
2073 * May return NULL if resources needed to perform the mapping are exhausted.
2074 * Use only for reads OR writes - not for read-modify-write operations.
aliguoriba223c22009-01-22 16:59:16 +00002075 * Use cpu_register_map_client() to know when retrying the map operation is
2076 * likely to succeed.
aliguori6d16c2f2009-01-22 16:59:11 +00002077 */
Avi Kivityac1970f2012-10-03 16:22:53 +02002078void *address_space_map(AddressSpace *as,
Avi Kivitya8170e52012-10-23 12:30:10 +02002079 hwaddr addr,
2080 hwaddr *plen,
Avi Kivityac1970f2012-10-03 16:22:53 +02002081 bool is_write)
aliguori6d16c2f2009-01-22 16:59:11 +00002082{
Avi Kivityac1970f2012-10-03 16:22:53 +02002083 AddressSpaceDispatch *d = as->dispatch;
Avi Kivitya8170e52012-10-23 12:30:10 +02002084 hwaddr len = *plen;
2085 hwaddr todo = 0;
aliguori6d16c2f2009-01-22 16:59:11 +00002086 int l;
Avi Kivitya8170e52012-10-23 12:30:10 +02002087 hwaddr page;
Avi Kivityf3705d52012-03-08 16:16:34 +02002088 MemoryRegionSection *section;
Anthony PERARDf15fbc42011-07-20 08:17:42 +00002089 ram_addr_t raddr = RAM_ADDR_MAX;
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002090 ram_addr_t rlen;
2091 void *ret;
aliguori6d16c2f2009-01-22 16:59:11 +00002092
2093 while (len > 0) {
2094 page = addr & TARGET_PAGE_MASK;
2095 l = (page + TARGET_PAGE_SIZE) - addr;
2096 if (l > len)
2097 l = len;
Avi Kivityac1970f2012-10-03 16:22:53 +02002098 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
aliguori6d16c2f2009-01-22 16:59:11 +00002099
Avi Kivityf3705d52012-03-08 16:16:34 +02002100 if (!(memory_region_is_ram(section->mr) && !section->readonly)) {
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01002101 if (todo || bounce.buffer) {
aliguori6d16c2f2009-01-22 16:59:11 +00002102 break;
2103 }
2104 bounce.buffer = qemu_memalign(TARGET_PAGE_SIZE, TARGET_PAGE_SIZE);
2105 bounce.addr = addr;
2106 bounce.len = l;
2107 if (!is_write) {
Avi Kivityac1970f2012-10-03 16:22:53 +02002108 address_space_read(as, addr, bounce.buffer, l);
aliguori6d16c2f2009-01-22 16:59:11 +00002109 }
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01002110
2111 *plen = l;
2112 return bounce.buffer;
aliguori6d16c2f2009-01-22 16:59:11 +00002113 }
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002114 if (!todo) {
Avi Kivityf3705d52012-03-08 16:16:34 +02002115 raddr = memory_region_get_ram_addr(section->mr)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002116 + memory_region_section_addr(section, addr);
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002117 }
aliguori6d16c2f2009-01-22 16:59:11 +00002118
2119 len -= l;
2120 addr += l;
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01002121 todo += l;
aliguori6d16c2f2009-01-22 16:59:11 +00002122 }
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002123 rlen = todo;
2124 ret = qemu_ram_ptr_length(raddr, &rlen);
2125 *plen = rlen;
2126 return ret;
aliguori6d16c2f2009-01-22 16:59:11 +00002127}
2128
Avi Kivityac1970f2012-10-03 16:22:53 +02002129/* Unmaps a memory region previously mapped by address_space_map().
aliguori6d16c2f2009-01-22 16:59:11 +00002130 * Will also mark the memory as dirty if is_write == 1. access_len gives
2131 * the amount of memory that was actually read or written by the caller.
2132 */
Avi Kivitya8170e52012-10-23 12:30:10 +02002133void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
2134 int is_write, hwaddr access_len)
aliguori6d16c2f2009-01-22 16:59:11 +00002135{
2136 if (buffer != bounce.buffer) {
2137 if (is_write) {
Marcelo Tosattie8902612010-10-11 15:31:19 -03002138 ram_addr_t addr1 = qemu_ram_addr_from_host_nofail(buffer);
aliguori6d16c2f2009-01-22 16:59:11 +00002139 while (access_len) {
2140 unsigned l;
2141 l = TARGET_PAGE_SIZE;
2142 if (l > access_len)
2143 l = access_len;
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002144 invalidate_and_set_dirty(addr1, l);
aliguori6d16c2f2009-01-22 16:59:11 +00002145 addr1 += l;
2146 access_len -= l;
2147 }
2148 }
Jan Kiszka868bb332011-06-21 22:59:09 +02002149 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02002150 xen_invalidate_map_cache_entry(buffer);
Anthony PERARD050a0dd2010-09-16 13:57:49 +01002151 }
aliguori6d16c2f2009-01-22 16:59:11 +00002152 return;
2153 }
2154 if (is_write) {
Avi Kivityac1970f2012-10-03 16:22:53 +02002155 address_space_write(as, bounce.addr, bounce.buffer, access_len);
aliguori6d16c2f2009-01-22 16:59:11 +00002156 }
Herve Poussineauf8a83242010-01-24 21:23:56 +00002157 qemu_vfree(bounce.buffer);
aliguori6d16c2f2009-01-22 16:59:11 +00002158 bounce.buffer = NULL;
aliguoriba223c22009-01-22 16:59:16 +00002159 cpu_notify_map_clients();
aliguori6d16c2f2009-01-22 16:59:11 +00002160}
bellardd0ecd2a2006-04-23 17:14:48 +00002161
Avi Kivitya8170e52012-10-23 12:30:10 +02002162void *cpu_physical_memory_map(hwaddr addr,
2163 hwaddr *plen,
Avi Kivityac1970f2012-10-03 16:22:53 +02002164 int is_write)
2165{
2166 return address_space_map(&address_space_memory, addr, plen, is_write);
2167}
2168
Avi Kivitya8170e52012-10-23 12:30:10 +02002169void cpu_physical_memory_unmap(void *buffer, hwaddr len,
2170 int is_write, hwaddr access_len)
Avi Kivityac1970f2012-10-03 16:22:53 +02002171{
2172 return address_space_unmap(&address_space_memory, buffer, len, is_write, access_len);
2173}
2174
bellard8df1cd02005-01-28 22:37:22 +00002175/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002176static inline uint32_t ldl_phys_internal(hwaddr addr,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002177 enum device_endian endian)
bellard8df1cd02005-01-28 22:37:22 +00002178{
bellard8df1cd02005-01-28 22:37:22 +00002179 uint8_t *ptr;
2180 uint32_t val;
Avi Kivityf3705d52012-03-08 16:16:34 +02002181 MemoryRegionSection *section;
bellard8df1cd02005-01-28 22:37:22 +00002182
Avi Kivityac1970f2012-10-03 16:22:53 +02002183 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002184
Blue Swirlcc5bea62012-04-14 14:56:48 +00002185 if (!(memory_region_is_ram(section->mr) ||
2186 memory_region_is_romd(section->mr))) {
bellard8df1cd02005-01-28 22:37:22 +00002187 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00002188 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002189 val = io_mem_read(section->mr, addr, 4);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002190#if defined(TARGET_WORDS_BIGENDIAN)
2191 if (endian == DEVICE_LITTLE_ENDIAN) {
2192 val = bswap32(val);
2193 }
2194#else
2195 if (endian == DEVICE_BIG_ENDIAN) {
2196 val = bswap32(val);
2197 }
2198#endif
bellard8df1cd02005-01-28 22:37:22 +00002199 } else {
2200 /* RAM case */
Avi Kivityf3705d52012-03-08 16:16:34 +02002201 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002202 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002203 + memory_region_section_addr(section, addr));
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002204 switch (endian) {
2205 case DEVICE_LITTLE_ENDIAN:
2206 val = ldl_le_p(ptr);
2207 break;
2208 case DEVICE_BIG_ENDIAN:
2209 val = ldl_be_p(ptr);
2210 break;
2211 default:
2212 val = ldl_p(ptr);
2213 break;
2214 }
bellard8df1cd02005-01-28 22:37:22 +00002215 }
2216 return val;
2217}
2218
Avi Kivitya8170e52012-10-23 12:30:10 +02002219uint32_t ldl_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002220{
2221 return ldl_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2222}
2223
Avi Kivitya8170e52012-10-23 12:30:10 +02002224uint32_t ldl_le_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002225{
2226 return ldl_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2227}
2228
Avi Kivitya8170e52012-10-23 12:30:10 +02002229uint32_t ldl_be_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002230{
2231 return ldl_phys_internal(addr, DEVICE_BIG_ENDIAN);
2232}
2233
bellard84b7b8e2005-11-28 21:19:04 +00002234/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002235static inline uint64_t ldq_phys_internal(hwaddr addr,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002236 enum device_endian endian)
bellard84b7b8e2005-11-28 21:19:04 +00002237{
bellard84b7b8e2005-11-28 21:19:04 +00002238 uint8_t *ptr;
2239 uint64_t val;
Avi Kivityf3705d52012-03-08 16:16:34 +02002240 MemoryRegionSection *section;
bellard84b7b8e2005-11-28 21:19:04 +00002241
Avi Kivityac1970f2012-10-03 16:22:53 +02002242 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002243
Blue Swirlcc5bea62012-04-14 14:56:48 +00002244 if (!(memory_region_is_ram(section->mr) ||
2245 memory_region_is_romd(section->mr))) {
bellard84b7b8e2005-11-28 21:19:04 +00002246 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00002247 addr = memory_region_section_addr(section, addr);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002248
2249 /* XXX This is broken when device endian != cpu endian.
2250 Fix and add "endian" variable check */
bellard84b7b8e2005-11-28 21:19:04 +00002251#ifdef TARGET_WORDS_BIGENDIAN
Avi Kivity37ec01d2012-03-08 18:08:35 +02002252 val = io_mem_read(section->mr, addr, 4) << 32;
2253 val |= io_mem_read(section->mr, addr + 4, 4);
bellard84b7b8e2005-11-28 21:19:04 +00002254#else
Avi Kivity37ec01d2012-03-08 18:08:35 +02002255 val = io_mem_read(section->mr, addr, 4);
2256 val |= io_mem_read(section->mr, addr + 4, 4) << 32;
bellard84b7b8e2005-11-28 21:19:04 +00002257#endif
2258 } else {
2259 /* RAM case */
Avi Kivityf3705d52012-03-08 16:16:34 +02002260 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002261 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002262 + memory_region_section_addr(section, addr));
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002263 switch (endian) {
2264 case DEVICE_LITTLE_ENDIAN:
2265 val = ldq_le_p(ptr);
2266 break;
2267 case DEVICE_BIG_ENDIAN:
2268 val = ldq_be_p(ptr);
2269 break;
2270 default:
2271 val = ldq_p(ptr);
2272 break;
2273 }
bellard84b7b8e2005-11-28 21:19:04 +00002274 }
2275 return val;
2276}
2277
Avi Kivitya8170e52012-10-23 12:30:10 +02002278uint64_t ldq_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002279{
2280 return ldq_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2281}
2282
Avi Kivitya8170e52012-10-23 12:30:10 +02002283uint64_t ldq_le_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002284{
2285 return ldq_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2286}
2287
Avi Kivitya8170e52012-10-23 12:30:10 +02002288uint64_t ldq_be_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002289{
2290 return ldq_phys_internal(addr, DEVICE_BIG_ENDIAN);
2291}
2292
bellardaab33092005-10-30 20:48:42 +00002293/* XXX: optimize */
Avi Kivitya8170e52012-10-23 12:30:10 +02002294uint32_t ldub_phys(hwaddr addr)
bellardaab33092005-10-30 20:48:42 +00002295{
2296 uint8_t val;
2297 cpu_physical_memory_read(addr, &val, 1);
2298 return val;
2299}
2300
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002301/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002302static inline uint32_t lduw_phys_internal(hwaddr addr,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002303 enum device_endian endian)
bellardaab33092005-10-30 20:48:42 +00002304{
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002305 uint8_t *ptr;
2306 uint64_t val;
Avi Kivityf3705d52012-03-08 16:16:34 +02002307 MemoryRegionSection *section;
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002308
Avi Kivityac1970f2012-10-03 16:22:53 +02002309 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002310
Blue Swirlcc5bea62012-04-14 14:56:48 +00002311 if (!(memory_region_is_ram(section->mr) ||
2312 memory_region_is_romd(section->mr))) {
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002313 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00002314 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002315 val = io_mem_read(section->mr, addr, 2);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002316#if defined(TARGET_WORDS_BIGENDIAN)
2317 if (endian == DEVICE_LITTLE_ENDIAN) {
2318 val = bswap16(val);
2319 }
2320#else
2321 if (endian == DEVICE_BIG_ENDIAN) {
2322 val = bswap16(val);
2323 }
2324#endif
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002325 } else {
2326 /* RAM case */
Avi Kivityf3705d52012-03-08 16:16:34 +02002327 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002328 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002329 + memory_region_section_addr(section, addr));
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002330 switch (endian) {
2331 case DEVICE_LITTLE_ENDIAN:
2332 val = lduw_le_p(ptr);
2333 break;
2334 case DEVICE_BIG_ENDIAN:
2335 val = lduw_be_p(ptr);
2336 break;
2337 default:
2338 val = lduw_p(ptr);
2339 break;
2340 }
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002341 }
2342 return val;
bellardaab33092005-10-30 20:48:42 +00002343}
2344
Avi Kivitya8170e52012-10-23 12:30:10 +02002345uint32_t lduw_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002346{
2347 return lduw_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2348}
2349
Avi Kivitya8170e52012-10-23 12:30:10 +02002350uint32_t lduw_le_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002351{
2352 return lduw_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2353}
2354
Avi Kivitya8170e52012-10-23 12:30:10 +02002355uint32_t lduw_be_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002356{
2357 return lduw_phys_internal(addr, DEVICE_BIG_ENDIAN);
2358}
2359
bellard8df1cd02005-01-28 22:37:22 +00002360/* warning: addr must be aligned. The ram page is not masked as dirty
2361 and the code inside is not invalidated. It is useful if the dirty
2362 bits are used to track modified PTEs */
Avi Kivitya8170e52012-10-23 12:30:10 +02002363void stl_phys_notdirty(hwaddr addr, uint32_t val)
bellard8df1cd02005-01-28 22:37:22 +00002364{
bellard8df1cd02005-01-28 22:37:22 +00002365 uint8_t *ptr;
Avi Kivityf3705d52012-03-08 16:16:34 +02002366 MemoryRegionSection *section;
bellard8df1cd02005-01-28 22:37:22 +00002367
Avi Kivityac1970f2012-10-03 16:22:53 +02002368 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002369
Avi Kivityf3705d52012-03-08 16:16:34 +02002370 if (!memory_region_is_ram(section->mr) || section->readonly) {
Blue Swirlcc5bea62012-04-14 14:56:48 +00002371 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002372 if (memory_region_is_ram(section->mr)) {
2373 section = &phys_sections[phys_section_rom];
2374 }
2375 io_mem_write(section->mr, addr, val, 4);
bellard8df1cd02005-01-28 22:37:22 +00002376 } else {
Avi Kivityf3705d52012-03-08 16:16:34 +02002377 unsigned long addr1 = (memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002378 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002379 + memory_region_section_addr(section, addr);
pbrook5579c7f2009-04-11 14:47:08 +00002380 ptr = qemu_get_ram_ptr(addr1);
bellard8df1cd02005-01-28 22:37:22 +00002381 stl_p(ptr, val);
aliguori74576192008-10-06 14:02:03 +00002382
2383 if (unlikely(in_migration)) {
2384 if (!cpu_physical_memory_is_dirty(addr1)) {
2385 /* invalidate code */
2386 tb_invalidate_phys_page_range(addr1, addr1 + 4, 0);
2387 /* set dirty bit */
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09002388 cpu_physical_memory_set_dirty_flags(
2389 addr1, (0xff & ~CODE_DIRTY_FLAG));
aliguori74576192008-10-06 14:02:03 +00002390 }
2391 }
bellard8df1cd02005-01-28 22:37:22 +00002392 }
2393}
2394
Avi Kivitya8170e52012-10-23 12:30:10 +02002395void stq_phys_notdirty(hwaddr addr, uint64_t val)
j_mayerbc98a7e2007-04-04 07:55:12 +00002396{
j_mayerbc98a7e2007-04-04 07:55:12 +00002397 uint8_t *ptr;
Avi Kivityf3705d52012-03-08 16:16:34 +02002398 MemoryRegionSection *section;
j_mayerbc98a7e2007-04-04 07:55:12 +00002399
Avi Kivityac1970f2012-10-03 16:22:53 +02002400 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002401
Avi Kivityf3705d52012-03-08 16:16:34 +02002402 if (!memory_region_is_ram(section->mr) || section->readonly) {
Blue Swirlcc5bea62012-04-14 14:56:48 +00002403 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002404 if (memory_region_is_ram(section->mr)) {
2405 section = &phys_sections[phys_section_rom];
2406 }
j_mayerbc98a7e2007-04-04 07:55:12 +00002407#ifdef TARGET_WORDS_BIGENDIAN
Avi Kivity37ec01d2012-03-08 18:08:35 +02002408 io_mem_write(section->mr, addr, val >> 32, 4);
2409 io_mem_write(section->mr, addr + 4, (uint32_t)val, 4);
j_mayerbc98a7e2007-04-04 07:55:12 +00002410#else
Avi Kivity37ec01d2012-03-08 18:08:35 +02002411 io_mem_write(section->mr, addr, (uint32_t)val, 4);
2412 io_mem_write(section->mr, addr + 4, val >> 32, 4);
j_mayerbc98a7e2007-04-04 07:55:12 +00002413#endif
2414 } else {
Avi Kivityf3705d52012-03-08 16:16:34 +02002415 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002416 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002417 + memory_region_section_addr(section, addr));
j_mayerbc98a7e2007-04-04 07:55:12 +00002418 stq_p(ptr, val);
2419 }
2420}
2421
bellard8df1cd02005-01-28 22:37:22 +00002422/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002423static inline void stl_phys_internal(hwaddr addr, uint32_t val,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002424 enum device_endian endian)
bellard8df1cd02005-01-28 22:37:22 +00002425{
bellard8df1cd02005-01-28 22:37:22 +00002426 uint8_t *ptr;
Avi Kivityf3705d52012-03-08 16:16:34 +02002427 MemoryRegionSection *section;
bellard8df1cd02005-01-28 22:37:22 +00002428
Avi Kivityac1970f2012-10-03 16:22:53 +02002429 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002430
Avi Kivityf3705d52012-03-08 16:16:34 +02002431 if (!memory_region_is_ram(section->mr) || section->readonly) {
Blue Swirlcc5bea62012-04-14 14:56:48 +00002432 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002433 if (memory_region_is_ram(section->mr)) {
2434 section = &phys_sections[phys_section_rom];
2435 }
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002436#if defined(TARGET_WORDS_BIGENDIAN)
2437 if (endian == DEVICE_LITTLE_ENDIAN) {
2438 val = bswap32(val);
2439 }
2440#else
2441 if (endian == DEVICE_BIG_ENDIAN) {
2442 val = bswap32(val);
2443 }
2444#endif
Avi Kivity37ec01d2012-03-08 18:08:35 +02002445 io_mem_write(section->mr, addr, val, 4);
bellard8df1cd02005-01-28 22:37:22 +00002446 } else {
2447 unsigned long addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02002448 addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002449 + memory_region_section_addr(section, addr);
bellard8df1cd02005-01-28 22:37:22 +00002450 /* RAM case */
pbrook5579c7f2009-04-11 14:47:08 +00002451 ptr = qemu_get_ram_ptr(addr1);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002452 switch (endian) {
2453 case DEVICE_LITTLE_ENDIAN:
2454 stl_le_p(ptr, val);
2455 break;
2456 case DEVICE_BIG_ENDIAN:
2457 stl_be_p(ptr, val);
2458 break;
2459 default:
2460 stl_p(ptr, val);
2461 break;
2462 }
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002463 invalidate_and_set_dirty(addr1, 4);
bellard8df1cd02005-01-28 22:37:22 +00002464 }
2465}
2466
Avi Kivitya8170e52012-10-23 12:30:10 +02002467void stl_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002468{
2469 stl_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN);
2470}
2471
Avi Kivitya8170e52012-10-23 12:30:10 +02002472void stl_le_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002473{
2474 stl_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN);
2475}
2476
Avi Kivitya8170e52012-10-23 12:30:10 +02002477void stl_be_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002478{
2479 stl_phys_internal(addr, val, DEVICE_BIG_ENDIAN);
2480}
2481
bellardaab33092005-10-30 20:48:42 +00002482/* XXX: optimize */
Avi Kivitya8170e52012-10-23 12:30:10 +02002483void stb_phys(hwaddr addr, uint32_t val)
bellardaab33092005-10-30 20:48:42 +00002484{
2485 uint8_t v = val;
2486 cpu_physical_memory_write(addr, &v, 1);
2487}
2488
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002489/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002490static inline void stw_phys_internal(hwaddr addr, uint32_t val,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002491 enum device_endian endian)
bellardaab33092005-10-30 20:48:42 +00002492{
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002493 uint8_t *ptr;
Avi Kivityf3705d52012-03-08 16:16:34 +02002494 MemoryRegionSection *section;
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002495
Avi Kivityac1970f2012-10-03 16:22:53 +02002496 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002497
Avi Kivityf3705d52012-03-08 16:16:34 +02002498 if (!memory_region_is_ram(section->mr) || section->readonly) {
Blue Swirlcc5bea62012-04-14 14:56:48 +00002499 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002500 if (memory_region_is_ram(section->mr)) {
2501 section = &phys_sections[phys_section_rom];
2502 }
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002503#if defined(TARGET_WORDS_BIGENDIAN)
2504 if (endian == DEVICE_LITTLE_ENDIAN) {
2505 val = bswap16(val);
2506 }
2507#else
2508 if (endian == DEVICE_BIG_ENDIAN) {
2509 val = bswap16(val);
2510 }
2511#endif
Avi Kivity37ec01d2012-03-08 18:08:35 +02002512 io_mem_write(section->mr, addr, val, 2);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002513 } else {
2514 unsigned long addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02002515 addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002516 + memory_region_section_addr(section, addr);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002517 /* RAM case */
2518 ptr = qemu_get_ram_ptr(addr1);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002519 switch (endian) {
2520 case DEVICE_LITTLE_ENDIAN:
2521 stw_le_p(ptr, val);
2522 break;
2523 case DEVICE_BIG_ENDIAN:
2524 stw_be_p(ptr, val);
2525 break;
2526 default:
2527 stw_p(ptr, val);
2528 break;
2529 }
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002530 invalidate_and_set_dirty(addr1, 2);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002531 }
bellardaab33092005-10-30 20:48:42 +00002532}
2533
Avi Kivitya8170e52012-10-23 12:30:10 +02002534void stw_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002535{
2536 stw_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN);
2537}
2538
Avi Kivitya8170e52012-10-23 12:30:10 +02002539void stw_le_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002540{
2541 stw_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN);
2542}
2543
Avi Kivitya8170e52012-10-23 12:30:10 +02002544void stw_be_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002545{
2546 stw_phys_internal(addr, val, DEVICE_BIG_ENDIAN);
2547}
2548
bellardaab33092005-10-30 20:48:42 +00002549/* XXX: optimize */
Avi Kivitya8170e52012-10-23 12:30:10 +02002550void stq_phys(hwaddr addr, uint64_t val)
bellardaab33092005-10-30 20:48:42 +00002551{
2552 val = tswap64(val);
Stefan Weil71d2b722011-03-26 21:06:56 +01002553 cpu_physical_memory_write(addr, &val, 8);
bellardaab33092005-10-30 20:48:42 +00002554}
2555
Avi Kivitya8170e52012-10-23 12:30:10 +02002556void stq_le_phys(hwaddr addr, uint64_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002557{
2558 val = cpu_to_le64(val);
2559 cpu_physical_memory_write(addr, &val, 8);
2560}
2561
Avi Kivitya8170e52012-10-23 12:30:10 +02002562void stq_be_phys(hwaddr addr, uint64_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002563{
2564 val = cpu_to_be64(val);
2565 cpu_physical_memory_write(addr, &val, 8);
2566}
2567
aliguori5e2972f2009-03-28 17:51:36 +00002568/* virtual memory access for debug (includes writing to ROM) */
Andreas Färber9349b4f2012-03-14 01:38:32 +01002569int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr,
bellardb448f2f2004-02-25 23:24:04 +00002570 uint8_t *buf, int len, int is_write)
bellard13eb76e2004-01-24 15:23:36 +00002571{
2572 int l;
Avi Kivitya8170e52012-10-23 12:30:10 +02002573 hwaddr phys_addr;
j_mayer9b3c35e2007-04-07 11:21:28 +00002574 target_ulong page;
bellard13eb76e2004-01-24 15:23:36 +00002575
2576 while (len > 0) {
2577 page = addr & TARGET_PAGE_MASK;
2578 phys_addr = cpu_get_phys_page_debug(env, page);
2579 /* if no physical page mapped, return an error */
2580 if (phys_addr == -1)
2581 return -1;
2582 l = (page + TARGET_PAGE_SIZE) - addr;
2583 if (l > len)
2584 l = len;
aliguori5e2972f2009-03-28 17:51:36 +00002585 phys_addr += (addr & ~TARGET_PAGE_MASK);
aliguori5e2972f2009-03-28 17:51:36 +00002586 if (is_write)
2587 cpu_physical_memory_write_rom(phys_addr, buf, l);
2588 else
aliguori5e2972f2009-03-28 17:51:36 +00002589 cpu_physical_memory_rw(phys_addr, buf, l, is_write);
bellard13eb76e2004-01-24 15:23:36 +00002590 len -= l;
2591 buf += l;
2592 addr += l;
2593 }
2594 return 0;
2595}
Paul Brooka68fe892010-03-01 00:08:59 +00002596#endif
bellard13eb76e2004-01-24 15:23:36 +00002597
Blue Swirl8e4a4242013-01-06 18:30:17 +00002598#if !defined(CONFIG_USER_ONLY)
2599
2600/*
2601 * A helper function for the _utterly broken_ virtio device model to find out if
2602 * it's running on a big endian machine. Don't do this at home kids!
2603 */
2604bool virtio_is_big_endian(void);
2605bool virtio_is_big_endian(void)
2606{
2607#if defined(TARGET_WORDS_BIGENDIAN)
2608 return true;
2609#else
2610 return false;
2611#endif
2612}
2613
2614#endif
2615
Wen Congyang76f35532012-05-07 12:04:18 +08002616#ifndef CONFIG_USER_ONLY
Avi Kivitya8170e52012-10-23 12:30:10 +02002617bool cpu_physical_memory_is_io(hwaddr phys_addr)
Wen Congyang76f35532012-05-07 12:04:18 +08002618{
2619 MemoryRegionSection *section;
2620
Avi Kivityac1970f2012-10-03 16:22:53 +02002621 section = phys_page_find(address_space_memory.dispatch,
2622 phys_addr >> TARGET_PAGE_BITS);
Wen Congyang76f35532012-05-07 12:04:18 +08002623
2624 return !(memory_region_is_ram(section->mr) ||
2625 memory_region_is_romd(section->mr));
2626}
2627#endif