blob: 785eeebcbc19a77a15a8b72ddc1022211bcb91da [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"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010034#include "hw/xen/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
Paolo Bonzini0844e002013-05-24 14:37:28 +020069MemoryRegion io_mem_rom, io_mem_notdirty;
70static MemoryRegion io_mem_unassigned, 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 Kivityf1f6e3b2011-11-20 17:52:22 +0200190
Avi Kivity07f07b32012-02-13 20:45:32 +0200191 for (i = P_L2_LEVELS - 1; i >= 0 && !lp.is_leaf; i--) {
Avi Kivityc19e8802012-02-13 20:25:31 +0200192 if (lp.ptr == PHYS_MAP_NODE_NIL) {
Paolo Bonzinifd298932013-05-20 12:21:07 +0200193 return &phys_sections[phys_section_unassigned];
Avi Kivity31ab2b42012-02-13 16:44:19 +0200194 }
Avi Kivityc19e8802012-02-13 20:25:31 +0200195 p = phys_map_nodes[lp.ptr];
Avi Kivity31ab2b42012-02-13 16:44:19 +0200196 lp = p[(index >> (i * L2_BITS)) & (L2_SIZE - 1)];
Avi Kivityf1f6e3b2011-11-20 17:52:22 +0200197 }
Paolo Bonzinifd298932013-05-20 12:21:07 +0200198 return &phys_sections[lp.ptr];
Avi Kivityf3705d52012-03-08 16:16:34 +0200199}
200
Blue Swirle5548612012-04-21 13:08:33 +0000201bool memory_region_is_unassigned(MemoryRegion *mr)
202{
Paolo Bonzini2a8e7492013-05-24 14:34:08 +0200203 return mr != &io_mem_rom && mr != &io_mem_notdirty && !mr->rom_device
Blue Swirle5548612012-04-21 13:08:33 +0000204 && mr != &io_mem_watch;
205}
bellard9fa3e852004-01-04 18:06:42 +0000206#endif
bellardfd6ce8f2003-05-14 19:00:11 +0000207
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200208void cpu_exec_init_all(void)
209{
210#if !defined(CONFIG_USER_ONLY)
Umesh Deshpandeb2a86582011-08-17 00:01:33 -0700211 qemu_mutex_init(&ram_list.mutex);
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200212 memory_map_init();
213 io_mem_init();
214#endif
215}
216
Andreas Färberb170fce2013-01-20 20:23:22 +0100217#if !defined(CONFIG_USER_ONLY)
pbrook9656f322008-07-01 20:01:19 +0000218
Juan Quintelae59fb372009-09-29 22:48:21 +0200219static int cpu_common_post_load(void *opaque, int version_id)
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200220{
Andreas Färber259186a2013-01-17 18:51:17 +0100221 CPUState *cpu = opaque;
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200222
aurel323098dba2009-03-07 21:28:24 +0000223 /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
224 version_id is increased. */
Andreas Färber259186a2013-01-17 18:51:17 +0100225 cpu->interrupt_request &= ~0x01;
226 tlb_flush(cpu->env_ptr, 1);
pbrook9656f322008-07-01 20:01:19 +0000227
228 return 0;
229}
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200230
231static const VMStateDescription vmstate_cpu_common = {
232 .name = "cpu_common",
233 .version_id = 1,
234 .minimum_version_id = 1,
235 .minimum_version_id_old = 1,
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200236 .post_load = cpu_common_post_load,
237 .fields = (VMStateField []) {
Andreas Färber259186a2013-01-17 18:51:17 +0100238 VMSTATE_UINT32(halted, CPUState),
239 VMSTATE_UINT32(interrupt_request, CPUState),
Juan Quintelae7f4eff2009-09-10 03:04:33 +0200240 VMSTATE_END_OF_LIST()
241 }
242};
Andreas Färberb170fce2013-01-20 20:23:22 +0100243#else
244#define vmstate_cpu_common vmstate_dummy
pbrook9656f322008-07-01 20:01:19 +0000245#endif
246
Andreas Färber38d8f5c2012-12-17 19:47:15 +0100247CPUState *qemu_get_cpu(int index)
Glauber Costa950f1472009-06-09 12:15:18 -0400248{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100249 CPUArchState *env = first_cpu;
Andreas Färber38d8f5c2012-12-17 19:47:15 +0100250 CPUState *cpu = NULL;
Glauber Costa950f1472009-06-09 12:15:18 -0400251
252 while (env) {
Andreas Färber55e5c282012-12-17 06:18:02 +0100253 cpu = ENV_GET_CPU(env);
254 if (cpu->cpu_index == index) {
Glauber Costa950f1472009-06-09 12:15:18 -0400255 break;
Andreas Färber55e5c282012-12-17 06:18:02 +0100256 }
Glauber Costa950f1472009-06-09 12:15:18 -0400257 env = env->next_cpu;
258 }
259
Igor Mammedovd76fdda2013-03-07 19:12:43 +0100260 return env ? cpu : NULL;
Glauber Costa950f1472009-06-09 12:15:18 -0400261}
262
Michael S. Tsirkind6b9e0d2013-04-24 22:58:04 +0200263void qemu_for_each_cpu(void (*func)(CPUState *cpu, void *data), void *data)
264{
265 CPUArchState *env = first_cpu;
266
267 while (env) {
268 func(ENV_GET_CPU(env), data);
269 env = env->next_cpu;
270 }
271}
272
Andreas Färber9349b4f2012-03-14 01:38:32 +0100273void cpu_exec_init(CPUArchState *env)
bellardfd6ce8f2003-05-14 19:00:11 +0000274{
Andreas Färber9f09e182012-05-03 06:59:07 +0200275 CPUState *cpu = ENV_GET_CPU(env);
Andreas Färberb170fce2013-01-20 20:23:22 +0100276 CPUClass *cc = CPU_GET_CLASS(cpu);
Andreas Färber9349b4f2012-03-14 01:38:32 +0100277 CPUArchState **penv;
bellard6a00d602005-11-21 23:25:50 +0000278 int cpu_index;
279
pbrookc2764712009-03-07 15:24:59 +0000280#if defined(CONFIG_USER_ONLY)
281 cpu_list_lock();
282#endif
bellard6a00d602005-11-21 23:25:50 +0000283 env->next_cpu = NULL;
284 penv = &first_cpu;
285 cpu_index = 0;
286 while (*penv != NULL) {
Nathan Froyd1e9fa732009-06-03 11:33:08 -0700287 penv = &(*penv)->next_cpu;
bellard6a00d602005-11-21 23:25:50 +0000288 cpu_index++;
289 }
Andreas Färber55e5c282012-12-17 06:18:02 +0100290 cpu->cpu_index = cpu_index;
Andreas Färber1b1ed8d2012-12-17 04:22:03 +0100291 cpu->numa_node = 0;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000292 QTAILQ_INIT(&env->breakpoints);
293 QTAILQ_INIT(&env->watchpoints);
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100294#ifndef CONFIG_USER_ONLY
Andreas Färber9f09e182012-05-03 06:59:07 +0200295 cpu->thread_id = qemu_get_thread_id();
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100296#endif
bellard6a00d602005-11-21 23:25:50 +0000297 *penv = env;
pbrookc2764712009-03-07 15:24:59 +0000298#if defined(CONFIG_USER_ONLY)
299 cpu_list_unlock();
300#endif
Andreas Färber259186a2013-01-17 18:51:17 +0100301 vmstate_register(NULL, cpu_index, &vmstate_cpu_common, cpu);
pbrookb3c77242008-06-30 16:31:04 +0000302#if defined(CPU_SAVE_VERSION) && !defined(CONFIG_USER_ONLY)
Alex Williamson0be71e32010-06-25 11:09:07 -0600303 register_savevm(NULL, "cpu", cpu_index, CPU_SAVE_VERSION,
pbrookb3c77242008-06-30 16:31:04 +0000304 cpu_save, cpu_load, env);
Andreas Färberb170fce2013-01-20 20:23:22 +0100305 assert(cc->vmsd == NULL);
pbrookb3c77242008-06-30 16:31:04 +0000306#endif
Andreas Färberb170fce2013-01-20 20:23:22 +0100307 if (cc->vmsd != NULL) {
308 vmstate_register(NULL, cpu_index, cc->vmsd, cpu);
309 }
bellardfd6ce8f2003-05-14 19:00:11 +0000310}
311
bellard1fddef42005-04-17 19:16:13 +0000312#if defined(TARGET_HAS_ICE)
Paul Brook94df27f2010-02-28 23:47:45 +0000313#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +0100314static void breakpoint_invalidate(CPUArchState *env, target_ulong pc)
Paul Brook94df27f2010-02-28 23:47:45 +0000315{
316 tb_invalidate_phys_page_range(pc, pc + 1, 0);
317}
318#else
Max Filippov1e7855a2012-04-10 02:48:17 +0400319static void breakpoint_invalidate(CPUArchState *env, target_ulong pc)
320{
Max Filippov9d70c4b2012-05-27 20:21:08 +0400321 tb_invalidate_phys_addr(cpu_get_phys_page_debug(env, pc) |
322 (pc & ~TARGET_PAGE_MASK));
Max Filippov1e7855a2012-04-10 02:48:17 +0400323}
bellardc27004e2005-01-03 23:35:10 +0000324#endif
Paul Brook94df27f2010-02-28 23:47:45 +0000325#endif /* TARGET_HAS_ICE */
bellardd720b932004-04-25 17:57:43 +0000326
Paul Brookc527ee82010-03-01 03:31:14 +0000327#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +0100328void cpu_watchpoint_remove_all(CPUArchState *env, int mask)
Paul Brookc527ee82010-03-01 03:31:14 +0000329
330{
331}
332
Andreas Färber9349b4f2012-03-14 01:38:32 +0100333int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len,
Paul Brookc527ee82010-03-01 03:31:14 +0000334 int flags, CPUWatchpoint **watchpoint)
335{
336 return -ENOSYS;
337}
338#else
pbrook6658ffb2007-03-16 23:58:11 +0000339/* Add a watchpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100340int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len,
aliguoria1d1bb32008-11-18 20:07:32 +0000341 int flags, CPUWatchpoint **watchpoint)
pbrook6658ffb2007-03-16 23:58:11 +0000342{
aliguorib4051332008-11-18 20:14:20 +0000343 target_ulong len_mask = ~(len - 1);
aliguoric0ce9982008-11-25 22:13:57 +0000344 CPUWatchpoint *wp;
pbrook6658ffb2007-03-16 23:58:11 +0000345
aliguorib4051332008-11-18 20:14:20 +0000346 /* sanity checks: allow power-of-2 lengths, deny unaligned watchpoints */
Max Filippov0dc23822012-01-29 03:15:23 +0400347 if ((len & (len - 1)) || (addr & ~len_mask) ||
348 len == 0 || len > TARGET_PAGE_SIZE) {
aliguorib4051332008-11-18 20:14:20 +0000349 fprintf(stderr, "qemu: tried to set invalid watchpoint at "
350 TARGET_FMT_lx ", len=" TARGET_FMT_lu "\n", addr, len);
351 return -EINVAL;
352 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500353 wp = g_malloc(sizeof(*wp));
pbrook6658ffb2007-03-16 23:58:11 +0000354
aliguoria1d1bb32008-11-18 20:07:32 +0000355 wp->vaddr = addr;
aliguorib4051332008-11-18 20:14:20 +0000356 wp->len_mask = len_mask;
aliguoria1d1bb32008-11-18 20:07:32 +0000357 wp->flags = flags;
358
aliguori2dc9f412008-11-18 20:56:59 +0000359 /* keep all GDB-injected watchpoints in front */
aliguoric0ce9982008-11-25 22:13:57 +0000360 if (flags & BP_GDB)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000361 QTAILQ_INSERT_HEAD(&env->watchpoints, wp, entry);
aliguoric0ce9982008-11-25 22:13:57 +0000362 else
Blue Swirl72cf2d42009-09-12 07:36:22 +0000363 QTAILQ_INSERT_TAIL(&env->watchpoints, wp, entry);
aliguoria1d1bb32008-11-18 20:07:32 +0000364
pbrook6658ffb2007-03-16 23:58:11 +0000365 tlb_flush_page(env, addr);
aliguoria1d1bb32008-11-18 20:07:32 +0000366
367 if (watchpoint)
368 *watchpoint = wp;
369 return 0;
pbrook6658ffb2007-03-16 23:58:11 +0000370}
371
aliguoria1d1bb32008-11-18 20:07:32 +0000372/* Remove a specific watchpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100373int cpu_watchpoint_remove(CPUArchState *env, target_ulong addr, target_ulong len,
aliguoria1d1bb32008-11-18 20:07:32 +0000374 int flags)
pbrook6658ffb2007-03-16 23:58:11 +0000375{
aliguorib4051332008-11-18 20:14:20 +0000376 target_ulong len_mask = ~(len - 1);
aliguoria1d1bb32008-11-18 20:07:32 +0000377 CPUWatchpoint *wp;
pbrook6658ffb2007-03-16 23:58:11 +0000378
Blue Swirl72cf2d42009-09-12 07:36:22 +0000379 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
aliguorib4051332008-11-18 20:14:20 +0000380 if (addr == wp->vaddr && len_mask == wp->len_mask
aliguori6e140f22008-11-18 20:37:55 +0000381 && flags == (wp->flags & ~BP_WATCHPOINT_HIT)) {
aliguoria1d1bb32008-11-18 20:07:32 +0000382 cpu_watchpoint_remove_by_ref(env, wp);
pbrook6658ffb2007-03-16 23:58:11 +0000383 return 0;
384 }
385 }
aliguoria1d1bb32008-11-18 20:07:32 +0000386 return -ENOENT;
pbrook6658ffb2007-03-16 23:58:11 +0000387}
388
aliguoria1d1bb32008-11-18 20:07:32 +0000389/* Remove a specific watchpoint by reference. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100390void cpu_watchpoint_remove_by_ref(CPUArchState *env, CPUWatchpoint *watchpoint)
aliguoria1d1bb32008-11-18 20:07:32 +0000391{
Blue Swirl72cf2d42009-09-12 07:36:22 +0000392 QTAILQ_REMOVE(&env->watchpoints, watchpoint, entry);
edgar_igl7d03f822008-05-17 18:58:29 +0000393
aliguoria1d1bb32008-11-18 20:07:32 +0000394 tlb_flush_page(env, watchpoint->vaddr);
395
Anthony Liguori7267c092011-08-20 22:09:37 -0500396 g_free(watchpoint);
edgar_igl7d03f822008-05-17 18:58:29 +0000397}
398
aliguoria1d1bb32008-11-18 20:07:32 +0000399/* Remove all matching watchpoints. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100400void cpu_watchpoint_remove_all(CPUArchState *env, int mask)
aliguoria1d1bb32008-11-18 20:07:32 +0000401{
aliguoric0ce9982008-11-25 22:13:57 +0000402 CPUWatchpoint *wp, *next;
aliguoria1d1bb32008-11-18 20:07:32 +0000403
Blue Swirl72cf2d42009-09-12 07:36:22 +0000404 QTAILQ_FOREACH_SAFE(wp, &env->watchpoints, entry, next) {
aliguoria1d1bb32008-11-18 20:07:32 +0000405 if (wp->flags & mask)
406 cpu_watchpoint_remove_by_ref(env, wp);
aliguoric0ce9982008-11-25 22:13:57 +0000407 }
aliguoria1d1bb32008-11-18 20:07:32 +0000408}
Paul Brookc527ee82010-03-01 03:31:14 +0000409#endif
aliguoria1d1bb32008-11-18 20:07:32 +0000410
411/* Add a breakpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100412int cpu_breakpoint_insert(CPUArchState *env, target_ulong pc, int flags,
aliguoria1d1bb32008-11-18 20:07:32 +0000413 CPUBreakpoint **breakpoint)
bellard4c3a88a2003-07-26 12:06:08 +0000414{
bellard1fddef42005-04-17 19:16:13 +0000415#if defined(TARGET_HAS_ICE)
aliguoric0ce9982008-11-25 22:13:57 +0000416 CPUBreakpoint *bp;
ths3b46e622007-09-17 08:09:54 +0000417
Anthony Liguori7267c092011-08-20 22:09:37 -0500418 bp = g_malloc(sizeof(*bp));
aliguoria1d1bb32008-11-18 20:07:32 +0000419
420 bp->pc = pc;
421 bp->flags = flags;
422
aliguori2dc9f412008-11-18 20:56:59 +0000423 /* keep all GDB-injected breakpoints in front */
aliguoric0ce9982008-11-25 22:13:57 +0000424 if (flags & BP_GDB)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000425 QTAILQ_INSERT_HEAD(&env->breakpoints, bp, entry);
aliguoric0ce9982008-11-25 22:13:57 +0000426 else
Blue Swirl72cf2d42009-09-12 07:36:22 +0000427 QTAILQ_INSERT_TAIL(&env->breakpoints, bp, entry);
aliguoria1d1bb32008-11-18 20:07:32 +0000428
429 breakpoint_invalidate(env, pc);
430
431 if (breakpoint)
432 *breakpoint = bp;
433 return 0;
434#else
435 return -ENOSYS;
436#endif
437}
438
439/* Remove a specific breakpoint. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100440int cpu_breakpoint_remove(CPUArchState *env, target_ulong pc, int flags)
aliguoria1d1bb32008-11-18 20:07:32 +0000441{
442#if defined(TARGET_HAS_ICE)
443 CPUBreakpoint *bp;
444
Blue Swirl72cf2d42009-09-12 07:36:22 +0000445 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
aliguoria1d1bb32008-11-18 20:07:32 +0000446 if (bp->pc == pc && bp->flags == flags) {
447 cpu_breakpoint_remove_by_ref(env, bp);
bellard4c3a88a2003-07-26 12:06:08 +0000448 return 0;
aliguoria1d1bb32008-11-18 20:07:32 +0000449 }
bellard4c3a88a2003-07-26 12:06:08 +0000450 }
aliguoria1d1bb32008-11-18 20:07:32 +0000451 return -ENOENT;
bellard4c3a88a2003-07-26 12:06:08 +0000452#else
aliguoria1d1bb32008-11-18 20:07:32 +0000453 return -ENOSYS;
bellard4c3a88a2003-07-26 12:06:08 +0000454#endif
455}
456
aliguoria1d1bb32008-11-18 20:07:32 +0000457/* Remove a specific breakpoint by reference. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100458void cpu_breakpoint_remove_by_ref(CPUArchState *env, CPUBreakpoint *breakpoint)
bellard4c3a88a2003-07-26 12:06:08 +0000459{
bellard1fddef42005-04-17 19:16:13 +0000460#if defined(TARGET_HAS_ICE)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000461 QTAILQ_REMOVE(&env->breakpoints, breakpoint, entry);
bellardd720b932004-04-25 17:57:43 +0000462
aliguoria1d1bb32008-11-18 20:07:32 +0000463 breakpoint_invalidate(env, breakpoint->pc);
464
Anthony Liguori7267c092011-08-20 22:09:37 -0500465 g_free(breakpoint);
aliguoria1d1bb32008-11-18 20:07:32 +0000466#endif
467}
468
469/* Remove all matching breakpoints. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100470void cpu_breakpoint_remove_all(CPUArchState *env, int mask)
aliguoria1d1bb32008-11-18 20:07:32 +0000471{
472#if defined(TARGET_HAS_ICE)
aliguoric0ce9982008-11-25 22:13:57 +0000473 CPUBreakpoint *bp, *next;
aliguoria1d1bb32008-11-18 20:07:32 +0000474
Blue Swirl72cf2d42009-09-12 07:36:22 +0000475 QTAILQ_FOREACH_SAFE(bp, &env->breakpoints, entry, next) {
aliguoria1d1bb32008-11-18 20:07:32 +0000476 if (bp->flags & mask)
477 cpu_breakpoint_remove_by_ref(env, bp);
aliguoric0ce9982008-11-25 22:13:57 +0000478 }
bellard4c3a88a2003-07-26 12:06:08 +0000479#endif
480}
481
bellardc33a3462003-07-29 20:50:33 +0000482/* enable or disable single step mode. EXCP_DEBUG is returned by the
483 CPU loop after each instruction */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100484void cpu_single_step(CPUArchState *env, int enabled)
bellardc33a3462003-07-29 20:50:33 +0000485{
bellard1fddef42005-04-17 19:16:13 +0000486#if defined(TARGET_HAS_ICE)
bellardc33a3462003-07-29 20:50:33 +0000487 if (env->singlestep_enabled != enabled) {
488 env->singlestep_enabled = enabled;
aliguorie22a25c2009-03-12 20:12:48 +0000489 if (kvm_enabled())
490 kvm_update_guest_debug(env, 0);
491 else {
Stuart Bradyccbb4d42009-05-03 12:15:06 +0100492 /* must flush all the translated code to avoid inconsistencies */
aliguorie22a25c2009-03-12 20:12:48 +0000493 /* XXX: only flush what is necessary */
494 tb_flush(env);
495 }
bellardc33a3462003-07-29 20:50:33 +0000496 }
497#endif
498}
499
Andreas Färber9349b4f2012-03-14 01:38:32 +0100500void cpu_exit(CPUArchState *env)
aurel323098dba2009-03-07 21:28:24 +0000501{
Andreas Färberfcd7d002012-12-17 08:02:44 +0100502 CPUState *cpu = ENV_GET_CPU(env);
503
504 cpu->exit_request = 1;
Peter Maydell378df4b2013-02-22 18:10:03 +0000505 cpu->tcg_exit_req = 1;
aurel323098dba2009-03-07 21:28:24 +0000506}
507
Andreas Färber9349b4f2012-03-14 01:38:32 +0100508void cpu_abort(CPUArchState *env, const char *fmt, ...)
bellard75012672003-06-21 13:11:07 +0000509{
510 va_list ap;
pbrook493ae1f2007-11-23 16:53:59 +0000511 va_list ap2;
bellard75012672003-06-21 13:11:07 +0000512
513 va_start(ap, fmt);
pbrook493ae1f2007-11-23 16:53:59 +0000514 va_copy(ap2, ap);
bellard75012672003-06-21 13:11:07 +0000515 fprintf(stderr, "qemu: fatal: ");
516 vfprintf(stderr, fmt, ap);
517 fprintf(stderr, "\n");
Peter Maydell6fd2a022012-10-05 15:04:43 +0100518 cpu_dump_state(env, stderr, fprintf, CPU_DUMP_FPU | CPU_DUMP_CCOP);
aliguori93fcfe32009-01-15 22:34:14 +0000519 if (qemu_log_enabled()) {
520 qemu_log("qemu: fatal: ");
521 qemu_log_vprintf(fmt, ap2);
522 qemu_log("\n");
Peter Maydell6fd2a022012-10-05 15:04:43 +0100523 log_cpu_state(env, CPU_DUMP_FPU | CPU_DUMP_CCOP);
aliguori31b1a7b2009-01-15 22:35:09 +0000524 qemu_log_flush();
aliguori93fcfe32009-01-15 22:34:14 +0000525 qemu_log_close();
balrog924edca2007-06-10 14:07:13 +0000526 }
pbrook493ae1f2007-11-23 16:53:59 +0000527 va_end(ap2);
j_mayerf9373292007-09-29 12:18:20 +0000528 va_end(ap);
Riku Voipiofd052bf2010-01-25 14:30:49 +0200529#if defined(CONFIG_USER_ONLY)
530 {
531 struct sigaction act;
532 sigfillset(&act.sa_mask);
533 act.sa_handler = SIG_DFL;
534 sigaction(SIGABRT, &act, NULL);
535 }
536#endif
bellard75012672003-06-21 13:11:07 +0000537 abort();
538}
539
Andreas Färber9349b4f2012-03-14 01:38:32 +0100540CPUArchState *cpu_copy(CPUArchState *env)
thsc5be9f02007-02-28 20:20:53 +0000541{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100542 CPUArchState *new_env = cpu_init(env->cpu_model_str);
543 CPUArchState *next_cpu = new_env->next_cpu;
aliguori5a38f082009-01-15 20:16:51 +0000544#if defined(TARGET_HAS_ICE)
545 CPUBreakpoint *bp;
546 CPUWatchpoint *wp;
547#endif
548
Andreas Färber9349b4f2012-03-14 01:38:32 +0100549 memcpy(new_env, env, sizeof(CPUArchState));
aliguori5a38f082009-01-15 20:16:51 +0000550
Andreas Färber55e5c282012-12-17 06:18:02 +0100551 /* Preserve chaining. */
thsc5be9f02007-02-28 20:20:53 +0000552 new_env->next_cpu = next_cpu;
aliguori5a38f082009-01-15 20:16:51 +0000553
554 /* Clone all break/watchpoints.
555 Note: Once we support ptrace with hw-debug register access, make sure
556 BP_CPU break/watchpoints are handled correctly on clone. */
Blue Swirl72cf2d42009-09-12 07:36:22 +0000557 QTAILQ_INIT(&env->breakpoints);
558 QTAILQ_INIT(&env->watchpoints);
aliguori5a38f082009-01-15 20:16:51 +0000559#if defined(TARGET_HAS_ICE)
Blue Swirl72cf2d42009-09-12 07:36:22 +0000560 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
aliguori5a38f082009-01-15 20:16:51 +0000561 cpu_breakpoint_insert(new_env, bp->pc, bp->flags, NULL);
562 }
Blue Swirl72cf2d42009-09-12 07:36:22 +0000563 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
aliguori5a38f082009-01-15 20:16:51 +0000564 cpu_watchpoint_insert(new_env, wp->vaddr, (~wp->len_mask) + 1,
565 wp->flags, NULL);
566 }
567#endif
568
thsc5be9f02007-02-28 20:20:53 +0000569 return new_env;
570}
571
bellard01243112004-01-04 15:48:17 +0000572#if !defined(CONFIG_USER_ONLY)
Juan Quintelad24981d2012-05-22 00:42:40 +0200573static void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t end,
574 uintptr_t length)
bellard1ccde1c2004-02-06 19:46:14 +0000575{
Juan Quintelad24981d2012-05-22 00:42:40 +0200576 uintptr_t start1;
bellardf23db162005-08-21 19:12:28 +0000577
bellard1ccde1c2004-02-06 19:46:14 +0000578 /* we modify the TLB cache so that the dirty bit will be set again
579 when accessing the range */
Stefan Weil8efe0ca2012-04-12 15:42:19 +0200580 start1 = (uintptr_t)qemu_safe_ram_ptr(start);
Stefan Weila57d23e2011-04-30 22:49:26 +0200581 /* Check that we don't span multiple blocks - this breaks the
pbrook5579c7f2009-04-11 14:47:08 +0000582 address comparisons below. */
Stefan Weil8efe0ca2012-04-12 15:42:19 +0200583 if ((uintptr_t)qemu_safe_ram_ptr(end - 1) - start1
pbrook5579c7f2009-04-11 14:47:08 +0000584 != (end - 1) - start) {
585 abort();
586 }
Blue Swirle5548612012-04-21 13:08:33 +0000587 cpu_tlb_reset_dirty_all(start1, length);
Juan Quintelad24981d2012-05-22 00:42:40 +0200588
589}
590
591/* Note: start and end must be within the same ram block. */
592void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
593 int dirty_flags)
594{
595 uintptr_t length;
596
597 start &= TARGET_PAGE_MASK;
598 end = TARGET_PAGE_ALIGN(end);
599
600 length = end - start;
601 if (length == 0)
602 return;
603 cpu_physical_memory_mask_dirty_range(start, length, dirty_flags);
604
605 if (tcg_enabled()) {
606 tlb_reset_dirty_range_all(start, end, length);
607 }
bellard1ccde1c2004-02-06 19:46:14 +0000608}
609
Blue Swirl8b9c99d2012-10-28 11:04:51 +0000610static int cpu_physical_memory_set_dirty_tracking(int enable)
aliguori74576192008-10-06 14:02:03 +0000611{
Michael S. Tsirkinf6f3fbc2010-01-27 22:06:57 +0200612 int ret = 0;
aliguori74576192008-10-06 14:02:03 +0000613 in_migration = enable;
Michael S. Tsirkinf6f3fbc2010-01-27 22:06:57 +0200614 return ret;
aliguori74576192008-10-06 14:02:03 +0000615}
616
Avi Kivitya8170e52012-10-23 12:30:10 +0200617hwaddr memory_region_section_get_iotlb(CPUArchState *env,
Blue Swirle5548612012-04-21 13:08:33 +0000618 MemoryRegionSection *section,
619 target_ulong vaddr,
Avi Kivitya8170e52012-10-23 12:30:10 +0200620 hwaddr paddr,
Blue Swirle5548612012-04-21 13:08:33 +0000621 int prot,
622 target_ulong *address)
623{
Avi Kivitya8170e52012-10-23 12:30:10 +0200624 hwaddr iotlb;
Blue Swirle5548612012-04-21 13:08:33 +0000625 CPUWatchpoint *wp;
626
Blue Swirlcc5bea62012-04-14 14:56:48 +0000627 if (memory_region_is_ram(section->mr)) {
Blue Swirle5548612012-04-21 13:08:33 +0000628 /* Normal RAM. */
629 iotlb = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +0000630 + memory_region_section_addr(section, paddr);
Blue Swirle5548612012-04-21 13:08:33 +0000631 if (!section->readonly) {
632 iotlb |= phys_section_notdirty;
633 } else {
634 iotlb |= phys_section_rom;
635 }
636 } else {
Blue Swirle5548612012-04-21 13:08:33 +0000637 iotlb = section - phys_sections;
Blue Swirlcc5bea62012-04-14 14:56:48 +0000638 iotlb += memory_region_section_addr(section, paddr);
Blue Swirle5548612012-04-21 13:08:33 +0000639 }
640
641 /* Make accesses to pages with watchpoints go via the
642 watchpoint trap routines. */
643 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
644 if (vaddr == (wp->vaddr & TARGET_PAGE_MASK)) {
645 /* Avoid trapping reads of pages with a write breakpoint. */
646 if ((prot & PAGE_WRITE) || (wp->flags & BP_MEM_READ)) {
647 iotlb = phys_section_watch + paddr;
648 *address |= TLB_MMIO;
649 break;
650 }
651 }
652 }
653
654 return iotlb;
655}
bellard9fa3e852004-01-04 18:06:42 +0000656#endif /* defined(CONFIG_USER_ONLY) */
657
pbrooke2eef172008-06-08 01:09:01 +0000658#if !defined(CONFIG_USER_ONLY)
pbrook8da3ff12008-12-01 18:59:50 +0000659
Paul Brookc04b2b72010-03-01 03:31:14 +0000660#define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK)
661typedef struct subpage_t {
Avi Kivity70c68e42012-01-02 12:32:48 +0200662 MemoryRegion iomem;
Avi Kivitya8170e52012-10-23 12:30:10 +0200663 hwaddr base;
Avi Kivity5312bd82012-02-12 18:32:55 +0200664 uint16_t sub_section[TARGET_PAGE_SIZE];
Paul Brookc04b2b72010-03-01 03:31:14 +0000665} subpage_t;
666
Anthony Liguoric227f092009-10-01 16:12:16 -0500667static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
Avi Kivity5312bd82012-02-12 18:32:55 +0200668 uint16_t section);
Avi Kivitya8170e52012-10-23 12:30:10 +0200669static subpage_t *subpage_init(hwaddr base);
Avi Kivity5312bd82012-02-12 18:32:55 +0200670static void destroy_page_desc(uint16_t section_index)
Avi Kivity54688b12012-02-09 17:34:32 +0200671{
Avi Kivity5312bd82012-02-12 18:32:55 +0200672 MemoryRegionSection *section = &phys_sections[section_index];
673 MemoryRegion *mr = section->mr;
Avi Kivity54688b12012-02-09 17:34:32 +0200674
675 if (mr->subpage) {
676 subpage_t *subpage = container_of(mr, subpage_t, iomem);
677 memory_region_destroy(&subpage->iomem);
678 g_free(subpage);
679 }
680}
681
Avi Kivity4346ae32012-02-10 17:00:01 +0200682static void destroy_l2_mapping(PhysPageEntry *lp, unsigned level)
Avi Kivity54688b12012-02-09 17:34:32 +0200683{
684 unsigned i;
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200685 PhysPageEntry *p;
Avi Kivity54688b12012-02-09 17:34:32 +0200686
Avi Kivityc19e8802012-02-13 20:25:31 +0200687 if (lp->ptr == PHYS_MAP_NODE_NIL) {
Avi Kivity54688b12012-02-09 17:34:32 +0200688 return;
689 }
690
Avi Kivityc19e8802012-02-13 20:25:31 +0200691 p = phys_map_nodes[lp->ptr];
Avi Kivity4346ae32012-02-10 17:00:01 +0200692 for (i = 0; i < L2_SIZE; ++i) {
Avi Kivity07f07b32012-02-13 20:45:32 +0200693 if (!p[i].is_leaf) {
Avi Kivity54688b12012-02-09 17:34:32 +0200694 destroy_l2_mapping(&p[i], level - 1);
Avi Kivity4346ae32012-02-10 17:00:01 +0200695 } else {
Avi Kivityc19e8802012-02-13 20:25:31 +0200696 destroy_page_desc(p[i].ptr);
Avi Kivity54688b12012-02-09 17:34:32 +0200697 }
Avi Kivity54688b12012-02-09 17:34:32 +0200698 }
Avi Kivity07f07b32012-02-13 20:45:32 +0200699 lp->is_leaf = 0;
Avi Kivityc19e8802012-02-13 20:25:31 +0200700 lp->ptr = PHYS_MAP_NODE_NIL;
Avi Kivity54688b12012-02-09 17:34:32 +0200701}
702
Avi Kivityac1970f2012-10-03 16:22:53 +0200703static void destroy_all_mappings(AddressSpaceDispatch *d)
Avi Kivity54688b12012-02-09 17:34:32 +0200704{
Avi Kivityac1970f2012-10-03 16:22:53 +0200705 destroy_l2_mapping(&d->phys_map, P_L2_LEVELS - 1);
Avi Kivityd6f2ea22012-02-12 20:12:49 +0200706 phys_map_nodes_reset();
Avi Kivity54688b12012-02-09 17:34:32 +0200707}
708
Avi Kivity5312bd82012-02-12 18:32:55 +0200709static uint16_t phys_section_add(MemoryRegionSection *section)
710{
Paolo Bonzini68f3f652013-05-07 11:30:23 +0200711 /* The physical section number is ORed with a page-aligned
712 * pointer to produce the iotlb entries. Thus it should
713 * never overflow into the page-aligned value.
714 */
715 assert(phys_sections_nb < TARGET_PAGE_SIZE);
716
Avi Kivity5312bd82012-02-12 18:32:55 +0200717 if (phys_sections_nb == phys_sections_nb_alloc) {
718 phys_sections_nb_alloc = MAX(phys_sections_nb_alloc * 2, 16);
719 phys_sections = g_renew(MemoryRegionSection, phys_sections,
720 phys_sections_nb_alloc);
721 }
722 phys_sections[phys_sections_nb] = *section;
723 return phys_sections_nb++;
724}
725
726static void phys_sections_clear(void)
727{
728 phys_sections_nb = 0;
729}
730
Avi Kivityac1970f2012-10-03 16:22:53 +0200731static void register_subpage(AddressSpaceDispatch *d, MemoryRegionSection *section)
Avi Kivity0f0cb162012-02-13 17:14:32 +0200732{
733 subpage_t *subpage;
Avi Kivitya8170e52012-10-23 12:30:10 +0200734 hwaddr base = section->offset_within_address_space
Avi Kivity0f0cb162012-02-13 17:14:32 +0200735 & TARGET_PAGE_MASK;
Avi Kivityac1970f2012-10-03 16:22:53 +0200736 MemoryRegionSection *existing = phys_page_find(d, base >> TARGET_PAGE_BITS);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200737 MemoryRegionSection subsection = {
738 .offset_within_address_space = base,
739 .size = TARGET_PAGE_SIZE,
740 };
Avi Kivitya8170e52012-10-23 12:30:10 +0200741 hwaddr start, end;
Avi Kivity0f0cb162012-02-13 17:14:32 +0200742
Avi Kivityf3705d52012-03-08 16:16:34 +0200743 assert(existing->mr->subpage || existing->mr == &io_mem_unassigned);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200744
Avi Kivityf3705d52012-03-08 16:16:34 +0200745 if (!(existing->mr->subpage)) {
Avi Kivity0f0cb162012-02-13 17:14:32 +0200746 subpage = subpage_init(base);
747 subsection.mr = &subpage->iomem;
Avi Kivityac1970f2012-10-03 16:22:53 +0200748 phys_page_set(d, base >> TARGET_PAGE_BITS, 1,
Avi Kivity29990972012-02-13 20:21:20 +0200749 phys_section_add(&subsection));
Avi Kivity0f0cb162012-02-13 17:14:32 +0200750 } else {
Avi Kivityf3705d52012-03-08 16:16:34 +0200751 subpage = container_of(existing->mr, subpage_t, iomem);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200752 }
753 start = section->offset_within_address_space & ~TARGET_PAGE_MASK;
Tyler Halladb2a9b2012-07-25 18:45:03 -0400754 end = start + section->size - 1;
Avi Kivity0f0cb162012-02-13 17:14:32 +0200755 subpage_register(subpage, start, end, phys_section_add(section));
756}
757
758
Avi Kivityac1970f2012-10-03 16:22:53 +0200759static void register_multipage(AddressSpaceDispatch *d, MemoryRegionSection *section)
bellard33417e72003-08-10 21:47:01 +0000760{
Avi Kivitya8170e52012-10-23 12:30:10 +0200761 hwaddr start_addr = section->offset_within_address_space;
Avi Kivitydd811242012-01-02 12:17:03 +0200762 ram_addr_t size = section->size;
Avi Kivitya8170e52012-10-23 12:30:10 +0200763 hwaddr addr;
Avi Kivity5312bd82012-02-12 18:32:55 +0200764 uint16_t section_index = phys_section_add(section);
Avi Kivitydd811242012-01-02 12:17:03 +0200765
Edgar E. Iglesias3b8e6a22011-04-05 13:00:36 +0200766 assert(size);
Michael S. Tsirkinf6f3fbc2010-01-27 22:06:57 +0200767
Edgar E. Iglesias3b8e6a22011-04-05 13:00:36 +0200768 addr = start_addr;
Avi Kivityac1970f2012-10-03 16:22:53 +0200769 phys_page_set(d, addr >> TARGET_PAGE_BITS, size >> TARGET_PAGE_BITS,
Avi Kivity29990972012-02-13 20:21:20 +0200770 section_index);
bellard33417e72003-08-10 21:47:01 +0000771}
772
Avi Kivity86a86232012-10-30 13:47:45 +0200773QEMU_BUILD_BUG_ON(TARGET_PHYS_ADDR_SPACE_BITS > MAX_PHYS_ADDR_SPACE_BITS)
774
775static MemoryRegionSection limit(MemoryRegionSection section)
776{
777 section.size = MIN(section.offset_within_address_space + section.size,
778 MAX_PHYS_ADDR + 1)
779 - section.offset_within_address_space;
780
781 return section;
782}
783
Avi Kivityac1970f2012-10-03 16:22:53 +0200784static void mem_add(MemoryListener *listener, MemoryRegionSection *section)
Avi Kivity0f0cb162012-02-13 17:14:32 +0200785{
Avi Kivityac1970f2012-10-03 16:22:53 +0200786 AddressSpaceDispatch *d = container_of(listener, AddressSpaceDispatch, listener);
Avi Kivity86a86232012-10-30 13:47:45 +0200787 MemoryRegionSection now = limit(*section), remain = limit(*section);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200788
789 if ((now.offset_within_address_space & ~TARGET_PAGE_MASK)
790 || (now.size < TARGET_PAGE_SIZE)) {
791 now.size = MIN(TARGET_PAGE_ALIGN(now.offset_within_address_space)
792 - now.offset_within_address_space,
793 now.size);
Avi Kivityac1970f2012-10-03 16:22:53 +0200794 register_subpage(d, &now);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200795 remain.size -= now.size;
796 remain.offset_within_address_space += now.size;
797 remain.offset_within_region += now.size;
798 }
Tyler Hall69b67642012-07-25 18:45:04 -0400799 while (remain.size >= TARGET_PAGE_SIZE) {
800 now = remain;
801 if (remain.offset_within_region & ~TARGET_PAGE_MASK) {
802 now.size = TARGET_PAGE_SIZE;
Avi Kivityac1970f2012-10-03 16:22:53 +0200803 register_subpage(d, &now);
Tyler Hall69b67642012-07-25 18:45:04 -0400804 } else {
805 now.size &= TARGET_PAGE_MASK;
Avi Kivityac1970f2012-10-03 16:22:53 +0200806 register_multipage(d, &now);
Tyler Hall69b67642012-07-25 18:45:04 -0400807 }
Avi Kivity0f0cb162012-02-13 17:14:32 +0200808 remain.size -= now.size;
809 remain.offset_within_address_space += now.size;
810 remain.offset_within_region += now.size;
811 }
812 now = remain;
813 if (now.size) {
Avi Kivityac1970f2012-10-03 16:22:53 +0200814 register_subpage(d, &now);
Avi Kivity0f0cb162012-02-13 17:14:32 +0200815 }
816}
817
Sheng Yang62a27442010-01-26 19:21:16 +0800818void qemu_flush_coalesced_mmio_buffer(void)
819{
820 if (kvm_enabled())
821 kvm_flush_coalesced_mmio_buffer();
822}
823
Umesh Deshpandeb2a86582011-08-17 00:01:33 -0700824void qemu_mutex_lock_ramlist(void)
825{
826 qemu_mutex_lock(&ram_list.mutex);
827}
828
829void qemu_mutex_unlock_ramlist(void)
830{
831 qemu_mutex_unlock(&ram_list.mutex);
832}
833
Marcelo Tosattic9027602010-03-01 20:25:08 -0300834#if defined(__linux__) && !defined(TARGET_S390X)
835
836#include <sys/vfs.h>
837
838#define HUGETLBFS_MAGIC 0x958458f6
839
840static long gethugepagesize(const char *path)
841{
842 struct statfs fs;
843 int ret;
844
845 do {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900846 ret = statfs(path, &fs);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300847 } while (ret != 0 && errno == EINTR);
848
849 if (ret != 0) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900850 perror(path);
851 return 0;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300852 }
853
854 if (fs.f_type != HUGETLBFS_MAGIC)
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900855 fprintf(stderr, "Warning: path not on HugeTLBFS: %s\n", path);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300856
857 return fs.f_bsize;
858}
859
Alex Williamson04b16652010-07-02 11:13:17 -0600860static void *file_ram_alloc(RAMBlock *block,
861 ram_addr_t memory,
862 const char *path)
Marcelo Tosattic9027602010-03-01 20:25:08 -0300863{
864 char *filename;
Peter Feiner8ca761f2013-03-04 13:54:25 -0500865 char *sanitized_name;
866 char *c;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300867 void *area;
868 int fd;
869#ifdef MAP_POPULATE
870 int flags;
871#endif
872 unsigned long hpagesize;
873
874 hpagesize = gethugepagesize(path);
875 if (!hpagesize) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900876 return NULL;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300877 }
878
879 if (memory < hpagesize) {
880 return NULL;
881 }
882
883 if (kvm_enabled() && !kvm_has_sync_mmu()) {
884 fprintf(stderr, "host lacks kvm mmu notifiers, -mem-path unsupported\n");
885 return NULL;
886 }
887
Peter Feiner8ca761f2013-03-04 13:54:25 -0500888 /* Make name safe to use with mkstemp by replacing '/' with '_'. */
889 sanitized_name = g_strdup(block->mr->name);
890 for (c = sanitized_name; *c != '\0'; c++) {
891 if (*c == '/')
892 *c = '_';
893 }
894
895 filename = g_strdup_printf("%s/qemu_back_mem.%s.XXXXXX", path,
896 sanitized_name);
897 g_free(sanitized_name);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300898
899 fd = mkstemp(filename);
900 if (fd < 0) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900901 perror("unable to create backing store for hugepages");
Stefan Weile4ada482013-01-16 18:37:23 +0100902 g_free(filename);
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900903 return NULL;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300904 }
905 unlink(filename);
Stefan Weile4ada482013-01-16 18:37:23 +0100906 g_free(filename);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300907
908 memory = (memory+hpagesize-1) & ~(hpagesize-1);
909
910 /*
911 * ftruncate is not supported by hugetlbfs in older
912 * hosts, so don't bother bailing out on errors.
913 * If anything goes wrong with it under other filesystems,
914 * mmap will fail.
915 */
916 if (ftruncate(fd, memory))
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900917 perror("ftruncate");
Marcelo Tosattic9027602010-03-01 20:25:08 -0300918
919#ifdef MAP_POPULATE
920 /* NB: MAP_POPULATE won't exhaustively alloc all phys pages in the case
921 * MAP_PRIVATE is requested. For mem_prealloc we mmap as MAP_SHARED
922 * to sidestep this quirk.
923 */
924 flags = mem_prealloc ? MAP_POPULATE | MAP_SHARED : MAP_PRIVATE;
925 area = mmap(0, memory, PROT_READ | PROT_WRITE, flags, fd, 0);
926#else
927 area = mmap(0, memory, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
928#endif
929 if (area == MAP_FAILED) {
Yoshiaki Tamura9742bf22010-08-18 13:30:13 +0900930 perror("file_ram_alloc: can't mmap RAM pages");
931 close(fd);
932 return (NULL);
Marcelo Tosattic9027602010-03-01 20:25:08 -0300933 }
Alex Williamson04b16652010-07-02 11:13:17 -0600934 block->fd = fd;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300935 return area;
936}
937#endif
938
Alex Williamsond17b5282010-06-25 11:08:38 -0600939static ram_addr_t find_ram_offset(ram_addr_t size)
940{
Alex Williamson04b16652010-07-02 11:13:17 -0600941 RAMBlock *block, *next_block;
Alex Williamson3e837b22011-10-31 08:54:09 -0600942 ram_addr_t offset = RAM_ADDR_MAX, mingap = RAM_ADDR_MAX;
Alex Williamson04b16652010-07-02 11:13:17 -0600943
Stefan Hajnoczi49cd9ac2013-03-11 10:20:21 +0100944 assert(size != 0); /* it would hand out same offset multiple times */
945
Paolo Bonzinia3161032012-11-14 15:54:48 +0100946 if (QTAILQ_EMPTY(&ram_list.blocks))
Alex Williamson04b16652010-07-02 11:13:17 -0600947 return 0;
948
Paolo Bonzinia3161032012-11-14 15:54:48 +0100949 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Anthony PERARDf15fbc42011-07-20 08:17:42 +0000950 ram_addr_t end, next = RAM_ADDR_MAX;
Alex Williamson04b16652010-07-02 11:13:17 -0600951
952 end = block->offset + block->length;
953
Paolo Bonzinia3161032012-11-14 15:54:48 +0100954 QTAILQ_FOREACH(next_block, &ram_list.blocks, next) {
Alex Williamson04b16652010-07-02 11:13:17 -0600955 if (next_block->offset >= end) {
956 next = MIN(next, next_block->offset);
957 }
958 }
959 if (next - end >= size && next - end < mingap) {
Alex Williamson3e837b22011-10-31 08:54:09 -0600960 offset = end;
Alex Williamson04b16652010-07-02 11:13:17 -0600961 mingap = next - end;
962 }
963 }
Alex Williamson3e837b22011-10-31 08:54:09 -0600964
965 if (offset == RAM_ADDR_MAX) {
966 fprintf(stderr, "Failed to find gap of requested size: %" PRIu64 "\n",
967 (uint64_t)size);
968 abort();
969 }
970
Alex Williamson04b16652010-07-02 11:13:17 -0600971 return offset;
972}
973
Juan Quintela652d7ec2012-07-20 10:37:54 +0200974ram_addr_t last_ram_offset(void)
Alex Williamson04b16652010-07-02 11:13:17 -0600975{
Alex Williamsond17b5282010-06-25 11:08:38 -0600976 RAMBlock *block;
977 ram_addr_t last = 0;
978
Paolo Bonzinia3161032012-11-14 15:54:48 +0100979 QTAILQ_FOREACH(block, &ram_list.blocks, next)
Alex Williamsond17b5282010-06-25 11:08:38 -0600980 last = MAX(last, block->offset + block->length);
981
982 return last;
983}
984
Jason Baronddb97f12012-08-02 15:44:16 -0400985static void qemu_ram_setup_dump(void *addr, ram_addr_t size)
986{
987 int ret;
988 QemuOpts *machine_opts;
989
990 /* Use MADV_DONTDUMP, if user doesn't want the guest memory in the core */
991 machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
992 if (machine_opts &&
993 !qemu_opt_get_bool(machine_opts, "dump-guest-core", true)) {
994 ret = qemu_madvise(addr, size, QEMU_MADV_DONTDUMP);
995 if (ret) {
996 perror("qemu_madvise");
997 fprintf(stderr, "madvise doesn't support MADV_DONTDUMP, "
998 "but dump_guest_core=off specified\n");
999 }
1000 }
1001}
1002
Avi Kivityc5705a72011-12-20 15:59:12 +02001003void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev)
Cam Macdonell84b89d72010-07-26 18:10:57 -06001004{
1005 RAMBlock *new_block, *block;
1006
Avi Kivityc5705a72011-12-20 15:59:12 +02001007 new_block = NULL;
Paolo Bonzinia3161032012-11-14 15:54:48 +01001008 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Avi Kivityc5705a72011-12-20 15:59:12 +02001009 if (block->offset == addr) {
1010 new_block = block;
1011 break;
1012 }
1013 }
1014 assert(new_block);
1015 assert(!new_block->idstr[0]);
Cam Macdonell84b89d72010-07-26 18:10:57 -06001016
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001017 if (dev) {
1018 char *id = qdev_get_dev_path(dev);
Cam Macdonell84b89d72010-07-26 18:10:57 -06001019 if (id) {
1020 snprintf(new_block->idstr, sizeof(new_block->idstr), "%s/", id);
Anthony Liguori7267c092011-08-20 22:09:37 -05001021 g_free(id);
Cam Macdonell84b89d72010-07-26 18:10:57 -06001022 }
1023 }
1024 pstrcat(new_block->idstr, sizeof(new_block->idstr), name);
1025
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001026 /* This assumes the iothread lock is taken here too. */
1027 qemu_mutex_lock_ramlist();
Paolo Bonzinia3161032012-11-14 15:54:48 +01001028 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Avi Kivityc5705a72011-12-20 15:59:12 +02001029 if (block != new_block && !strcmp(block->idstr, new_block->idstr)) {
Cam Macdonell84b89d72010-07-26 18:10:57 -06001030 fprintf(stderr, "RAMBlock \"%s\" already registered, abort!\n",
1031 new_block->idstr);
1032 abort();
1033 }
1034 }
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001035 qemu_mutex_unlock_ramlist();
Avi Kivityc5705a72011-12-20 15:59:12 +02001036}
1037
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001038static int memory_try_enable_merging(void *addr, size_t len)
1039{
1040 QemuOpts *opts;
1041
1042 opts = qemu_opts_find(qemu_find_opts("machine"), 0);
1043 if (opts && !qemu_opt_get_bool(opts, "mem-merge", true)) {
1044 /* disabled by the user */
1045 return 0;
1046 }
1047
1048 return qemu_madvise(addr, len, QEMU_MADV_MERGEABLE);
1049}
1050
Avi Kivityc5705a72011-12-20 15:59:12 +02001051ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
1052 MemoryRegion *mr)
1053{
Paolo Bonziniabb26d62012-11-14 16:00:51 +01001054 RAMBlock *block, *new_block;
Avi Kivityc5705a72011-12-20 15:59:12 +02001055
1056 size = TARGET_PAGE_ALIGN(size);
1057 new_block = g_malloc0(sizeof(*new_block));
Cam Macdonell84b89d72010-07-26 18:10:57 -06001058
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001059 /* This assumes the iothread lock is taken here too. */
1060 qemu_mutex_lock_ramlist();
Avi Kivity7c637362011-12-21 13:09:49 +02001061 new_block->mr = mr;
Jun Nakajima432d2682010-08-31 16:41:25 +01001062 new_block->offset = find_ram_offset(size);
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001063 if (host) {
1064 new_block->host = host;
Huang Yingcd19cfa2011-03-02 08:56:19 +01001065 new_block->flags |= RAM_PREALLOC_MASK;
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001066 } else {
1067 if (mem_path) {
1068#if defined (__linux__) && !defined(TARGET_S390X)
1069 new_block->host = file_ram_alloc(new_block, size, mem_path);
1070 if (!new_block->host) {
Paolo Bonzini6eebf952013-05-13 16:19:55 +02001071 new_block->host = qemu_anon_ram_alloc(size);
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001072 memory_try_enable_merging(new_block->host, size);
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001073 }
1074#else
1075 fprintf(stderr, "-mem-path option unsupported\n");
1076 exit(1);
1077#endif
1078 } else {
Jan Kiszka868bb332011-06-21 22:59:09 +02001079 if (xen_enabled()) {
Avi Kivityfce537d2011-12-18 15:48:55 +02001080 xen_ram_alloc(new_block->offset, size, mr);
Christian Borntraegerfdec9912012-06-15 05:10:30 +00001081 } else if (kvm_enabled()) {
1082 /* some s390/kvm configurations have special constraints */
Paolo Bonzini6eebf952013-05-13 16:19:55 +02001083 new_block->host = kvm_ram_alloc(size);
Jun Nakajima432d2682010-08-31 16:41:25 +01001084 } else {
Paolo Bonzini6eebf952013-05-13 16:19:55 +02001085 new_block->host = qemu_anon_ram_alloc(size);
Jun Nakajima432d2682010-08-31 16:41:25 +01001086 }
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001087 memory_try_enable_merging(new_block->host, size);
Yoshiaki Tamura6977dfe2010-08-18 15:41:49 +09001088 }
1089 }
Cam Macdonell84b89d72010-07-26 18:10:57 -06001090 new_block->length = size;
1091
Paolo Bonziniabb26d62012-11-14 16:00:51 +01001092 /* Keep the list sorted from biggest to smallest block. */
1093 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
1094 if (block->length < new_block->length) {
1095 break;
1096 }
1097 }
1098 if (block) {
1099 QTAILQ_INSERT_BEFORE(block, new_block, next);
1100 } else {
1101 QTAILQ_INSERT_TAIL(&ram_list.blocks, new_block, next);
1102 }
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001103 ram_list.mru_block = NULL;
Cam Macdonell84b89d72010-07-26 18:10:57 -06001104
Umesh Deshpandef798b072011-08-18 11:41:17 -07001105 ram_list.version++;
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001106 qemu_mutex_unlock_ramlist();
Umesh Deshpandef798b072011-08-18 11:41:17 -07001107
Anthony Liguori7267c092011-08-20 22:09:37 -05001108 ram_list.phys_dirty = g_realloc(ram_list.phys_dirty,
Cam Macdonell84b89d72010-07-26 18:10:57 -06001109 last_ram_offset() >> TARGET_PAGE_BITS);
Igor Mitsyanko5fda0432012-08-10 18:45:11 +04001110 memset(ram_list.phys_dirty + (new_block->offset >> TARGET_PAGE_BITS),
1111 0, size >> TARGET_PAGE_BITS);
Juan Quintela1720aee2012-06-22 13:14:17 +02001112 cpu_physical_memory_set_dirty_range(new_block->offset, size, 0xff);
Cam Macdonell84b89d72010-07-26 18:10:57 -06001113
Jason Baronddb97f12012-08-02 15:44:16 -04001114 qemu_ram_setup_dump(new_block->host, size);
Luiz Capitulinoad0b5322012-10-05 16:47:57 -03001115 qemu_madvise(new_block->host, size, QEMU_MADV_HUGEPAGE);
Jason Baronddb97f12012-08-02 15:44:16 -04001116
Cam Macdonell84b89d72010-07-26 18:10:57 -06001117 if (kvm_enabled())
1118 kvm_setup_guest_memory(new_block->host, size);
1119
1120 return new_block->offset;
1121}
1122
Avi Kivityc5705a72011-12-20 15:59:12 +02001123ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr)
pbrook94a6b542009-04-11 17:15:54 +00001124{
Avi Kivityc5705a72011-12-20 15:59:12 +02001125 return qemu_ram_alloc_from_ptr(size, NULL, mr);
pbrook94a6b542009-04-11 17:15:54 +00001126}
bellarde9a1ab12007-02-08 23:08:38 +00001127
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001128void qemu_ram_free_from_ptr(ram_addr_t addr)
1129{
1130 RAMBlock *block;
1131
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001132 /* This assumes the iothread lock is taken here too. */
1133 qemu_mutex_lock_ramlist();
Paolo Bonzinia3161032012-11-14 15:54:48 +01001134 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001135 if (addr == block->offset) {
Paolo Bonzinia3161032012-11-14 15:54:48 +01001136 QTAILQ_REMOVE(&ram_list.blocks, block, next);
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001137 ram_list.mru_block = NULL;
Umesh Deshpandef798b072011-08-18 11:41:17 -07001138 ram_list.version++;
Anthony Liguori7267c092011-08-20 22:09:37 -05001139 g_free(block);
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001140 break;
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001141 }
1142 }
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001143 qemu_mutex_unlock_ramlist();
Alex Williamson1f2e98b2011-05-03 12:48:09 -06001144}
1145
Anthony Liguoric227f092009-10-01 16:12:16 -05001146void qemu_ram_free(ram_addr_t addr)
bellarde9a1ab12007-02-08 23:08:38 +00001147{
Alex Williamson04b16652010-07-02 11:13:17 -06001148 RAMBlock *block;
1149
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001150 /* This assumes the iothread lock is taken here too. */
1151 qemu_mutex_lock_ramlist();
Paolo Bonzinia3161032012-11-14 15:54:48 +01001152 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Alex Williamson04b16652010-07-02 11:13:17 -06001153 if (addr == block->offset) {
Paolo Bonzinia3161032012-11-14 15:54:48 +01001154 QTAILQ_REMOVE(&ram_list.blocks, block, next);
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001155 ram_list.mru_block = NULL;
Umesh Deshpandef798b072011-08-18 11:41:17 -07001156 ram_list.version++;
Huang Yingcd19cfa2011-03-02 08:56:19 +01001157 if (block->flags & RAM_PREALLOC_MASK) {
1158 ;
1159 } else if (mem_path) {
Alex Williamson04b16652010-07-02 11:13:17 -06001160#if defined (__linux__) && !defined(TARGET_S390X)
1161 if (block->fd) {
1162 munmap(block->host, block->length);
1163 close(block->fd);
1164 } else {
Paolo Bonzinie7a09b92013-05-13 16:19:56 +02001165 qemu_anon_ram_free(block->host, block->length);
Alex Williamson04b16652010-07-02 11:13:17 -06001166 }
Jan Kiszkafd28aa12011-03-15 12:26:14 +01001167#else
1168 abort();
Alex Williamson04b16652010-07-02 11:13:17 -06001169#endif
1170 } else {
Jan Kiszka868bb332011-06-21 22:59:09 +02001171 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001172 xen_invalidate_map_cache_entry(block->host);
Jun Nakajima432d2682010-08-31 16:41:25 +01001173 } else {
Paolo Bonzinie7a09b92013-05-13 16:19:56 +02001174 qemu_anon_ram_free(block->host, block->length);
Jun Nakajima432d2682010-08-31 16:41:25 +01001175 }
Alex Williamson04b16652010-07-02 11:13:17 -06001176 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001177 g_free(block);
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001178 break;
Alex Williamson04b16652010-07-02 11:13:17 -06001179 }
1180 }
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001181 qemu_mutex_unlock_ramlist();
Alex Williamson04b16652010-07-02 11:13:17 -06001182
bellarde9a1ab12007-02-08 23:08:38 +00001183}
1184
Huang Yingcd19cfa2011-03-02 08:56:19 +01001185#ifndef _WIN32
1186void qemu_ram_remap(ram_addr_t addr, ram_addr_t length)
1187{
1188 RAMBlock *block;
1189 ram_addr_t offset;
1190 int flags;
1191 void *area, *vaddr;
1192
Paolo Bonzinia3161032012-11-14 15:54:48 +01001193 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Huang Yingcd19cfa2011-03-02 08:56:19 +01001194 offset = addr - block->offset;
1195 if (offset < block->length) {
1196 vaddr = block->host + offset;
1197 if (block->flags & RAM_PREALLOC_MASK) {
1198 ;
1199 } else {
1200 flags = MAP_FIXED;
1201 munmap(vaddr, length);
1202 if (mem_path) {
1203#if defined(__linux__) && !defined(TARGET_S390X)
1204 if (block->fd) {
1205#ifdef MAP_POPULATE
1206 flags |= mem_prealloc ? MAP_POPULATE | MAP_SHARED :
1207 MAP_PRIVATE;
1208#else
1209 flags |= MAP_PRIVATE;
1210#endif
1211 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1212 flags, block->fd, offset);
1213 } else {
1214 flags |= MAP_PRIVATE | MAP_ANONYMOUS;
1215 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1216 flags, -1, 0);
1217 }
Jan Kiszkafd28aa12011-03-15 12:26:14 +01001218#else
1219 abort();
Huang Yingcd19cfa2011-03-02 08:56:19 +01001220#endif
1221 } else {
1222#if defined(TARGET_S390X) && defined(CONFIG_KVM)
1223 flags |= MAP_SHARED | MAP_ANONYMOUS;
1224 area = mmap(vaddr, length, PROT_EXEC|PROT_READ|PROT_WRITE,
1225 flags, -1, 0);
1226#else
1227 flags |= MAP_PRIVATE | MAP_ANONYMOUS;
1228 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1229 flags, -1, 0);
1230#endif
1231 }
1232 if (area != vaddr) {
Anthony PERARDf15fbc42011-07-20 08:17:42 +00001233 fprintf(stderr, "Could not remap addr: "
1234 RAM_ADDR_FMT "@" RAM_ADDR_FMT "\n",
Huang Yingcd19cfa2011-03-02 08:56:19 +01001235 length, addr);
1236 exit(1);
1237 }
Luiz Capitulino8490fc72012-09-05 16:50:16 -03001238 memory_try_enable_merging(vaddr, length);
Jason Baronddb97f12012-08-02 15:44:16 -04001239 qemu_ram_setup_dump(vaddr, length);
Huang Yingcd19cfa2011-03-02 08:56:19 +01001240 }
1241 return;
1242 }
1243 }
1244}
1245#endif /* !_WIN32 */
1246
pbrookdc828ca2009-04-09 22:21:07 +00001247/* Return a host pointer to ram allocated with qemu_ram_alloc.
pbrook5579c7f2009-04-11 14:47:08 +00001248 With the exception of the softmmu code in this file, this should
1249 only be used for local memory (e.g. video ram) that the device owns,
1250 and knows it isn't going to access beyond the end of the block.
1251
1252 It should not be used for general purpose DMA.
1253 Use cpu_physical_memory_map/cpu_physical_memory_rw instead.
1254 */
Anthony Liguoric227f092009-10-01 16:12:16 -05001255void *qemu_get_ram_ptr(ram_addr_t addr)
pbrookdc828ca2009-04-09 22:21:07 +00001256{
pbrook94a6b542009-04-11 17:15:54 +00001257 RAMBlock *block;
1258
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001259 /* The list is protected by the iothread lock here. */
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001260 block = ram_list.mru_block;
1261 if (block && addr - block->offset < block->length) {
1262 goto found;
1263 }
Paolo Bonzinia3161032012-11-14 15:54:48 +01001264 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Alex Williamsonf471a172010-06-11 11:11:42 -06001265 if (addr - block->offset < block->length) {
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001266 goto found;
Alex Williamsonf471a172010-06-11 11:11:42 -06001267 }
pbrook94a6b542009-04-11 17:15:54 +00001268 }
Alex Williamsonf471a172010-06-11 11:11:42 -06001269
1270 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1271 abort();
1272
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001273found:
1274 ram_list.mru_block = block;
1275 if (xen_enabled()) {
1276 /* We need to check if the requested address is in the RAM
1277 * because we don't want to map the entire memory in QEMU.
1278 * In that case just map until the end of the page.
1279 */
1280 if (block->offset == 0) {
1281 return xen_map_cache(addr, 0, 0);
1282 } else if (block->host == NULL) {
1283 block->host =
1284 xen_map_cache(block->offset, block->length, 1);
1285 }
1286 }
1287 return block->host + (addr - block->offset);
pbrookdc828ca2009-04-09 22:21:07 +00001288}
1289
Paolo Bonzini0d6d3c82012-11-14 15:45:02 +01001290/* Return a host pointer to ram allocated with qemu_ram_alloc. Same as
1291 * qemu_get_ram_ptr but do not touch ram_list.mru_block.
1292 *
1293 * ??? Is this still necessary?
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001294 */
Blue Swirl8b9c99d2012-10-28 11:04:51 +00001295static void *qemu_safe_ram_ptr(ram_addr_t addr)
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001296{
1297 RAMBlock *block;
1298
Umesh Deshpandeb2a86582011-08-17 00:01:33 -07001299 /* The list is protected by the iothread lock here. */
Paolo Bonzinia3161032012-11-14 15:54:48 +01001300 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001301 if (addr - block->offset < block->length) {
Jan Kiszka868bb332011-06-21 22:59:09 +02001302 if (xen_enabled()) {
Jun Nakajima432d2682010-08-31 16:41:25 +01001303 /* We need to check if the requested address is in the RAM
1304 * because we don't want to map the entire memory in QEMU.
Stefano Stabellini712c2b42011-05-19 18:35:46 +01001305 * In that case just map until the end of the page.
Jun Nakajima432d2682010-08-31 16:41:25 +01001306 */
1307 if (block->offset == 0) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001308 return xen_map_cache(addr, 0, 0);
Jun Nakajima432d2682010-08-31 16:41:25 +01001309 } else if (block->host == NULL) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001310 block->host =
1311 xen_map_cache(block->offset, block->length, 1);
Jun Nakajima432d2682010-08-31 16:41:25 +01001312 }
1313 }
Michael S. Tsirkinb2e0a132010-11-22 19:52:34 +02001314 return block->host + (addr - block->offset);
1315 }
1316 }
1317
1318 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1319 abort();
1320
1321 return NULL;
1322}
1323
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001324/* Return a host pointer to guest's ram. Similar to qemu_get_ram_ptr
1325 * but takes a size argument */
Blue Swirl8b9c99d2012-10-28 11:04:51 +00001326static void *qemu_ram_ptr_length(ram_addr_t addr, ram_addr_t *size)
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001327{
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01001328 if (*size == 0) {
1329 return NULL;
1330 }
Jan Kiszka868bb332011-06-21 22:59:09 +02001331 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001332 return xen_map_cache(addr, *size, 1);
Jan Kiszka868bb332011-06-21 22:59:09 +02001333 } else {
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001334 RAMBlock *block;
1335
Paolo Bonzinia3161032012-11-14 15:54:48 +01001336 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001337 if (addr - block->offset < block->length) {
1338 if (addr - block->offset + *size > block->length)
1339 *size = block->length - addr + block->offset;
1340 return block->host + (addr - block->offset);
1341 }
1342 }
1343
1344 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1345 abort();
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01001346 }
1347}
1348
Marcelo Tosattie8902612010-10-11 15:31:19 -03001349int qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr)
pbrook5579c7f2009-04-11 14:47:08 +00001350{
pbrook94a6b542009-04-11 17:15:54 +00001351 RAMBlock *block;
1352 uint8_t *host = ptr;
1353
Jan Kiszka868bb332011-06-21 22:59:09 +02001354 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02001355 *ram_addr = xen_ram_addr_from_mapcache(ptr);
Stefano Stabellini712c2b42011-05-19 18:35:46 +01001356 return 0;
1357 }
1358
Paolo Bonzinia3161032012-11-14 15:54:48 +01001359 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
Jun Nakajima432d2682010-08-31 16:41:25 +01001360 /* This case append when the block is not mapped. */
1361 if (block->host == NULL) {
1362 continue;
1363 }
Alex Williamsonf471a172010-06-11 11:11:42 -06001364 if (host - block->host < block->length) {
Marcelo Tosattie8902612010-10-11 15:31:19 -03001365 *ram_addr = block->offset + (host - block->host);
1366 return 0;
Alex Williamsonf471a172010-06-11 11:11:42 -06001367 }
pbrook94a6b542009-04-11 17:15:54 +00001368 }
Jun Nakajima432d2682010-08-31 16:41:25 +01001369
Marcelo Tosattie8902612010-10-11 15:31:19 -03001370 return -1;
1371}
Alex Williamsonf471a172010-06-11 11:11:42 -06001372
Marcelo Tosattie8902612010-10-11 15:31:19 -03001373/* Some of the softmmu routines need to translate from a host pointer
1374 (typically a TLB entry) back to a ram offset. */
1375ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr)
1376{
1377 ram_addr_t ram_addr;
Alex Williamsonf471a172010-06-11 11:11:42 -06001378
Marcelo Tosattie8902612010-10-11 15:31:19 -03001379 if (qemu_ram_addr_from_host(ptr, &ram_addr)) {
1380 fprintf(stderr, "Bad ram pointer %p\n", ptr);
1381 abort();
1382 }
1383 return ram_addr;
pbrook5579c7f2009-04-11 14:47:08 +00001384}
1385
Avi Kivitya8170e52012-10-23 12:30:10 +02001386static uint64_t unassigned_mem_read(void *opaque, hwaddr addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001387 unsigned size)
bellard33417e72003-08-10 21:47:01 +00001388{
pbrook67d3b952006-12-18 05:03:52 +00001389#ifdef DEBUG_UNASSIGNED
blueswir1ab3d1722007-11-04 07:31:40 +00001390 printf("Unassigned mem read " TARGET_FMT_plx "\n", addr);
pbrook67d3b952006-12-18 05:03:52 +00001391#endif
Richard Henderson5b450402011-04-18 16:13:12 -07001392#if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE)
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001393 cpu_unassigned_access(cpu_single_env, addr, 0, 0, 0, size);
blueswir1e18231a2008-10-06 18:46:28 +00001394#endif
1395 return 0;
1396}
1397
Avi Kivitya8170e52012-10-23 12:30:10 +02001398static void unassigned_mem_write(void *opaque, hwaddr addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001399 uint64_t val, unsigned size)
blueswir1e18231a2008-10-06 18:46:28 +00001400{
1401#ifdef DEBUG_UNASSIGNED
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001402 printf("Unassigned mem write " TARGET_FMT_plx " = 0x%"PRIx64"\n", addr, val);
blueswir1e18231a2008-10-06 18:46:28 +00001403#endif
Richard Henderson5b450402011-04-18 16:13:12 -07001404#if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE)
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001405 cpu_unassigned_access(cpu_single_env, addr, 1, 0, 0, size);
blueswir1e18231a2008-10-06 18:46:28 +00001406#endif
1407}
1408
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001409static const MemoryRegionOps unassigned_mem_ops = {
1410 .read = unassigned_mem_read,
1411 .write = unassigned_mem_write,
1412 .endianness = DEVICE_NATIVE_ENDIAN,
bellard33417e72003-08-10 21:47:01 +00001413};
1414
Avi Kivitya8170e52012-10-23 12:30:10 +02001415static void notdirty_mem_write(void *opaque, hwaddr ram_addr,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001416 uint64_t val, unsigned size)
bellard1ccde1c2004-02-06 19:46:14 +00001417{
bellard3a7d9292005-08-21 09:26:42 +00001418 int dirty_flags;
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09001419 dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
bellard3a7d9292005-08-21 09:26:42 +00001420 if (!(dirty_flags & CODE_DIRTY_FLAG)) {
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001421 tb_invalidate_phys_page_fast(ram_addr, size);
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09001422 dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
bellard3a7d9292005-08-21 09:26:42 +00001423 }
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001424 switch (size) {
1425 case 1:
1426 stb_p(qemu_get_ram_ptr(ram_addr), val);
1427 break;
1428 case 2:
1429 stw_p(qemu_get_ram_ptr(ram_addr), val);
1430 break;
1431 case 4:
1432 stl_p(qemu_get_ram_ptr(ram_addr), val);
1433 break;
1434 default:
1435 abort();
1436 }
bellardf23db162005-08-21 19:12:28 +00001437 dirty_flags |= (0xff & ~CODE_DIRTY_FLAG);
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09001438 cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
bellardf23db162005-08-21 19:12:28 +00001439 /* we remove the notdirty callback only if the code has been
1440 flushed */
1441 if (dirty_flags == 0xff)
pbrook2e70f6e2008-06-29 01:03:05 +00001442 tlb_set_dirty(cpu_single_env, cpu_single_env->mem_io_vaddr);
bellard1ccde1c2004-02-06 19:46:14 +00001443}
1444
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001445static const MemoryRegionOps notdirty_mem_ops = {
Paolo Bonzinibf8d5162013-05-24 14:39:13 +02001446 .read = unassigned_mem_read,
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001447 .write = notdirty_mem_write,
1448 .endianness = DEVICE_NATIVE_ENDIAN,
bellard1ccde1c2004-02-06 19:46:14 +00001449};
1450
pbrook0f459d12008-06-09 00:20:13 +00001451/* Generate a debug exception if a watchpoint has been hit. */
aliguorib4051332008-11-18 20:14:20 +00001452static void check_watchpoint(int offset, int len_mask, int flags)
pbrook0f459d12008-06-09 00:20:13 +00001453{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001454 CPUArchState *env = cpu_single_env;
aliguori06d55cc2008-11-18 20:24:06 +00001455 target_ulong pc, cs_base;
pbrook0f459d12008-06-09 00:20:13 +00001456 target_ulong vaddr;
aliguoria1d1bb32008-11-18 20:07:32 +00001457 CPUWatchpoint *wp;
aliguori06d55cc2008-11-18 20:24:06 +00001458 int cpu_flags;
pbrook0f459d12008-06-09 00:20:13 +00001459
aliguori06d55cc2008-11-18 20:24:06 +00001460 if (env->watchpoint_hit) {
1461 /* We re-entered the check after replacing the TB. Now raise
1462 * the debug interrupt so that is will trigger after the
1463 * current instruction. */
Andreas Färberc3affe52013-01-18 15:03:43 +01001464 cpu_interrupt(ENV_GET_CPU(env), CPU_INTERRUPT_DEBUG);
aliguori06d55cc2008-11-18 20:24:06 +00001465 return;
1466 }
pbrook2e70f6e2008-06-29 01:03:05 +00001467 vaddr = (env->mem_io_vaddr & TARGET_PAGE_MASK) + offset;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001468 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
aliguorib4051332008-11-18 20:14:20 +00001469 if ((vaddr == (wp->vaddr & len_mask) ||
1470 (vaddr & wp->len_mask) == wp->vaddr) && (wp->flags & flags)) {
aliguori6e140f22008-11-18 20:37:55 +00001471 wp->flags |= BP_WATCHPOINT_HIT;
1472 if (!env->watchpoint_hit) {
1473 env->watchpoint_hit = wp;
Blue Swirl5a316522012-12-02 21:28:09 +00001474 tb_check_watchpoint(env);
aliguori6e140f22008-11-18 20:37:55 +00001475 if (wp->flags & BP_STOP_BEFORE_ACCESS) {
1476 env->exception_index = EXCP_DEBUG;
Max Filippov488d6572012-01-29 02:24:39 +04001477 cpu_loop_exit(env);
aliguori6e140f22008-11-18 20:37:55 +00001478 } else {
1479 cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags);
1480 tb_gen_code(env, pc, cs_base, cpu_flags, 1);
Max Filippov488d6572012-01-29 02:24:39 +04001481 cpu_resume_from_signal(env, NULL);
aliguori6e140f22008-11-18 20:37:55 +00001482 }
aliguori06d55cc2008-11-18 20:24:06 +00001483 }
aliguori6e140f22008-11-18 20:37:55 +00001484 } else {
1485 wp->flags &= ~BP_WATCHPOINT_HIT;
pbrook0f459d12008-06-09 00:20:13 +00001486 }
1487 }
1488}
1489
pbrook6658ffb2007-03-16 23:58:11 +00001490/* Watchpoint access routines. Watchpoints are inserted using TLB tricks,
1491 so these check for a hit then pass through to the normal out-of-line
1492 phys routines. */
Avi Kivitya8170e52012-10-23 12:30:10 +02001493static uint64_t watch_mem_read(void *opaque, hwaddr addr,
Avi Kivity1ec9b902012-01-02 12:47:48 +02001494 unsigned size)
pbrook6658ffb2007-03-16 23:58:11 +00001495{
Avi Kivity1ec9b902012-01-02 12:47:48 +02001496 check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_READ);
1497 switch (size) {
1498 case 1: return ldub_phys(addr);
1499 case 2: return lduw_phys(addr);
1500 case 4: return ldl_phys(addr);
1501 default: abort();
1502 }
pbrook6658ffb2007-03-16 23:58:11 +00001503}
1504
Avi Kivitya8170e52012-10-23 12:30:10 +02001505static void watch_mem_write(void *opaque, hwaddr addr,
Avi Kivity1ec9b902012-01-02 12:47:48 +02001506 uint64_t val, unsigned size)
pbrook6658ffb2007-03-16 23:58:11 +00001507{
Avi Kivity1ec9b902012-01-02 12:47:48 +02001508 check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_WRITE);
1509 switch (size) {
Max Filippov67364152012-01-29 00:01:40 +04001510 case 1:
1511 stb_phys(addr, val);
1512 break;
1513 case 2:
1514 stw_phys(addr, val);
1515 break;
1516 case 4:
1517 stl_phys(addr, val);
1518 break;
Avi Kivity1ec9b902012-01-02 12:47:48 +02001519 default: abort();
1520 }
pbrook6658ffb2007-03-16 23:58:11 +00001521}
1522
Avi Kivity1ec9b902012-01-02 12:47:48 +02001523static const MemoryRegionOps watch_mem_ops = {
1524 .read = watch_mem_read,
1525 .write = watch_mem_write,
1526 .endianness = DEVICE_NATIVE_ENDIAN,
pbrook6658ffb2007-03-16 23:58:11 +00001527};
pbrook6658ffb2007-03-16 23:58:11 +00001528
Avi Kivitya8170e52012-10-23 12:30:10 +02001529static uint64_t subpage_read(void *opaque, hwaddr addr,
Avi Kivity70c68e42012-01-02 12:32:48 +02001530 unsigned len)
blueswir1db7b5422007-05-26 17:36:03 +00001531{
Avi Kivity70c68e42012-01-02 12:32:48 +02001532 subpage_t *mmio = opaque;
Richard Hendersonf6405242010-04-22 16:47:31 -07001533 unsigned int idx = SUBPAGE_IDX(addr);
Avi Kivity5312bd82012-02-12 18:32:55 +02001534 MemoryRegionSection *section;
blueswir1db7b5422007-05-26 17:36:03 +00001535#if defined(DEBUG_SUBPAGE)
1536 printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d\n", __func__,
1537 mmio, len, addr, idx);
1538#endif
blueswir1db7b5422007-05-26 17:36:03 +00001539
Avi Kivity5312bd82012-02-12 18:32:55 +02001540 section = &phys_sections[mmio->sub_section[idx]];
1541 addr += mmio->base;
1542 addr -= section->offset_within_address_space;
1543 addr += section->offset_within_region;
Avi Kivity37ec01d2012-03-08 18:08:35 +02001544 return io_mem_read(section->mr, addr, len);
blueswir1db7b5422007-05-26 17:36:03 +00001545}
1546
Avi Kivitya8170e52012-10-23 12:30:10 +02001547static void subpage_write(void *opaque, hwaddr addr,
Avi Kivity70c68e42012-01-02 12:32:48 +02001548 uint64_t value, unsigned len)
blueswir1db7b5422007-05-26 17:36:03 +00001549{
Avi Kivity70c68e42012-01-02 12:32:48 +02001550 subpage_t *mmio = opaque;
Richard Hendersonf6405242010-04-22 16:47:31 -07001551 unsigned int idx = SUBPAGE_IDX(addr);
Avi Kivity5312bd82012-02-12 18:32:55 +02001552 MemoryRegionSection *section;
blueswir1db7b5422007-05-26 17:36:03 +00001553#if defined(DEBUG_SUBPAGE)
Avi Kivity70c68e42012-01-02 12:32:48 +02001554 printf("%s: subpage %p len %d addr " TARGET_FMT_plx
1555 " idx %d value %"PRIx64"\n",
Richard Hendersonf6405242010-04-22 16:47:31 -07001556 __func__, mmio, len, addr, idx, value);
blueswir1db7b5422007-05-26 17:36:03 +00001557#endif
Richard Hendersonf6405242010-04-22 16:47:31 -07001558
Avi Kivity5312bd82012-02-12 18:32:55 +02001559 section = &phys_sections[mmio->sub_section[idx]];
1560 addr += mmio->base;
1561 addr -= section->offset_within_address_space;
1562 addr += section->offset_within_region;
Avi Kivity37ec01d2012-03-08 18:08:35 +02001563 io_mem_write(section->mr, addr, value, len);
blueswir1db7b5422007-05-26 17:36:03 +00001564}
1565
Avi Kivity70c68e42012-01-02 12:32:48 +02001566static const MemoryRegionOps subpage_ops = {
1567 .read = subpage_read,
1568 .write = subpage_write,
1569 .endianness = DEVICE_NATIVE_ENDIAN,
blueswir1db7b5422007-05-26 17:36:03 +00001570};
1571
Avi Kivitya8170e52012-10-23 12:30:10 +02001572static uint64_t subpage_ram_read(void *opaque, hwaddr addr,
Avi Kivityde712f92012-01-02 12:41:07 +02001573 unsigned size)
Andreas Färber56384e82011-11-30 16:26:21 +01001574{
1575 ram_addr_t raddr = addr;
1576 void *ptr = qemu_get_ram_ptr(raddr);
Avi Kivityde712f92012-01-02 12:41:07 +02001577 switch (size) {
1578 case 1: return ldub_p(ptr);
1579 case 2: return lduw_p(ptr);
1580 case 4: return ldl_p(ptr);
1581 default: abort();
1582 }
Andreas Färber56384e82011-11-30 16:26:21 +01001583}
1584
Avi Kivitya8170e52012-10-23 12:30:10 +02001585static void subpage_ram_write(void *opaque, hwaddr addr,
Avi Kivityde712f92012-01-02 12:41:07 +02001586 uint64_t value, 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 stb_p(ptr, value);
1592 case 2: return stw_p(ptr, value);
1593 case 4: return stl_p(ptr, value);
1594 default: abort();
1595 }
Andreas Färber56384e82011-11-30 16:26:21 +01001596}
1597
Avi Kivityde712f92012-01-02 12:41:07 +02001598static const MemoryRegionOps subpage_ram_ops = {
1599 .read = subpage_ram_read,
1600 .write = subpage_ram_write,
1601 .endianness = DEVICE_NATIVE_ENDIAN,
Andreas Färber56384e82011-11-30 16:26:21 +01001602};
1603
Anthony Liguoric227f092009-10-01 16:12:16 -05001604static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
Avi Kivity5312bd82012-02-12 18:32:55 +02001605 uint16_t section)
blueswir1db7b5422007-05-26 17:36:03 +00001606{
1607 int idx, eidx;
1608
1609 if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE)
1610 return -1;
1611 idx = SUBPAGE_IDX(start);
1612 eidx = SUBPAGE_IDX(end);
1613#if defined(DEBUG_SUBPAGE)
Blue Swirl0bf9e312009-07-20 17:19:25 +00001614 printf("%s: %p start %08x end %08x idx %08x eidx %08x mem %ld\n", __func__,
blueswir1db7b5422007-05-26 17:36:03 +00001615 mmio, start, end, idx, eidx, memory);
1616#endif
Avi Kivity5312bd82012-02-12 18:32:55 +02001617 if (memory_region_is_ram(phys_sections[section].mr)) {
1618 MemoryRegionSection new_section = phys_sections[section];
1619 new_section.mr = &io_mem_subpage_ram;
1620 section = phys_section_add(&new_section);
Andreas Färber56384e82011-11-30 16:26:21 +01001621 }
blueswir1db7b5422007-05-26 17:36:03 +00001622 for (; idx <= eidx; idx++) {
Avi Kivity5312bd82012-02-12 18:32:55 +02001623 mmio->sub_section[idx] = section;
blueswir1db7b5422007-05-26 17:36:03 +00001624 }
1625
1626 return 0;
1627}
1628
Avi Kivitya8170e52012-10-23 12:30:10 +02001629static subpage_t *subpage_init(hwaddr base)
blueswir1db7b5422007-05-26 17:36:03 +00001630{
Anthony Liguoric227f092009-10-01 16:12:16 -05001631 subpage_t *mmio;
blueswir1db7b5422007-05-26 17:36:03 +00001632
Anthony Liguori7267c092011-08-20 22:09:37 -05001633 mmio = g_malloc0(sizeof(subpage_t));
aliguori1eec6142009-02-05 22:06:18 +00001634
1635 mmio->base = base;
Avi Kivity70c68e42012-01-02 12:32:48 +02001636 memory_region_init_io(&mmio->iomem, &subpage_ops, mmio,
1637 "subpage", TARGET_PAGE_SIZE);
Avi Kivityb3b00c72012-01-02 13:20:11 +02001638 mmio->iomem.subpage = true;
blueswir1db7b5422007-05-26 17:36:03 +00001639#if defined(DEBUG_SUBPAGE)
aliguori1eec6142009-02-05 22:06:18 +00001640 printf("%s: %p base " TARGET_FMT_plx " len %08x %d\n", __func__,
1641 mmio, base, TARGET_PAGE_SIZE, subpage_memory);
blueswir1db7b5422007-05-26 17:36:03 +00001642#endif
Avi Kivity0f0cb162012-02-13 17:14:32 +02001643 subpage_register(mmio, 0, TARGET_PAGE_SIZE-1, phys_section_unassigned);
blueswir1db7b5422007-05-26 17:36:03 +00001644
1645 return mmio;
1646}
1647
Avi Kivity5312bd82012-02-12 18:32:55 +02001648static uint16_t dummy_section(MemoryRegion *mr)
1649{
1650 MemoryRegionSection section = {
1651 .mr = mr,
1652 .offset_within_address_space = 0,
1653 .offset_within_region = 0,
1654 .size = UINT64_MAX,
1655 };
1656
1657 return phys_section_add(&section);
1658}
1659
Avi Kivitya8170e52012-10-23 12:30:10 +02001660MemoryRegion *iotlb_to_region(hwaddr index)
Avi Kivityaa102232012-03-08 17:06:55 +02001661{
Avi Kivity37ec01d2012-03-08 18:08:35 +02001662 return phys_sections[index & ~TARGET_PAGE_MASK].mr;
Avi Kivityaa102232012-03-08 17:06:55 +02001663}
1664
Avi Kivitye9179ce2009-06-14 11:38:52 +03001665static void io_mem_init(void)
1666{
Paolo Bonzinibf8d5162013-05-24 14:39:13 +02001667 memory_region_init_io(&io_mem_rom, &unassigned_mem_ops, NULL, "rom", UINT64_MAX);
Avi Kivity0e0df1e2012-01-02 00:32:15 +02001668 memory_region_init_io(&io_mem_unassigned, &unassigned_mem_ops, NULL,
1669 "unassigned", UINT64_MAX);
1670 memory_region_init_io(&io_mem_notdirty, &notdirty_mem_ops, NULL,
1671 "notdirty", UINT64_MAX);
Avi Kivityde712f92012-01-02 12:41:07 +02001672 memory_region_init_io(&io_mem_subpage_ram, &subpage_ram_ops, NULL,
1673 "subpage-ram", UINT64_MAX);
Avi Kivity1ec9b902012-01-02 12:47:48 +02001674 memory_region_init_io(&io_mem_watch, &watch_mem_ops, NULL,
1675 "watch", UINT64_MAX);
Avi Kivitye9179ce2009-06-14 11:38:52 +03001676}
1677
Avi Kivityac1970f2012-10-03 16:22:53 +02001678static void mem_begin(MemoryListener *listener)
1679{
1680 AddressSpaceDispatch *d = container_of(listener, AddressSpaceDispatch, listener);
1681
1682 destroy_all_mappings(d);
1683 d->phys_map.ptr = PHYS_MAP_NODE_NIL;
1684}
1685
Avi Kivity50c1e142012-02-08 21:36:02 +02001686static void core_begin(MemoryListener *listener)
1687{
Avi Kivity5312bd82012-02-12 18:32:55 +02001688 phys_sections_clear();
1689 phys_section_unassigned = dummy_section(&io_mem_unassigned);
Avi Kivityaa102232012-03-08 17:06:55 +02001690 phys_section_notdirty = dummy_section(&io_mem_notdirty);
1691 phys_section_rom = dummy_section(&io_mem_rom);
1692 phys_section_watch = dummy_section(&io_mem_watch);
Avi Kivity50c1e142012-02-08 21:36:02 +02001693}
1694
Avi Kivity1d711482012-10-02 18:54:45 +02001695static void tcg_commit(MemoryListener *listener)
Avi Kivity50c1e142012-02-08 21:36:02 +02001696{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001697 CPUArchState *env;
Avi Kivity117712c2012-02-12 21:23:17 +02001698
1699 /* since each CPU stores ram addresses in its TLB cache, we must
1700 reset the modified entries */
1701 /* XXX: slow ! */
1702 for(env = first_cpu; env != NULL; env = env->next_cpu) {
1703 tlb_flush(env, 1);
1704 }
Avi Kivity50c1e142012-02-08 21:36:02 +02001705}
1706
Avi Kivity93632742012-02-08 16:54:16 +02001707static void core_log_global_start(MemoryListener *listener)
1708{
1709 cpu_physical_memory_set_dirty_tracking(1);
1710}
1711
1712static void core_log_global_stop(MemoryListener *listener)
1713{
1714 cpu_physical_memory_set_dirty_tracking(0);
1715}
1716
Avi Kivity4855d412012-02-08 21:16:05 +02001717static void io_region_add(MemoryListener *listener,
1718 MemoryRegionSection *section)
1719{
Avi Kivitya2d33522012-03-05 17:40:12 +02001720 MemoryRegionIORange *mrio = g_new(MemoryRegionIORange, 1);
1721
1722 mrio->mr = section->mr;
1723 mrio->offset = section->offset_within_region;
1724 iorange_init(&mrio->iorange, &memory_region_iorange_ops,
Avi Kivity4855d412012-02-08 21:16:05 +02001725 section->offset_within_address_space, section->size);
Avi Kivitya2d33522012-03-05 17:40:12 +02001726 ioport_register(&mrio->iorange);
Avi Kivity4855d412012-02-08 21:16:05 +02001727}
1728
1729static void io_region_del(MemoryListener *listener,
1730 MemoryRegionSection *section)
1731{
1732 isa_unassign_ioport(section->offset_within_address_space, section->size);
1733}
1734
Avi Kivity93632742012-02-08 16:54:16 +02001735static MemoryListener core_memory_listener = {
Avi Kivity50c1e142012-02-08 21:36:02 +02001736 .begin = core_begin,
Avi Kivity93632742012-02-08 16:54:16 +02001737 .log_global_start = core_log_global_start,
1738 .log_global_stop = core_log_global_stop,
Avi Kivityac1970f2012-10-03 16:22:53 +02001739 .priority = 1,
Avi Kivity93632742012-02-08 16:54:16 +02001740};
1741
Avi Kivity4855d412012-02-08 21:16:05 +02001742static MemoryListener io_memory_listener = {
1743 .region_add = io_region_add,
1744 .region_del = io_region_del,
Avi Kivity4855d412012-02-08 21:16:05 +02001745 .priority = 0,
1746};
1747
Avi Kivity1d711482012-10-02 18:54:45 +02001748static MemoryListener tcg_memory_listener = {
1749 .commit = tcg_commit,
1750};
1751
Avi Kivityac1970f2012-10-03 16:22:53 +02001752void address_space_init_dispatch(AddressSpace *as)
1753{
1754 AddressSpaceDispatch *d = g_new(AddressSpaceDispatch, 1);
1755
1756 d->phys_map = (PhysPageEntry) { .ptr = PHYS_MAP_NODE_NIL, .is_leaf = 0 };
1757 d->listener = (MemoryListener) {
1758 .begin = mem_begin,
1759 .region_add = mem_add,
1760 .region_nop = mem_add,
1761 .priority = 0,
1762 };
1763 as->dispatch = d;
1764 memory_listener_register(&d->listener, as);
1765}
1766
Avi Kivity83f3c252012-10-07 12:59:55 +02001767void address_space_destroy_dispatch(AddressSpace *as)
1768{
1769 AddressSpaceDispatch *d = as->dispatch;
1770
1771 memory_listener_unregister(&d->listener);
1772 destroy_l2_mapping(&d->phys_map, P_L2_LEVELS - 1);
1773 g_free(d);
1774 as->dispatch = NULL;
1775}
1776
Avi Kivity62152b82011-07-26 14:26:14 +03001777static void memory_map_init(void)
1778{
Anthony Liguori7267c092011-08-20 22:09:37 -05001779 system_memory = g_malloc(sizeof(*system_memory));
Avi Kivity8417ceb2011-08-03 11:56:14 +03001780 memory_region_init(system_memory, "system", INT64_MAX);
Avi Kivity2673a5d2012-10-02 18:49:28 +02001781 address_space_init(&address_space_memory, system_memory);
1782 address_space_memory.name = "memory";
Avi Kivity309cb472011-08-08 16:09:03 +03001783
Anthony Liguori7267c092011-08-20 22:09:37 -05001784 system_io = g_malloc(sizeof(*system_io));
Avi Kivity309cb472011-08-08 16:09:03 +03001785 memory_region_init(system_io, "io", 65536);
Avi Kivity2673a5d2012-10-02 18:49:28 +02001786 address_space_init(&address_space_io, system_io);
1787 address_space_io.name = "I/O";
Avi Kivity93632742012-02-08 16:54:16 +02001788
Avi Kivityf6790af2012-10-02 20:13:51 +02001789 memory_listener_register(&core_memory_listener, &address_space_memory);
1790 memory_listener_register(&io_memory_listener, &address_space_io);
1791 memory_listener_register(&tcg_memory_listener, &address_space_memory);
Peter Maydell9e119082012-10-29 11:34:32 +10001792
1793 dma_context_init(&dma_context_memory, &address_space_memory,
1794 NULL, NULL, NULL);
Avi Kivity62152b82011-07-26 14:26:14 +03001795}
1796
1797MemoryRegion *get_system_memory(void)
1798{
1799 return system_memory;
1800}
1801
Avi Kivity309cb472011-08-08 16:09:03 +03001802MemoryRegion *get_system_io(void)
1803{
1804 return system_io;
1805}
1806
pbrooke2eef172008-06-08 01:09:01 +00001807#endif /* !defined(CONFIG_USER_ONLY) */
1808
bellard13eb76e2004-01-24 15:23:36 +00001809/* physical memory access (slow version, mainly for debug) */
1810#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +01001811int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr,
Paul Brooka68fe892010-03-01 00:08:59 +00001812 uint8_t *buf, int len, int is_write)
bellard13eb76e2004-01-24 15:23:36 +00001813{
1814 int l, flags;
1815 target_ulong page;
pbrook53a59602006-03-25 19:31:22 +00001816 void * p;
bellard13eb76e2004-01-24 15:23:36 +00001817
1818 while (len > 0) {
1819 page = addr & TARGET_PAGE_MASK;
1820 l = (page + TARGET_PAGE_SIZE) - addr;
1821 if (l > len)
1822 l = len;
1823 flags = page_get_flags(page);
1824 if (!(flags & PAGE_VALID))
Paul Brooka68fe892010-03-01 00:08:59 +00001825 return -1;
bellard13eb76e2004-01-24 15:23:36 +00001826 if (is_write) {
1827 if (!(flags & PAGE_WRITE))
Paul Brooka68fe892010-03-01 00:08:59 +00001828 return -1;
bellard579a97f2007-11-11 14:26:47 +00001829 /* XXX: this code should not depend on lock_user */
aurel3272fb7da2008-04-27 23:53:45 +00001830 if (!(p = lock_user(VERIFY_WRITE, addr, l, 0)))
Paul Brooka68fe892010-03-01 00:08:59 +00001831 return -1;
aurel3272fb7da2008-04-27 23:53:45 +00001832 memcpy(p, buf, l);
1833 unlock_user(p, addr, l);
bellard13eb76e2004-01-24 15:23:36 +00001834 } else {
1835 if (!(flags & PAGE_READ))
Paul Brooka68fe892010-03-01 00:08:59 +00001836 return -1;
bellard579a97f2007-11-11 14:26:47 +00001837 /* XXX: this code should not depend on lock_user */
aurel3272fb7da2008-04-27 23:53:45 +00001838 if (!(p = lock_user(VERIFY_READ, addr, l, 1)))
Paul Brooka68fe892010-03-01 00:08:59 +00001839 return -1;
aurel3272fb7da2008-04-27 23:53:45 +00001840 memcpy(buf, p, l);
aurel325b257572008-04-28 08:54:59 +00001841 unlock_user(p, addr, 0);
bellard13eb76e2004-01-24 15:23:36 +00001842 }
1843 len -= l;
1844 buf += l;
1845 addr += l;
1846 }
Paul Brooka68fe892010-03-01 00:08:59 +00001847 return 0;
bellard13eb76e2004-01-24 15:23:36 +00001848}
bellard8df1cd02005-01-28 22:37:22 +00001849
bellard13eb76e2004-01-24 15:23:36 +00001850#else
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001851
Avi Kivitya8170e52012-10-23 12:30:10 +02001852static void invalidate_and_set_dirty(hwaddr addr,
1853 hwaddr length)
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001854{
1855 if (!cpu_physical_memory_is_dirty(addr)) {
1856 /* invalidate code */
1857 tb_invalidate_phys_page_range(addr, addr + length, 0);
1858 /* set dirty bit */
1859 cpu_physical_memory_set_dirty_flags(addr, (0xff & ~CODE_DIRTY_FLAG));
1860 }
Anthony PERARDe2269392012-10-03 13:49:22 +00001861 xen_modified_memory(addr, length);
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001862}
1863
Avi Kivitya8170e52012-10-23 12:30:10 +02001864void address_space_rw(AddressSpace *as, hwaddr addr, uint8_t *buf,
Avi Kivityac1970f2012-10-03 16:22:53 +02001865 int len, bool is_write)
bellard13eb76e2004-01-24 15:23:36 +00001866{
Avi Kivityac1970f2012-10-03 16:22:53 +02001867 AddressSpaceDispatch *d = as->dispatch;
Avi Kivity37ec01d2012-03-08 18:08:35 +02001868 int l;
bellard13eb76e2004-01-24 15:23:36 +00001869 uint8_t *ptr;
1870 uint32_t val;
Avi Kivitya8170e52012-10-23 12:30:10 +02001871 hwaddr page;
Avi Kivityf3705d52012-03-08 16:16:34 +02001872 MemoryRegionSection *section;
ths3b46e622007-09-17 08:09:54 +00001873
bellard13eb76e2004-01-24 15:23:36 +00001874 while (len > 0) {
1875 page = addr & TARGET_PAGE_MASK;
1876 l = (page + TARGET_PAGE_SIZE) - addr;
1877 if (l > len)
1878 l = len;
Avi Kivityac1970f2012-10-03 16:22:53 +02001879 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00001880
bellard13eb76e2004-01-24 15:23:36 +00001881 if (is_write) {
Avi Kivityf3705d52012-03-08 16:16:34 +02001882 if (!memory_region_is_ram(section->mr)) {
Avi Kivitya8170e52012-10-23 12:30:10 +02001883 hwaddr addr1;
Blue Swirlcc5bea62012-04-14 14:56:48 +00001884 addr1 = memory_region_section_addr(section, addr);
bellard6a00d602005-11-21 23:25:50 +00001885 /* XXX: could force cpu_single_env to NULL to avoid
1886 potential bugs */
aurel326c2934d2009-02-18 21:37:17 +00001887 if (l >= 4 && ((addr1 & 3) == 0)) {
bellard1c213d12005-09-03 10:49:04 +00001888 /* 32 bit write access */
bellardc27004e2005-01-03 23:35:10 +00001889 val = ldl_p(buf);
Avi Kivity37ec01d2012-03-08 18:08:35 +02001890 io_mem_write(section->mr, addr1, val, 4);
bellard13eb76e2004-01-24 15:23:36 +00001891 l = 4;
aurel326c2934d2009-02-18 21:37:17 +00001892 } else if (l >= 2 && ((addr1 & 1) == 0)) {
bellard1c213d12005-09-03 10:49:04 +00001893 /* 16 bit write access */
bellardc27004e2005-01-03 23:35:10 +00001894 val = lduw_p(buf);
Avi Kivity37ec01d2012-03-08 18:08:35 +02001895 io_mem_write(section->mr, addr1, val, 2);
bellard13eb76e2004-01-24 15:23:36 +00001896 l = 2;
1897 } else {
bellard1c213d12005-09-03 10:49:04 +00001898 /* 8 bit write access */
bellardc27004e2005-01-03 23:35:10 +00001899 val = ldub_p(buf);
Avi Kivity37ec01d2012-03-08 18:08:35 +02001900 io_mem_write(section->mr, addr1, val, 1);
bellard13eb76e2004-01-24 15:23:36 +00001901 l = 1;
1902 }
Avi Kivityf3705d52012-03-08 16:16:34 +02001903 } else if (!section->readonly) {
Anthony PERARD8ca56922011-07-15 04:32:53 +00001904 ram_addr_t addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02001905 addr1 = memory_region_get_ram_addr(section->mr)
Blue Swirlcc5bea62012-04-14 14:56:48 +00001906 + memory_region_section_addr(section, addr);
bellard13eb76e2004-01-24 15:23:36 +00001907 /* RAM case */
pbrook5579c7f2009-04-11 14:47:08 +00001908 ptr = qemu_get_ram_ptr(addr1);
bellard13eb76e2004-01-24 15:23:36 +00001909 memcpy(ptr, buf, l);
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00001910 invalidate_and_set_dirty(addr1, l);
bellard13eb76e2004-01-24 15:23:36 +00001911 }
1912 } else {
Blue Swirlcc5bea62012-04-14 14:56:48 +00001913 if (!(memory_region_is_ram(section->mr) ||
1914 memory_region_is_romd(section->mr))) {
Avi Kivitya8170e52012-10-23 12:30:10 +02001915 hwaddr addr1;
bellard13eb76e2004-01-24 15:23:36 +00001916 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00001917 addr1 = memory_region_section_addr(section, addr);
aurel326c2934d2009-02-18 21:37:17 +00001918 if (l >= 4 && ((addr1 & 3) == 0)) {
bellard13eb76e2004-01-24 15:23:36 +00001919 /* 32 bit read access */
Avi Kivity37ec01d2012-03-08 18:08:35 +02001920 val = io_mem_read(section->mr, addr1, 4);
bellardc27004e2005-01-03 23:35:10 +00001921 stl_p(buf, val);
bellard13eb76e2004-01-24 15:23:36 +00001922 l = 4;
aurel326c2934d2009-02-18 21:37:17 +00001923 } else if (l >= 2 && ((addr1 & 1) == 0)) {
bellard13eb76e2004-01-24 15:23:36 +00001924 /* 16 bit read access */
Avi Kivity37ec01d2012-03-08 18:08:35 +02001925 val = io_mem_read(section->mr, addr1, 2);
bellardc27004e2005-01-03 23:35:10 +00001926 stw_p(buf, val);
bellard13eb76e2004-01-24 15:23:36 +00001927 l = 2;
1928 } else {
bellard1c213d12005-09-03 10:49:04 +00001929 /* 8 bit read access */
Avi Kivity37ec01d2012-03-08 18:08:35 +02001930 val = io_mem_read(section->mr, addr1, 1);
bellardc27004e2005-01-03 23:35:10 +00001931 stb_p(buf, val);
bellard13eb76e2004-01-24 15:23:36 +00001932 l = 1;
1933 }
1934 } else {
1935 /* RAM case */
Anthony PERARD0a1b3572012-03-19 15:54:34 +00001936 ptr = qemu_get_ram_ptr(section->mr->ram_addr
Blue Swirlcc5bea62012-04-14 14:56:48 +00001937 + memory_region_section_addr(section,
1938 addr));
Avi Kivityf3705d52012-03-08 16:16:34 +02001939 memcpy(buf, ptr, l);
bellard13eb76e2004-01-24 15:23:36 +00001940 }
1941 }
1942 len -= l;
1943 buf += l;
1944 addr += l;
1945 }
1946}
bellard8df1cd02005-01-28 22:37:22 +00001947
Avi Kivitya8170e52012-10-23 12:30:10 +02001948void address_space_write(AddressSpace *as, hwaddr addr,
Avi Kivityac1970f2012-10-03 16:22:53 +02001949 const uint8_t *buf, int len)
1950{
1951 address_space_rw(as, addr, (uint8_t *)buf, len, true);
1952}
1953
1954/**
1955 * address_space_read: read from an address space.
1956 *
1957 * @as: #AddressSpace to be accessed
1958 * @addr: address within that address space
1959 * @buf: buffer with the data transferred
1960 */
Avi Kivitya8170e52012-10-23 12:30:10 +02001961void address_space_read(AddressSpace *as, hwaddr addr, uint8_t *buf, int len)
Avi Kivityac1970f2012-10-03 16:22:53 +02001962{
1963 address_space_rw(as, addr, buf, len, false);
1964}
1965
1966
Avi Kivitya8170e52012-10-23 12:30:10 +02001967void cpu_physical_memory_rw(hwaddr addr, uint8_t *buf,
Avi Kivityac1970f2012-10-03 16:22:53 +02001968 int len, int is_write)
1969{
1970 return address_space_rw(&address_space_memory, addr, buf, len, is_write);
1971}
1972
bellardd0ecd2a2006-04-23 17:14:48 +00001973/* used for ROM loading : can write in RAM and ROM */
Avi Kivitya8170e52012-10-23 12:30:10 +02001974void cpu_physical_memory_write_rom(hwaddr addr,
bellardd0ecd2a2006-04-23 17:14:48 +00001975 const uint8_t *buf, int len)
1976{
Avi Kivityac1970f2012-10-03 16:22:53 +02001977 AddressSpaceDispatch *d = address_space_memory.dispatch;
bellardd0ecd2a2006-04-23 17:14:48 +00001978 int l;
1979 uint8_t *ptr;
Avi Kivitya8170e52012-10-23 12:30:10 +02001980 hwaddr page;
Avi Kivityf3705d52012-03-08 16:16:34 +02001981 MemoryRegionSection *section;
ths3b46e622007-09-17 08:09:54 +00001982
bellardd0ecd2a2006-04-23 17:14:48 +00001983 while (len > 0) {
1984 page = addr & TARGET_PAGE_MASK;
1985 l = (page + TARGET_PAGE_SIZE) - addr;
1986 if (l > len)
1987 l = len;
Avi Kivityac1970f2012-10-03 16:22:53 +02001988 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00001989
Blue Swirlcc5bea62012-04-14 14:56:48 +00001990 if (!(memory_region_is_ram(section->mr) ||
1991 memory_region_is_romd(section->mr))) {
bellardd0ecd2a2006-04-23 17:14:48 +00001992 /* do nothing */
1993 } else {
1994 unsigned long addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02001995 addr1 = memory_region_get_ram_addr(section->mr)
Blue Swirlcc5bea62012-04-14 14:56:48 +00001996 + memory_region_section_addr(section, addr);
bellardd0ecd2a2006-04-23 17:14:48 +00001997 /* ROM/RAM case */
pbrook5579c7f2009-04-11 14:47:08 +00001998 ptr = qemu_get_ram_ptr(addr1);
bellardd0ecd2a2006-04-23 17:14:48 +00001999 memcpy(ptr, buf, l);
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002000 invalidate_and_set_dirty(addr1, l);
bellardd0ecd2a2006-04-23 17:14:48 +00002001 }
2002 len -= l;
2003 buf += l;
2004 addr += l;
2005 }
2006}
2007
aliguori6d16c2f2009-01-22 16:59:11 +00002008typedef struct {
2009 void *buffer;
Avi Kivitya8170e52012-10-23 12:30:10 +02002010 hwaddr addr;
2011 hwaddr len;
aliguori6d16c2f2009-01-22 16:59:11 +00002012} BounceBuffer;
2013
2014static BounceBuffer bounce;
2015
aliguoriba223c22009-01-22 16:59:16 +00002016typedef struct MapClient {
2017 void *opaque;
2018 void (*callback)(void *opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002019 QLIST_ENTRY(MapClient) link;
aliguoriba223c22009-01-22 16:59:16 +00002020} MapClient;
2021
Blue Swirl72cf2d42009-09-12 07:36:22 +00002022static QLIST_HEAD(map_client_list, MapClient) map_client_list
2023 = QLIST_HEAD_INITIALIZER(map_client_list);
aliguoriba223c22009-01-22 16:59:16 +00002024
2025void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque))
2026{
Anthony Liguori7267c092011-08-20 22:09:37 -05002027 MapClient *client = g_malloc(sizeof(*client));
aliguoriba223c22009-01-22 16:59:16 +00002028
2029 client->opaque = opaque;
2030 client->callback = callback;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002031 QLIST_INSERT_HEAD(&map_client_list, client, link);
aliguoriba223c22009-01-22 16:59:16 +00002032 return client;
2033}
2034
Blue Swirl8b9c99d2012-10-28 11:04:51 +00002035static void cpu_unregister_map_client(void *_client)
aliguoriba223c22009-01-22 16:59:16 +00002036{
2037 MapClient *client = (MapClient *)_client;
2038
Blue Swirl72cf2d42009-09-12 07:36:22 +00002039 QLIST_REMOVE(client, link);
Anthony Liguori7267c092011-08-20 22:09:37 -05002040 g_free(client);
aliguoriba223c22009-01-22 16:59:16 +00002041}
2042
2043static void cpu_notify_map_clients(void)
2044{
2045 MapClient *client;
2046
Blue Swirl72cf2d42009-09-12 07:36:22 +00002047 while (!QLIST_EMPTY(&map_client_list)) {
2048 client = QLIST_FIRST(&map_client_list);
aliguoriba223c22009-01-22 16:59:16 +00002049 client->callback(client->opaque);
Isaku Yamahata34d5e942009-06-26 18:57:18 +09002050 cpu_unregister_map_client(client);
aliguoriba223c22009-01-22 16:59:16 +00002051 }
2052}
2053
aliguori6d16c2f2009-01-22 16:59:11 +00002054/* Map a physical memory region into a host virtual address.
2055 * May map a subset of the requested range, given by and returned in *plen.
2056 * May return NULL if resources needed to perform the mapping are exhausted.
2057 * Use only for reads OR writes - not for read-modify-write operations.
aliguoriba223c22009-01-22 16:59:16 +00002058 * Use cpu_register_map_client() to know when retrying the map operation is
2059 * likely to succeed.
aliguori6d16c2f2009-01-22 16:59:11 +00002060 */
Avi Kivityac1970f2012-10-03 16:22:53 +02002061void *address_space_map(AddressSpace *as,
Avi Kivitya8170e52012-10-23 12:30:10 +02002062 hwaddr addr,
2063 hwaddr *plen,
Avi Kivityac1970f2012-10-03 16:22:53 +02002064 bool is_write)
aliguori6d16c2f2009-01-22 16:59:11 +00002065{
Avi Kivityac1970f2012-10-03 16:22:53 +02002066 AddressSpaceDispatch *d = as->dispatch;
Avi Kivitya8170e52012-10-23 12:30:10 +02002067 hwaddr len = *plen;
2068 hwaddr todo = 0;
aliguori6d16c2f2009-01-22 16:59:11 +00002069 int l;
Avi Kivitya8170e52012-10-23 12:30:10 +02002070 hwaddr page;
Avi Kivityf3705d52012-03-08 16:16:34 +02002071 MemoryRegionSection *section;
Anthony PERARDf15fbc42011-07-20 08:17:42 +00002072 ram_addr_t raddr = RAM_ADDR_MAX;
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002073 ram_addr_t rlen;
2074 void *ret;
aliguori6d16c2f2009-01-22 16:59:11 +00002075
2076 while (len > 0) {
2077 page = addr & TARGET_PAGE_MASK;
2078 l = (page + TARGET_PAGE_SIZE) - addr;
2079 if (l > len)
2080 l = len;
Avi Kivityac1970f2012-10-03 16:22:53 +02002081 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
aliguori6d16c2f2009-01-22 16:59:11 +00002082
Avi Kivityf3705d52012-03-08 16:16:34 +02002083 if (!(memory_region_is_ram(section->mr) && !section->readonly)) {
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01002084 if (todo || bounce.buffer) {
aliguori6d16c2f2009-01-22 16:59:11 +00002085 break;
2086 }
2087 bounce.buffer = qemu_memalign(TARGET_PAGE_SIZE, TARGET_PAGE_SIZE);
2088 bounce.addr = addr;
2089 bounce.len = l;
2090 if (!is_write) {
Avi Kivityac1970f2012-10-03 16:22:53 +02002091 address_space_read(as, addr, bounce.buffer, l);
aliguori6d16c2f2009-01-22 16:59:11 +00002092 }
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01002093
2094 *plen = l;
2095 return bounce.buffer;
aliguori6d16c2f2009-01-22 16:59:11 +00002096 }
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002097 if (!todo) {
Avi Kivityf3705d52012-03-08 16:16:34 +02002098 raddr = memory_region_get_ram_addr(section->mr)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002099 + memory_region_section_addr(section, addr);
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002100 }
aliguori6d16c2f2009-01-22 16:59:11 +00002101
2102 len -= l;
2103 addr += l;
Stefano Stabellini38bee5d2011-05-19 18:35:45 +01002104 todo += l;
aliguori6d16c2f2009-01-22 16:59:11 +00002105 }
Stefano Stabellini8ab934f2011-06-27 18:26:06 +01002106 rlen = todo;
2107 ret = qemu_ram_ptr_length(raddr, &rlen);
2108 *plen = rlen;
2109 return ret;
aliguori6d16c2f2009-01-22 16:59:11 +00002110}
2111
Avi Kivityac1970f2012-10-03 16:22:53 +02002112/* Unmaps a memory region previously mapped by address_space_map().
aliguori6d16c2f2009-01-22 16:59:11 +00002113 * Will also mark the memory as dirty if is_write == 1. access_len gives
2114 * the amount of memory that was actually read or written by the caller.
2115 */
Avi Kivitya8170e52012-10-23 12:30:10 +02002116void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
2117 int is_write, hwaddr access_len)
aliguori6d16c2f2009-01-22 16:59:11 +00002118{
2119 if (buffer != bounce.buffer) {
2120 if (is_write) {
Marcelo Tosattie8902612010-10-11 15:31:19 -03002121 ram_addr_t addr1 = qemu_ram_addr_from_host_nofail(buffer);
aliguori6d16c2f2009-01-22 16:59:11 +00002122 while (access_len) {
2123 unsigned l;
2124 l = TARGET_PAGE_SIZE;
2125 if (l > access_len)
2126 l = access_len;
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002127 invalidate_and_set_dirty(addr1, l);
aliguori6d16c2f2009-01-22 16:59:11 +00002128 addr1 += l;
2129 access_len -= l;
2130 }
2131 }
Jan Kiszka868bb332011-06-21 22:59:09 +02002132 if (xen_enabled()) {
Jan Kiszkae41d7c62011-06-21 22:59:08 +02002133 xen_invalidate_map_cache_entry(buffer);
Anthony PERARD050a0dd2010-09-16 13:57:49 +01002134 }
aliguori6d16c2f2009-01-22 16:59:11 +00002135 return;
2136 }
2137 if (is_write) {
Avi Kivityac1970f2012-10-03 16:22:53 +02002138 address_space_write(as, bounce.addr, bounce.buffer, access_len);
aliguori6d16c2f2009-01-22 16:59:11 +00002139 }
Herve Poussineauf8a83242010-01-24 21:23:56 +00002140 qemu_vfree(bounce.buffer);
aliguori6d16c2f2009-01-22 16:59:11 +00002141 bounce.buffer = NULL;
aliguoriba223c22009-01-22 16:59:16 +00002142 cpu_notify_map_clients();
aliguori6d16c2f2009-01-22 16:59:11 +00002143}
bellardd0ecd2a2006-04-23 17:14:48 +00002144
Avi Kivitya8170e52012-10-23 12:30:10 +02002145void *cpu_physical_memory_map(hwaddr addr,
2146 hwaddr *plen,
Avi Kivityac1970f2012-10-03 16:22:53 +02002147 int is_write)
2148{
2149 return address_space_map(&address_space_memory, addr, plen, is_write);
2150}
2151
Avi Kivitya8170e52012-10-23 12:30:10 +02002152void cpu_physical_memory_unmap(void *buffer, hwaddr len,
2153 int is_write, hwaddr access_len)
Avi Kivityac1970f2012-10-03 16:22:53 +02002154{
2155 return address_space_unmap(&address_space_memory, buffer, len, is_write, access_len);
2156}
2157
bellard8df1cd02005-01-28 22:37:22 +00002158/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002159static inline uint32_t ldl_phys_internal(hwaddr addr,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002160 enum device_endian endian)
bellard8df1cd02005-01-28 22:37:22 +00002161{
bellard8df1cd02005-01-28 22:37:22 +00002162 uint8_t *ptr;
2163 uint32_t val;
Avi Kivityf3705d52012-03-08 16:16:34 +02002164 MemoryRegionSection *section;
bellard8df1cd02005-01-28 22:37:22 +00002165
Avi Kivityac1970f2012-10-03 16:22:53 +02002166 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002167
Blue Swirlcc5bea62012-04-14 14:56:48 +00002168 if (!(memory_region_is_ram(section->mr) ||
2169 memory_region_is_romd(section->mr))) {
bellard8df1cd02005-01-28 22:37:22 +00002170 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00002171 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002172 val = io_mem_read(section->mr, addr, 4);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002173#if defined(TARGET_WORDS_BIGENDIAN)
2174 if (endian == DEVICE_LITTLE_ENDIAN) {
2175 val = bswap32(val);
2176 }
2177#else
2178 if (endian == DEVICE_BIG_ENDIAN) {
2179 val = bswap32(val);
2180 }
2181#endif
bellard8df1cd02005-01-28 22:37:22 +00002182 } else {
2183 /* RAM case */
Avi Kivityf3705d52012-03-08 16:16:34 +02002184 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002185 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002186 + memory_region_section_addr(section, addr));
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002187 switch (endian) {
2188 case DEVICE_LITTLE_ENDIAN:
2189 val = ldl_le_p(ptr);
2190 break;
2191 case DEVICE_BIG_ENDIAN:
2192 val = ldl_be_p(ptr);
2193 break;
2194 default:
2195 val = ldl_p(ptr);
2196 break;
2197 }
bellard8df1cd02005-01-28 22:37:22 +00002198 }
2199 return val;
2200}
2201
Avi Kivitya8170e52012-10-23 12:30:10 +02002202uint32_t ldl_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002203{
2204 return ldl_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2205}
2206
Avi Kivitya8170e52012-10-23 12:30:10 +02002207uint32_t ldl_le_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002208{
2209 return ldl_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2210}
2211
Avi Kivitya8170e52012-10-23 12:30:10 +02002212uint32_t ldl_be_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002213{
2214 return ldl_phys_internal(addr, DEVICE_BIG_ENDIAN);
2215}
2216
bellard84b7b8e2005-11-28 21:19:04 +00002217/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002218static inline uint64_t ldq_phys_internal(hwaddr addr,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002219 enum device_endian endian)
bellard84b7b8e2005-11-28 21:19:04 +00002220{
bellard84b7b8e2005-11-28 21:19:04 +00002221 uint8_t *ptr;
2222 uint64_t val;
Avi Kivityf3705d52012-03-08 16:16:34 +02002223 MemoryRegionSection *section;
bellard84b7b8e2005-11-28 21:19:04 +00002224
Avi Kivityac1970f2012-10-03 16:22:53 +02002225 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002226
Blue Swirlcc5bea62012-04-14 14:56:48 +00002227 if (!(memory_region_is_ram(section->mr) ||
2228 memory_region_is_romd(section->mr))) {
bellard84b7b8e2005-11-28 21:19:04 +00002229 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00002230 addr = memory_region_section_addr(section, addr);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002231
2232 /* XXX This is broken when device endian != cpu endian.
2233 Fix and add "endian" variable check */
bellard84b7b8e2005-11-28 21:19:04 +00002234#ifdef TARGET_WORDS_BIGENDIAN
Avi Kivity37ec01d2012-03-08 18:08:35 +02002235 val = io_mem_read(section->mr, addr, 4) << 32;
2236 val |= io_mem_read(section->mr, addr + 4, 4);
bellard84b7b8e2005-11-28 21:19:04 +00002237#else
Avi Kivity37ec01d2012-03-08 18:08:35 +02002238 val = io_mem_read(section->mr, addr, 4);
2239 val |= io_mem_read(section->mr, addr + 4, 4) << 32;
bellard84b7b8e2005-11-28 21:19:04 +00002240#endif
2241 } else {
2242 /* RAM case */
Avi Kivityf3705d52012-03-08 16:16:34 +02002243 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002244 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002245 + memory_region_section_addr(section, addr));
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002246 switch (endian) {
2247 case DEVICE_LITTLE_ENDIAN:
2248 val = ldq_le_p(ptr);
2249 break;
2250 case DEVICE_BIG_ENDIAN:
2251 val = ldq_be_p(ptr);
2252 break;
2253 default:
2254 val = ldq_p(ptr);
2255 break;
2256 }
bellard84b7b8e2005-11-28 21:19:04 +00002257 }
2258 return val;
2259}
2260
Avi Kivitya8170e52012-10-23 12:30:10 +02002261uint64_t ldq_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002262{
2263 return ldq_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2264}
2265
Avi Kivitya8170e52012-10-23 12:30:10 +02002266uint64_t ldq_le_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002267{
2268 return ldq_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2269}
2270
Avi Kivitya8170e52012-10-23 12:30:10 +02002271uint64_t ldq_be_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002272{
2273 return ldq_phys_internal(addr, DEVICE_BIG_ENDIAN);
2274}
2275
bellardaab33092005-10-30 20:48:42 +00002276/* XXX: optimize */
Avi Kivitya8170e52012-10-23 12:30:10 +02002277uint32_t ldub_phys(hwaddr addr)
bellardaab33092005-10-30 20:48:42 +00002278{
2279 uint8_t val;
2280 cpu_physical_memory_read(addr, &val, 1);
2281 return val;
2282}
2283
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002284/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002285static inline uint32_t lduw_phys_internal(hwaddr addr,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002286 enum device_endian endian)
bellardaab33092005-10-30 20:48:42 +00002287{
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002288 uint8_t *ptr;
2289 uint64_t val;
Avi Kivityf3705d52012-03-08 16:16:34 +02002290 MemoryRegionSection *section;
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002291
Avi Kivityac1970f2012-10-03 16:22:53 +02002292 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002293
Blue Swirlcc5bea62012-04-14 14:56:48 +00002294 if (!(memory_region_is_ram(section->mr) ||
2295 memory_region_is_romd(section->mr))) {
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002296 /* I/O case */
Blue Swirlcc5bea62012-04-14 14:56:48 +00002297 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002298 val = io_mem_read(section->mr, addr, 2);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002299#if defined(TARGET_WORDS_BIGENDIAN)
2300 if (endian == DEVICE_LITTLE_ENDIAN) {
2301 val = bswap16(val);
2302 }
2303#else
2304 if (endian == DEVICE_BIG_ENDIAN) {
2305 val = bswap16(val);
2306 }
2307#endif
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002308 } else {
2309 /* RAM case */
Avi Kivityf3705d52012-03-08 16:16:34 +02002310 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002311 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002312 + memory_region_section_addr(section, addr));
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002313 switch (endian) {
2314 case DEVICE_LITTLE_ENDIAN:
2315 val = lduw_le_p(ptr);
2316 break;
2317 case DEVICE_BIG_ENDIAN:
2318 val = lduw_be_p(ptr);
2319 break;
2320 default:
2321 val = lduw_p(ptr);
2322 break;
2323 }
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002324 }
2325 return val;
bellardaab33092005-10-30 20:48:42 +00002326}
2327
Avi Kivitya8170e52012-10-23 12:30:10 +02002328uint32_t lduw_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002329{
2330 return lduw_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2331}
2332
Avi Kivitya8170e52012-10-23 12:30:10 +02002333uint32_t lduw_le_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002334{
2335 return lduw_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2336}
2337
Avi Kivitya8170e52012-10-23 12:30:10 +02002338uint32_t lduw_be_phys(hwaddr addr)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002339{
2340 return lduw_phys_internal(addr, DEVICE_BIG_ENDIAN);
2341}
2342
bellard8df1cd02005-01-28 22:37:22 +00002343/* warning: addr must be aligned. The ram page is not masked as dirty
2344 and the code inside is not invalidated. It is useful if the dirty
2345 bits are used to track modified PTEs */
Avi Kivitya8170e52012-10-23 12:30:10 +02002346void stl_phys_notdirty(hwaddr addr, uint32_t val)
bellard8df1cd02005-01-28 22:37:22 +00002347{
bellard8df1cd02005-01-28 22:37:22 +00002348 uint8_t *ptr;
Avi Kivityf3705d52012-03-08 16:16:34 +02002349 MemoryRegionSection *section;
bellard8df1cd02005-01-28 22:37:22 +00002350
Avi Kivityac1970f2012-10-03 16:22:53 +02002351 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002352
Avi Kivityf3705d52012-03-08 16:16:34 +02002353 if (!memory_region_is_ram(section->mr) || section->readonly) {
Blue Swirlcc5bea62012-04-14 14:56:48 +00002354 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002355 if (memory_region_is_ram(section->mr)) {
2356 section = &phys_sections[phys_section_rom];
2357 }
2358 io_mem_write(section->mr, addr, val, 4);
bellard8df1cd02005-01-28 22:37:22 +00002359 } else {
Avi Kivityf3705d52012-03-08 16:16:34 +02002360 unsigned long addr1 = (memory_region_get_ram_addr(section->mr)
Avi Kivity06ef3522012-02-13 16:11:22 +02002361 & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002362 + memory_region_section_addr(section, addr);
pbrook5579c7f2009-04-11 14:47:08 +00002363 ptr = qemu_get_ram_ptr(addr1);
bellard8df1cd02005-01-28 22:37:22 +00002364 stl_p(ptr, val);
aliguori74576192008-10-06 14:02:03 +00002365
2366 if (unlikely(in_migration)) {
2367 if (!cpu_physical_memory_is_dirty(addr1)) {
2368 /* invalidate code */
2369 tb_invalidate_phys_page_range(addr1, addr1 + 4, 0);
2370 /* set dirty bit */
Yoshiaki Tamuraf7c11b52010-03-23 16:39:53 +09002371 cpu_physical_memory_set_dirty_flags(
2372 addr1, (0xff & ~CODE_DIRTY_FLAG));
aliguori74576192008-10-06 14:02:03 +00002373 }
2374 }
bellard8df1cd02005-01-28 22:37:22 +00002375 }
2376}
2377
2378/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002379static inline void stl_phys_internal(hwaddr addr, uint32_t val,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002380 enum device_endian endian)
bellard8df1cd02005-01-28 22:37:22 +00002381{
bellard8df1cd02005-01-28 22:37:22 +00002382 uint8_t *ptr;
Avi Kivityf3705d52012-03-08 16:16:34 +02002383 MemoryRegionSection *section;
bellard8df1cd02005-01-28 22:37:22 +00002384
Avi Kivityac1970f2012-10-03 16:22:53 +02002385 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
ths3b46e622007-09-17 08:09:54 +00002386
Avi Kivityf3705d52012-03-08 16:16:34 +02002387 if (!memory_region_is_ram(section->mr) || section->readonly) {
Blue Swirlcc5bea62012-04-14 14:56:48 +00002388 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002389 if (memory_region_is_ram(section->mr)) {
2390 section = &phys_sections[phys_section_rom];
2391 }
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002392#if defined(TARGET_WORDS_BIGENDIAN)
2393 if (endian == DEVICE_LITTLE_ENDIAN) {
2394 val = bswap32(val);
2395 }
2396#else
2397 if (endian == DEVICE_BIG_ENDIAN) {
2398 val = bswap32(val);
2399 }
2400#endif
Avi Kivity37ec01d2012-03-08 18:08:35 +02002401 io_mem_write(section->mr, addr, val, 4);
bellard8df1cd02005-01-28 22:37:22 +00002402 } else {
2403 unsigned long addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02002404 addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002405 + memory_region_section_addr(section, addr);
bellard8df1cd02005-01-28 22:37:22 +00002406 /* RAM case */
pbrook5579c7f2009-04-11 14:47:08 +00002407 ptr = qemu_get_ram_ptr(addr1);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002408 switch (endian) {
2409 case DEVICE_LITTLE_ENDIAN:
2410 stl_le_p(ptr, val);
2411 break;
2412 case DEVICE_BIG_ENDIAN:
2413 stl_be_p(ptr, val);
2414 break;
2415 default:
2416 stl_p(ptr, val);
2417 break;
2418 }
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002419 invalidate_and_set_dirty(addr1, 4);
bellard8df1cd02005-01-28 22:37:22 +00002420 }
2421}
2422
Avi Kivitya8170e52012-10-23 12:30:10 +02002423void stl_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002424{
2425 stl_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN);
2426}
2427
Avi Kivitya8170e52012-10-23 12:30:10 +02002428void stl_le_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002429{
2430 stl_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN);
2431}
2432
Avi Kivitya8170e52012-10-23 12:30:10 +02002433void stl_be_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002434{
2435 stl_phys_internal(addr, val, DEVICE_BIG_ENDIAN);
2436}
2437
bellardaab33092005-10-30 20:48:42 +00002438/* XXX: optimize */
Avi Kivitya8170e52012-10-23 12:30:10 +02002439void stb_phys(hwaddr addr, uint32_t val)
bellardaab33092005-10-30 20:48:42 +00002440{
2441 uint8_t v = val;
2442 cpu_physical_memory_write(addr, &v, 1);
2443}
2444
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002445/* warning: addr must be aligned */
Avi Kivitya8170e52012-10-23 12:30:10 +02002446static inline void stw_phys_internal(hwaddr addr, uint32_t val,
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002447 enum device_endian endian)
bellardaab33092005-10-30 20:48:42 +00002448{
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002449 uint8_t *ptr;
Avi Kivityf3705d52012-03-08 16:16:34 +02002450 MemoryRegionSection *section;
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002451
Avi Kivityac1970f2012-10-03 16:22:53 +02002452 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002453
Avi Kivityf3705d52012-03-08 16:16:34 +02002454 if (!memory_region_is_ram(section->mr) || section->readonly) {
Blue Swirlcc5bea62012-04-14 14:56:48 +00002455 addr = memory_region_section_addr(section, addr);
Avi Kivity37ec01d2012-03-08 18:08:35 +02002456 if (memory_region_is_ram(section->mr)) {
2457 section = &phys_sections[phys_section_rom];
2458 }
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002459#if defined(TARGET_WORDS_BIGENDIAN)
2460 if (endian == DEVICE_LITTLE_ENDIAN) {
2461 val = bswap16(val);
2462 }
2463#else
2464 if (endian == DEVICE_BIG_ENDIAN) {
2465 val = bswap16(val);
2466 }
2467#endif
Avi Kivity37ec01d2012-03-08 18:08:35 +02002468 io_mem_write(section->mr, addr, val, 2);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002469 } else {
2470 unsigned long addr1;
Avi Kivityf3705d52012-03-08 16:16:34 +02002471 addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
Blue Swirlcc5bea62012-04-14 14:56:48 +00002472 + memory_region_section_addr(section, addr);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002473 /* RAM case */
2474 ptr = qemu_get_ram_ptr(addr1);
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002475 switch (endian) {
2476 case DEVICE_LITTLE_ENDIAN:
2477 stw_le_p(ptr, val);
2478 break;
2479 case DEVICE_BIG_ENDIAN:
2480 stw_be_p(ptr, val);
2481 break;
2482 default:
2483 stw_p(ptr, val);
2484 break;
2485 }
Anthony PERARD51d7a9e2012-10-03 13:49:05 +00002486 invalidate_and_set_dirty(addr1, 2);
Michael S. Tsirkin733f0b02010-04-06 14:18:19 +03002487 }
bellardaab33092005-10-30 20:48:42 +00002488}
2489
Avi Kivitya8170e52012-10-23 12:30:10 +02002490void stw_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002491{
2492 stw_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN);
2493}
2494
Avi Kivitya8170e52012-10-23 12:30:10 +02002495void stw_le_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002496{
2497 stw_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN);
2498}
2499
Avi Kivitya8170e52012-10-23 12:30:10 +02002500void stw_be_phys(hwaddr addr, uint32_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002501{
2502 stw_phys_internal(addr, val, DEVICE_BIG_ENDIAN);
2503}
2504
bellardaab33092005-10-30 20:48:42 +00002505/* XXX: optimize */
Avi Kivitya8170e52012-10-23 12:30:10 +02002506void stq_phys(hwaddr addr, uint64_t val)
bellardaab33092005-10-30 20:48:42 +00002507{
2508 val = tswap64(val);
Stefan Weil71d2b722011-03-26 21:06:56 +01002509 cpu_physical_memory_write(addr, &val, 8);
bellardaab33092005-10-30 20:48:42 +00002510}
2511
Avi Kivitya8170e52012-10-23 12:30:10 +02002512void stq_le_phys(hwaddr addr, uint64_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002513{
2514 val = cpu_to_le64(val);
2515 cpu_physical_memory_write(addr, &val, 8);
2516}
2517
Avi Kivitya8170e52012-10-23 12:30:10 +02002518void stq_be_phys(hwaddr addr, uint64_t val)
Alexander Graf1e78bcc2011-07-06 09:09:23 +02002519{
2520 val = cpu_to_be64(val);
2521 cpu_physical_memory_write(addr, &val, 8);
2522}
2523
aliguori5e2972f2009-03-28 17:51:36 +00002524/* virtual memory access for debug (includes writing to ROM) */
Andreas Färber9349b4f2012-03-14 01:38:32 +01002525int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr,
bellardb448f2f2004-02-25 23:24:04 +00002526 uint8_t *buf, int len, int is_write)
bellard13eb76e2004-01-24 15:23:36 +00002527{
2528 int l;
Avi Kivitya8170e52012-10-23 12:30:10 +02002529 hwaddr phys_addr;
j_mayer9b3c35e2007-04-07 11:21:28 +00002530 target_ulong page;
bellard13eb76e2004-01-24 15:23:36 +00002531
2532 while (len > 0) {
2533 page = addr & TARGET_PAGE_MASK;
2534 phys_addr = cpu_get_phys_page_debug(env, page);
2535 /* if no physical page mapped, return an error */
2536 if (phys_addr == -1)
2537 return -1;
2538 l = (page + TARGET_PAGE_SIZE) - addr;
2539 if (l > len)
2540 l = len;
aliguori5e2972f2009-03-28 17:51:36 +00002541 phys_addr += (addr & ~TARGET_PAGE_MASK);
aliguori5e2972f2009-03-28 17:51:36 +00002542 if (is_write)
2543 cpu_physical_memory_write_rom(phys_addr, buf, l);
2544 else
aliguori5e2972f2009-03-28 17:51:36 +00002545 cpu_physical_memory_rw(phys_addr, buf, l, is_write);
bellard13eb76e2004-01-24 15:23:36 +00002546 len -= l;
2547 buf += l;
2548 addr += l;
2549 }
2550 return 0;
2551}
Paul Brooka68fe892010-03-01 00:08:59 +00002552#endif
bellard13eb76e2004-01-24 15:23:36 +00002553
Blue Swirl8e4a4242013-01-06 18:30:17 +00002554#if !defined(CONFIG_USER_ONLY)
2555
2556/*
2557 * A helper function for the _utterly broken_ virtio device model to find out if
2558 * it's running on a big endian machine. Don't do this at home kids!
2559 */
2560bool virtio_is_big_endian(void);
2561bool virtio_is_big_endian(void)
2562{
2563#if defined(TARGET_WORDS_BIGENDIAN)
2564 return true;
2565#else
2566 return false;
2567#endif
2568}
2569
2570#endif
2571
Wen Congyang76f35532012-05-07 12:04:18 +08002572#ifndef CONFIG_USER_ONLY
Avi Kivitya8170e52012-10-23 12:30:10 +02002573bool cpu_physical_memory_is_io(hwaddr phys_addr)
Wen Congyang76f35532012-05-07 12:04:18 +08002574{
2575 MemoryRegionSection *section;
2576
Avi Kivityac1970f2012-10-03 16:22:53 +02002577 section = phys_page_find(address_space_memory.dispatch,
2578 phys_addr >> TARGET_PAGE_BITS);
Wen Congyang76f35532012-05-07 12:04:18 +08002579
2580 return !(memory_region_is_ram(section->mr) ||
2581 memory_region_is_romd(section->mr));
2582}
2583#endif