]> git.proxmox.com Git - qemu.git/blame - exec.c
Remove Sun4c, Sun4d and a few CPUs
[qemu.git] / exec.c
CommitLineData
54936004 1/*
5b6dd868 2 * Virtual page mapping
5fafdf24 3 *
54936004
FB
4 * 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
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
54936004 18 */
67b915a5 19#include "config.h"
d5a8f07c
FB
20#ifdef _WIN32
21#include <windows.h>
22#else
a98d49b1 23#include <sys/types.h>
d5a8f07c
FB
24#include <sys/mman.h>
25#endif
54936004 26
055403b2 27#include "qemu-common.h"
6180a181 28#include "cpu.h"
b67d9a52 29#include "tcg.h"
b3c7724c 30#include "hw/hw.h"
cc9e98cb 31#include "hw/qdev.h"
1de7afc9 32#include "qemu/osdep.h"
9c17d615 33#include "sysemu/kvm.h"
0d09e41a 34#include "hw/xen/xen.h"
1de7afc9
PB
35#include "qemu/timer.h"
36#include "qemu/config-file.h"
022c62cb 37#include "exec/memory.h"
9c17d615 38#include "sysemu/dma.h"
022c62cb 39#include "exec/address-spaces.h"
53a5960a
PB
40#if defined(CONFIG_USER_ONLY)
41#include <qemu.h>
432d268c 42#else /* !CONFIG_USER_ONLY */
9c17d615 43#include "sysemu/xen-mapcache.h"
6506e4f9 44#include "trace.h"
53a5960a 45#endif
0d6d3c87 46#include "exec/cpu-all.h"
54936004 47
022c62cb 48#include "exec/cputlb.h"
5b6dd868 49#include "translate-all.h"
0cac1b66 50
022c62cb 51#include "exec/memory-internal.h"
67d95c15 52
67d3b957 53//#define DEBUG_UNASSIGNED
db7b5426 54//#define DEBUG_SUBPAGE
1196be37 55
e2eef170 56#if !defined(CONFIG_USER_ONLY)
9fa3e853 57int phys_ram_fd;
74576198 58static int in_migration;
94a6b54f 59
a3161038 60RAMList ram_list = { .blocks = QTAILQ_HEAD_INITIALIZER(ram_list.blocks) };
62152b8a
AK
61
62static MemoryRegion *system_memory;
309cb471 63static MemoryRegion *system_io;
62152b8a 64
f6790af6
AK
65AddressSpace address_space_io;
66AddressSpace address_space_memory;
9e11908f 67DMAContext dma_context_memory;
2673a5da 68
0e0df1e2 69MemoryRegion io_mem_ram, io_mem_rom, io_mem_unassigned, io_mem_notdirty;
de712f94 70static MemoryRegion io_mem_subpage_ram;
0e0df1e2 71
e2eef170 72#endif
9fa3e853 73
9349b4f9 74CPUArchState *first_cpu;
6a00d601
FB
75/* current CPU in the current thread. It is only valid inside
76 cpu_exec() */
9349b4f9 77DEFINE_TLS(CPUArchState *,cpu_single_env);
2e70f6ef 78/* 0 = Do not count executed instructions.
bf20dc07 79 1 = Precise instruction counting.
2e70f6ef 80 2 = Adaptive rate instruction counting. */
5708fc66 81int use_icount;
6a00d601 82
e2eef170 83#if !defined(CONFIG_USER_ONLY)
4346ae3e 84
5312bd8b
AK
85static MemoryRegionSection *phys_sections;
86static unsigned phys_sections_nb, phys_sections_nb_alloc;
87static uint16_t phys_section_unassigned;
aa102231
AK
88static uint16_t phys_section_notdirty;
89static uint16_t phys_section_rom;
90static uint16_t phys_section_watch;
5312bd8b 91
d6f2ea22
AK
92/* Simple allocator for PhysPageEntry nodes */
93static PhysPageEntry (*phys_map_nodes)[L2_SIZE];
94static unsigned phys_map_nodes_nb, phys_map_nodes_nb_alloc;
95
07f07b31 96#define PHYS_MAP_NODE_NIL (((uint16_t)~0) >> 1)
d6f2ea22 97
e2eef170 98static void io_mem_init(void);
62152b8a 99static void memory_map_init(void);
8b9c99d9 100static void *qemu_safe_ram_ptr(ram_addr_t addr);
e2eef170 101
1ec9b909 102static MemoryRegion io_mem_watch;
6658ffb8 103#endif
fd6ce8f6 104
6d9a1304 105#if !defined(CONFIG_USER_ONLY)
d6f2ea22 106
f7bf5461 107static void phys_map_node_reserve(unsigned nodes)
d6f2ea22 108{
f7bf5461 109 if (phys_map_nodes_nb + nodes > phys_map_nodes_nb_alloc) {
d6f2ea22
AK
110 typedef PhysPageEntry Node[L2_SIZE];
111 phys_map_nodes_nb_alloc = MAX(phys_map_nodes_nb_alloc * 2, 16);
f7bf5461
AK
112 phys_map_nodes_nb_alloc = MAX(phys_map_nodes_nb_alloc,
113 phys_map_nodes_nb + nodes);
d6f2ea22
AK
114 phys_map_nodes = g_renew(Node, phys_map_nodes,
115 phys_map_nodes_nb_alloc);
116 }
f7bf5461
AK
117}
118
119static uint16_t phys_map_node_alloc(void)
120{
121 unsigned i;
122 uint16_t ret;
123
124 ret = phys_map_nodes_nb++;
125 assert(ret != PHYS_MAP_NODE_NIL);
126 assert(ret != phys_map_nodes_nb_alloc);
d6f2ea22 127 for (i = 0; i < L2_SIZE; ++i) {
07f07b31 128 phys_map_nodes[ret][i].is_leaf = 0;
c19e8800 129 phys_map_nodes[ret][i].ptr = PHYS_MAP_NODE_NIL;
d6f2ea22 130 }
f7bf5461 131 return ret;
d6f2ea22
AK
132}
133
134static void phys_map_nodes_reset(void)
135{
136 phys_map_nodes_nb = 0;
137}
138
92e873b9 139
a8170e5e
AK
140static void phys_page_set_level(PhysPageEntry *lp, hwaddr *index,
141 hwaddr *nb, uint16_t leaf,
2999097b 142 int level)
f7bf5461
AK
143{
144 PhysPageEntry *p;
145 int i;
a8170e5e 146 hwaddr step = (hwaddr)1 << (level * L2_BITS);
108c49b8 147
07f07b31 148 if (!lp->is_leaf && lp->ptr == PHYS_MAP_NODE_NIL) {
c19e8800
AK
149 lp->ptr = phys_map_node_alloc();
150 p = phys_map_nodes[lp->ptr];
f7bf5461
AK
151 if (level == 0) {
152 for (i = 0; i < L2_SIZE; i++) {
07f07b31 153 p[i].is_leaf = 1;
c19e8800 154 p[i].ptr = phys_section_unassigned;
4346ae3e 155 }
67c4d23c 156 }
f7bf5461 157 } else {
c19e8800 158 p = phys_map_nodes[lp->ptr];
92e873b9 159 }
2999097b 160 lp = &p[(*index >> (level * L2_BITS)) & (L2_SIZE - 1)];
f7bf5461 161
2999097b 162 while (*nb && lp < &p[L2_SIZE]) {
07f07b31
AK
163 if ((*index & (step - 1)) == 0 && *nb >= step) {
164 lp->is_leaf = true;
c19e8800 165 lp->ptr = leaf;
07f07b31
AK
166 *index += step;
167 *nb -= step;
2999097b
AK
168 } else {
169 phys_page_set_level(lp, index, nb, leaf, level - 1);
170 }
171 ++lp;
f7bf5461
AK
172 }
173}
174
ac1970fb 175static void phys_page_set(AddressSpaceDispatch *d,
a8170e5e 176 hwaddr index, hwaddr nb,
2999097b 177 uint16_t leaf)
f7bf5461 178{
2999097b 179 /* Wildly overreserve - it doesn't matter much. */
07f07b31 180 phys_map_node_reserve(3 * P_L2_LEVELS);
5cd2c5b6 181
ac1970fb 182 phys_page_set_level(&d->phys_map, &index, &nb, leaf, P_L2_LEVELS - 1);
92e873b9
FB
183}
184
a8170e5e 185MemoryRegionSection *phys_page_find(AddressSpaceDispatch *d, hwaddr index)
92e873b9 186{
ac1970fb 187 PhysPageEntry lp = d->phys_map;
31ab2b4a
AK
188 PhysPageEntry *p;
189 int i;
f1f6e3b8 190
07f07b31 191 for (i = P_L2_LEVELS - 1; i >= 0 && !lp.is_leaf; i--) {
c19e8800 192 if (lp.ptr == PHYS_MAP_NODE_NIL) {
fd298934 193 return &phys_sections[phys_section_unassigned];
31ab2b4a 194 }
c19e8800 195 p = phys_map_nodes[lp.ptr];
31ab2b4a 196 lp = p[(index >> (i * L2_BITS)) & (L2_SIZE - 1)];
5312bd8b 197 }
fd298934 198 return &phys_sections[lp.ptr];
f3705d53
AK
199}
200
e5548617
BS
201bool memory_region_is_unassigned(MemoryRegion *mr)
202{
203 return mr != &io_mem_ram && mr != &io_mem_rom
204 && mr != &io_mem_notdirty && !mr->rom_device
5b6dd868 205 && mr != &io_mem_watch;
fd6ce8f6 206}
5b6dd868 207#endif
fd6ce8f6 208
5b6dd868 209void cpu_exec_init_all(void)
fdbb84d1 210{
5b6dd868 211#if !defined(CONFIG_USER_ONLY)
b2a8658e 212 qemu_mutex_init(&ram_list.mutex);
5b6dd868
BS
213 memory_map_init();
214 io_mem_init();
fdbb84d1 215#endif
5b6dd868 216}
fdbb84d1 217
b170fce3 218#if !defined(CONFIG_USER_ONLY)
5b6dd868
BS
219
220static int cpu_common_post_load(void *opaque, int version_id)
fd6ce8f6 221{
259186a7 222 CPUState *cpu = opaque;
a513fe19 223
5b6dd868
BS
224 /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
225 version_id is increased. */
259186a7
AF
226 cpu->interrupt_request &= ~0x01;
227 tlb_flush(cpu->env_ptr, 1);
5b6dd868
BS
228
229 return 0;
a513fe19 230}
7501267e 231
5b6dd868
BS
232static const VMStateDescription vmstate_cpu_common = {
233 .name = "cpu_common",
234 .version_id = 1,
235 .minimum_version_id = 1,
236 .minimum_version_id_old = 1,
237 .post_load = cpu_common_post_load,
238 .fields = (VMStateField []) {
259186a7
AF
239 VMSTATE_UINT32(halted, CPUState),
240 VMSTATE_UINT32(interrupt_request, CPUState),
5b6dd868
BS
241 VMSTATE_END_OF_LIST()
242 }
243};
b170fce3
AF
244#else
245#define vmstate_cpu_common vmstate_dummy
5b6dd868 246#endif
ea041c0e 247
38d8f5c8 248CPUState *qemu_get_cpu(int index)
ea041c0e 249{
5b6dd868 250 CPUArchState *env = first_cpu;
38d8f5c8 251 CPUState *cpu = NULL;
ea041c0e 252
5b6dd868 253 while (env) {
55e5c285
AF
254 cpu = ENV_GET_CPU(env);
255 if (cpu->cpu_index == index) {
5b6dd868 256 break;
55e5c285 257 }
5b6dd868 258 env = env->next_cpu;
ea041c0e 259 }
5b6dd868 260
d76fddae 261 return env ? cpu : NULL;
ea041c0e
FB
262}
263
d6b9e0d6
MT
264void qemu_for_each_cpu(void (*func)(CPUState *cpu, void *data), void *data)
265{
266 CPUArchState *env = first_cpu;
267
268 while (env) {
269 func(ENV_GET_CPU(env), data);
270 env = env->next_cpu;
271 }
272}
273
5b6dd868 274void cpu_exec_init(CPUArchState *env)
ea041c0e 275{
5b6dd868 276 CPUState *cpu = ENV_GET_CPU(env);
b170fce3 277 CPUClass *cc = CPU_GET_CLASS(cpu);
5b6dd868
BS
278 CPUArchState **penv;
279 int cpu_index;
280
281#if defined(CONFIG_USER_ONLY)
282 cpu_list_lock();
283#endif
284 env->next_cpu = NULL;
285 penv = &first_cpu;
286 cpu_index = 0;
287 while (*penv != NULL) {
288 penv = &(*penv)->next_cpu;
289 cpu_index++;
290 }
55e5c285 291 cpu->cpu_index = cpu_index;
1b1ed8dc 292 cpu->numa_node = 0;
5b6dd868
BS
293 QTAILQ_INIT(&env->breakpoints);
294 QTAILQ_INIT(&env->watchpoints);
295#ifndef CONFIG_USER_ONLY
296 cpu->thread_id = qemu_get_thread_id();
297#endif
298 *penv = env;
299#if defined(CONFIG_USER_ONLY)
300 cpu_list_unlock();
301#endif
259186a7 302 vmstate_register(NULL, cpu_index, &vmstate_cpu_common, cpu);
5b6dd868 303#if defined(CPU_SAVE_VERSION) && !defined(CONFIG_USER_ONLY)
5b6dd868
BS
304 register_savevm(NULL, "cpu", cpu_index, CPU_SAVE_VERSION,
305 cpu_save, cpu_load, env);
b170fce3 306 assert(cc->vmsd == NULL);
5b6dd868 307#endif
b170fce3
AF
308 if (cc->vmsd != NULL) {
309 vmstate_register(NULL, cpu_index, cc->vmsd, cpu);
310 }
ea041c0e
FB
311}
312
1fddef4b 313#if defined(TARGET_HAS_ICE)
94df27fd 314#if defined(CONFIG_USER_ONLY)
9349b4f9 315static void breakpoint_invalidate(CPUArchState *env, target_ulong pc)
94df27fd
PB
316{
317 tb_invalidate_phys_page_range(pc, pc + 1, 0);
318}
319#else
1e7855a5
MF
320static void breakpoint_invalidate(CPUArchState *env, target_ulong pc)
321{
9d70c4b7
MF
322 tb_invalidate_phys_addr(cpu_get_phys_page_debug(env, pc) |
323 (pc & ~TARGET_PAGE_MASK));
1e7855a5 324}
c27004ec 325#endif
94df27fd 326#endif /* TARGET_HAS_ICE */
d720b93d 327
c527ee8f 328#if defined(CONFIG_USER_ONLY)
9349b4f9 329void cpu_watchpoint_remove_all(CPUArchState *env, int mask)
c527ee8f
PB
330
331{
332}
333
9349b4f9 334int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len,
c527ee8f
PB
335 int flags, CPUWatchpoint **watchpoint)
336{
337 return -ENOSYS;
338}
339#else
6658ffb8 340/* Add a watchpoint. */
9349b4f9 341int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len,
a1d1bb31 342 int flags, CPUWatchpoint **watchpoint)
6658ffb8 343{
b4051334 344 target_ulong len_mask = ~(len - 1);
c0ce998e 345 CPUWatchpoint *wp;
6658ffb8 346
b4051334 347 /* sanity checks: allow power-of-2 lengths, deny unaligned watchpoints */
0dc23828
MF
348 if ((len & (len - 1)) || (addr & ~len_mask) ||
349 len == 0 || len > TARGET_PAGE_SIZE) {
b4051334
AL
350 fprintf(stderr, "qemu: tried to set invalid watchpoint at "
351 TARGET_FMT_lx ", len=" TARGET_FMT_lu "\n", addr, len);
352 return -EINVAL;
353 }
7267c094 354 wp = g_malloc(sizeof(*wp));
a1d1bb31
AL
355
356 wp->vaddr = addr;
b4051334 357 wp->len_mask = len_mask;
a1d1bb31
AL
358 wp->flags = flags;
359
2dc9f411 360 /* keep all GDB-injected watchpoints in front */
c0ce998e 361 if (flags & BP_GDB)
72cf2d4f 362 QTAILQ_INSERT_HEAD(&env->watchpoints, wp, entry);
c0ce998e 363 else
72cf2d4f 364 QTAILQ_INSERT_TAIL(&env->watchpoints, wp, entry);
6658ffb8 365
6658ffb8 366 tlb_flush_page(env, addr);
a1d1bb31
AL
367
368 if (watchpoint)
369 *watchpoint = wp;
370 return 0;
6658ffb8
PB
371}
372
a1d1bb31 373/* Remove a specific watchpoint. */
9349b4f9 374int cpu_watchpoint_remove(CPUArchState *env, target_ulong addr, target_ulong len,
a1d1bb31 375 int flags)
6658ffb8 376{
b4051334 377 target_ulong len_mask = ~(len - 1);
a1d1bb31 378 CPUWatchpoint *wp;
6658ffb8 379
72cf2d4f 380 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
b4051334 381 if (addr == wp->vaddr && len_mask == wp->len_mask
6e140f28 382 && flags == (wp->flags & ~BP_WATCHPOINT_HIT)) {
a1d1bb31 383 cpu_watchpoint_remove_by_ref(env, wp);
6658ffb8
PB
384 return 0;
385 }
386 }
a1d1bb31 387 return -ENOENT;
6658ffb8
PB
388}
389
a1d1bb31 390/* Remove a specific watchpoint by reference. */
9349b4f9 391void cpu_watchpoint_remove_by_ref(CPUArchState *env, CPUWatchpoint *watchpoint)
a1d1bb31 392{
72cf2d4f 393 QTAILQ_REMOVE(&env->watchpoints, watchpoint, entry);
7d03f82f 394
a1d1bb31
AL
395 tlb_flush_page(env, watchpoint->vaddr);
396
7267c094 397 g_free(watchpoint);
a1d1bb31
AL
398}
399
400/* Remove all matching watchpoints. */
9349b4f9 401void cpu_watchpoint_remove_all(CPUArchState *env, int mask)
a1d1bb31 402{
c0ce998e 403 CPUWatchpoint *wp, *next;
a1d1bb31 404
72cf2d4f 405 QTAILQ_FOREACH_SAFE(wp, &env->watchpoints, entry, next) {
a1d1bb31
AL
406 if (wp->flags & mask)
407 cpu_watchpoint_remove_by_ref(env, wp);
c0ce998e 408 }
7d03f82f 409}
c527ee8f 410#endif
7d03f82f 411
a1d1bb31 412/* Add a breakpoint. */
9349b4f9 413int cpu_breakpoint_insert(CPUArchState *env, target_ulong pc, int flags,
a1d1bb31 414 CPUBreakpoint **breakpoint)
4c3a88a2 415{
1fddef4b 416#if defined(TARGET_HAS_ICE)
c0ce998e 417 CPUBreakpoint *bp;
3b46e624 418
7267c094 419 bp = g_malloc(sizeof(*bp));
4c3a88a2 420
a1d1bb31
AL
421 bp->pc = pc;
422 bp->flags = flags;
423
2dc9f411 424 /* keep all GDB-injected breakpoints in front */
c0ce998e 425 if (flags & BP_GDB)
72cf2d4f 426 QTAILQ_INSERT_HEAD(&env->breakpoints, bp, entry);
c0ce998e 427 else
72cf2d4f 428 QTAILQ_INSERT_TAIL(&env->breakpoints, bp, entry);
3b46e624 429
d720b93d 430 breakpoint_invalidate(env, pc);
a1d1bb31
AL
431
432 if (breakpoint)
433 *breakpoint = bp;
4c3a88a2
FB
434 return 0;
435#else
a1d1bb31 436 return -ENOSYS;
4c3a88a2
FB
437#endif
438}
439
a1d1bb31 440/* Remove a specific breakpoint. */
9349b4f9 441int cpu_breakpoint_remove(CPUArchState *env, target_ulong pc, int flags)
a1d1bb31 442{
7d03f82f 443#if defined(TARGET_HAS_ICE)
a1d1bb31
AL
444 CPUBreakpoint *bp;
445
72cf2d4f 446 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
a1d1bb31
AL
447 if (bp->pc == pc && bp->flags == flags) {
448 cpu_breakpoint_remove_by_ref(env, bp);
449 return 0;
450 }
7d03f82f 451 }
a1d1bb31
AL
452 return -ENOENT;
453#else
454 return -ENOSYS;
7d03f82f
EI
455#endif
456}
457
a1d1bb31 458/* Remove a specific breakpoint by reference. */
9349b4f9 459void cpu_breakpoint_remove_by_ref(CPUArchState *env, CPUBreakpoint *breakpoint)
4c3a88a2 460{
1fddef4b 461#if defined(TARGET_HAS_ICE)
72cf2d4f 462 QTAILQ_REMOVE(&env->breakpoints, breakpoint, entry);
d720b93d 463
a1d1bb31
AL
464 breakpoint_invalidate(env, breakpoint->pc);
465
7267c094 466 g_free(breakpoint);
a1d1bb31
AL
467#endif
468}
469
470/* Remove all matching breakpoints. */
9349b4f9 471void cpu_breakpoint_remove_all(CPUArchState *env, int mask)
a1d1bb31
AL
472{
473#if defined(TARGET_HAS_ICE)
c0ce998e 474 CPUBreakpoint *bp, *next;
a1d1bb31 475
72cf2d4f 476 QTAILQ_FOREACH_SAFE(bp, &env->breakpoints, entry, next) {
a1d1bb31
AL
477 if (bp->flags & mask)
478 cpu_breakpoint_remove_by_ref(env, bp);
c0ce998e 479 }
4c3a88a2
FB
480#endif
481}
482
c33a346e
FB
483/* enable or disable single step mode. EXCP_DEBUG is returned by the
484 CPU loop after each instruction */
9349b4f9 485void cpu_single_step(CPUArchState *env, int enabled)
c33a346e 486{
1fddef4b 487#if defined(TARGET_HAS_ICE)
c33a346e
FB
488 if (env->singlestep_enabled != enabled) {
489 env->singlestep_enabled = enabled;
e22a25c9
AL
490 if (kvm_enabled())
491 kvm_update_guest_debug(env, 0);
492 else {
ccbb4d44 493 /* must flush all the translated code to avoid inconsistencies */
e22a25c9
AL
494 /* XXX: only flush what is necessary */
495 tb_flush(env);
496 }
c33a346e
FB
497 }
498#endif
499}
500
9349b4f9 501void cpu_exit(CPUArchState *env)
3098dba0 502{
fcd7d003
AF
503 CPUState *cpu = ENV_GET_CPU(env);
504
505 cpu->exit_request = 1;
378df4b2 506 cpu->tcg_exit_req = 1;
3098dba0
AJ
507}
508
9349b4f9 509void cpu_abort(CPUArchState *env, const char *fmt, ...)
7501267e
FB
510{
511 va_list ap;
493ae1f0 512 va_list ap2;
7501267e
FB
513
514 va_start(ap, fmt);
493ae1f0 515 va_copy(ap2, ap);
7501267e
FB
516 fprintf(stderr, "qemu: fatal: ");
517 vfprintf(stderr, fmt, ap);
518 fprintf(stderr, "\n");
6fd2a026 519 cpu_dump_state(env, stderr, fprintf, CPU_DUMP_FPU | CPU_DUMP_CCOP);
93fcfe39
AL
520 if (qemu_log_enabled()) {
521 qemu_log("qemu: fatal: ");
522 qemu_log_vprintf(fmt, ap2);
523 qemu_log("\n");
6fd2a026 524 log_cpu_state(env, CPU_DUMP_FPU | CPU_DUMP_CCOP);
31b1a7b4 525 qemu_log_flush();
93fcfe39 526 qemu_log_close();
924edcae 527 }
493ae1f0 528 va_end(ap2);
f9373291 529 va_end(ap);
fd052bf6
RV
530#if defined(CONFIG_USER_ONLY)
531 {
532 struct sigaction act;
533 sigfillset(&act.sa_mask);
534 act.sa_handler = SIG_DFL;
535 sigaction(SIGABRT, &act, NULL);
536 }
537#endif
7501267e
FB
538 abort();
539}
540
9349b4f9 541CPUArchState *cpu_copy(CPUArchState *env)
c5be9f08 542{
9349b4f9
AF
543 CPUArchState *new_env = cpu_init(env->cpu_model_str);
544 CPUArchState *next_cpu = new_env->next_cpu;
5a38f081
AL
545#if defined(TARGET_HAS_ICE)
546 CPUBreakpoint *bp;
547 CPUWatchpoint *wp;
548#endif
549
9349b4f9 550 memcpy(new_env, env, sizeof(CPUArchState));
5a38f081 551
55e5c285 552 /* Preserve chaining. */
c5be9f08 553 new_env->next_cpu = next_cpu;
5a38f081
AL
554
555 /* Clone all break/watchpoints.
556 Note: Once we support ptrace with hw-debug register access, make sure
557 BP_CPU break/watchpoints are handled correctly on clone. */
72cf2d4f
BS
558 QTAILQ_INIT(&env->breakpoints);
559 QTAILQ_INIT(&env->watchpoints);
5a38f081 560#if defined(TARGET_HAS_ICE)
72cf2d4f 561 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
5a38f081
AL
562 cpu_breakpoint_insert(new_env, bp->pc, bp->flags, NULL);
563 }
72cf2d4f 564 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
5a38f081
AL
565 cpu_watchpoint_insert(new_env, wp->vaddr, (~wp->len_mask) + 1,
566 wp->flags, NULL);
567 }
568#endif
569
c5be9f08
TS
570 return new_env;
571}
572
0124311e 573#if !defined(CONFIG_USER_ONLY)
d24981d3
JQ
574static void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t end,
575 uintptr_t length)
576{
577 uintptr_t start1;
578
579 /* we modify the TLB cache so that the dirty bit will be set again
580 when accessing the range */
581 start1 = (uintptr_t)qemu_safe_ram_ptr(start);
582 /* Check that we don't span multiple blocks - this breaks the
583 address comparisons below. */
584 if ((uintptr_t)qemu_safe_ram_ptr(end - 1) - start1
585 != (end - 1) - start) {
586 abort();
587 }
588 cpu_tlb_reset_dirty_all(start1, length);
589
590}
591
5579c7f3 592/* Note: start and end must be within the same ram block. */
c227f099 593void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
0a962c02 594 int dirty_flags)
1ccde1cb 595{
d24981d3 596 uintptr_t length;
1ccde1cb
FB
597
598 start &= TARGET_PAGE_MASK;
599 end = TARGET_PAGE_ALIGN(end);
600
601 length = end - start;
602 if (length == 0)
603 return;
f7c11b53 604 cpu_physical_memory_mask_dirty_range(start, length, dirty_flags);
f23db169 605
d24981d3
JQ
606 if (tcg_enabled()) {
607 tlb_reset_dirty_range_all(start, end, length);
5579c7f3 608 }
1ccde1cb
FB
609}
610
8b9c99d9 611static int cpu_physical_memory_set_dirty_tracking(int enable)
74576198 612{
f6f3fbca 613 int ret = 0;
74576198 614 in_migration = enable;
f6f3fbca 615 return ret;
74576198
AL
616}
617
a8170e5e 618hwaddr memory_region_section_get_iotlb(CPUArchState *env,
e5548617
BS
619 MemoryRegionSection *section,
620 target_ulong vaddr,
a8170e5e 621 hwaddr paddr,
e5548617
BS
622 int prot,
623 target_ulong *address)
624{
a8170e5e 625 hwaddr iotlb;
e5548617
BS
626 CPUWatchpoint *wp;
627
cc5bea60 628 if (memory_region_is_ram(section->mr)) {
e5548617
BS
629 /* Normal RAM. */
630 iotlb = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
cc5bea60 631 + memory_region_section_addr(section, paddr);
e5548617
BS
632 if (!section->readonly) {
633 iotlb |= phys_section_notdirty;
634 } else {
635 iotlb |= phys_section_rom;
636 }
637 } else {
e5548617 638 iotlb = section - phys_sections;
cc5bea60 639 iotlb += memory_region_section_addr(section, paddr);
e5548617
BS
640 }
641
642 /* Make accesses to pages with watchpoints go via the
643 watchpoint trap routines. */
644 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
645 if (vaddr == (wp->vaddr & TARGET_PAGE_MASK)) {
646 /* Avoid trapping reads of pages with a write breakpoint. */
647 if ((prot & PAGE_WRITE) || (wp->flags & BP_MEM_READ)) {
648 iotlb = phys_section_watch + paddr;
649 *address |= TLB_MMIO;
650 break;
651 }
652 }
653 }
654
655 return iotlb;
656}
9fa3e853
FB
657#endif /* defined(CONFIG_USER_ONLY) */
658
e2eef170 659#if !defined(CONFIG_USER_ONLY)
8da3ff18 660
c04b2b78
PB
661#define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK)
662typedef struct subpage_t {
70c68e44 663 MemoryRegion iomem;
a8170e5e 664 hwaddr base;
5312bd8b 665 uint16_t sub_section[TARGET_PAGE_SIZE];
c04b2b78
PB
666} subpage_t;
667
c227f099 668static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
5312bd8b 669 uint16_t section);
a8170e5e 670static subpage_t *subpage_init(hwaddr base);
5312bd8b 671static void destroy_page_desc(uint16_t section_index)
54688b1e 672{
5312bd8b
AK
673 MemoryRegionSection *section = &phys_sections[section_index];
674 MemoryRegion *mr = section->mr;
54688b1e
AK
675
676 if (mr->subpage) {
677 subpage_t *subpage = container_of(mr, subpage_t, iomem);
678 memory_region_destroy(&subpage->iomem);
679 g_free(subpage);
680 }
681}
682
4346ae3e 683static void destroy_l2_mapping(PhysPageEntry *lp, unsigned level)
54688b1e
AK
684{
685 unsigned i;
d6f2ea22 686 PhysPageEntry *p;
54688b1e 687
c19e8800 688 if (lp->ptr == PHYS_MAP_NODE_NIL) {
54688b1e
AK
689 return;
690 }
691
c19e8800 692 p = phys_map_nodes[lp->ptr];
4346ae3e 693 for (i = 0; i < L2_SIZE; ++i) {
07f07b31 694 if (!p[i].is_leaf) {
54688b1e 695 destroy_l2_mapping(&p[i], level - 1);
4346ae3e 696 } else {
c19e8800 697 destroy_page_desc(p[i].ptr);
54688b1e 698 }
54688b1e 699 }
07f07b31 700 lp->is_leaf = 0;
c19e8800 701 lp->ptr = PHYS_MAP_NODE_NIL;
54688b1e
AK
702}
703
ac1970fb 704static void destroy_all_mappings(AddressSpaceDispatch *d)
54688b1e 705{
ac1970fb 706 destroy_l2_mapping(&d->phys_map, P_L2_LEVELS - 1);
d6f2ea22 707 phys_map_nodes_reset();
54688b1e
AK
708}
709
5312bd8b
AK
710static uint16_t phys_section_add(MemoryRegionSection *section)
711{
68f3f65b
PB
712 /* The physical section number is ORed with a page-aligned
713 * pointer to produce the iotlb entries. Thus it should
714 * never overflow into the page-aligned value.
715 */
716 assert(phys_sections_nb < TARGET_PAGE_SIZE);
717
5312bd8b
AK
718 if (phys_sections_nb == phys_sections_nb_alloc) {
719 phys_sections_nb_alloc = MAX(phys_sections_nb_alloc * 2, 16);
720 phys_sections = g_renew(MemoryRegionSection, phys_sections,
721 phys_sections_nb_alloc);
722 }
723 phys_sections[phys_sections_nb] = *section;
724 return phys_sections_nb++;
725}
726
727static void phys_sections_clear(void)
728{
729 phys_sections_nb = 0;
730}
731
ac1970fb 732static void register_subpage(AddressSpaceDispatch *d, MemoryRegionSection *section)
0f0cb164
AK
733{
734 subpage_t *subpage;
a8170e5e 735 hwaddr base = section->offset_within_address_space
0f0cb164 736 & TARGET_PAGE_MASK;
ac1970fb 737 MemoryRegionSection *existing = phys_page_find(d, base >> TARGET_PAGE_BITS);
0f0cb164
AK
738 MemoryRegionSection subsection = {
739 .offset_within_address_space = base,
740 .size = TARGET_PAGE_SIZE,
741 };
a8170e5e 742 hwaddr start, end;
0f0cb164 743
f3705d53 744 assert(existing->mr->subpage || existing->mr == &io_mem_unassigned);
0f0cb164 745
f3705d53 746 if (!(existing->mr->subpage)) {
0f0cb164
AK
747 subpage = subpage_init(base);
748 subsection.mr = &subpage->iomem;
ac1970fb 749 phys_page_set(d, base >> TARGET_PAGE_BITS, 1,
2999097b 750 phys_section_add(&subsection));
0f0cb164 751 } else {
f3705d53 752 subpage = container_of(existing->mr, subpage_t, iomem);
0f0cb164
AK
753 }
754 start = section->offset_within_address_space & ~TARGET_PAGE_MASK;
adb2a9b5 755 end = start + section->size - 1;
0f0cb164
AK
756 subpage_register(subpage, start, end, phys_section_add(section));
757}
758
759
ac1970fb 760static void register_multipage(AddressSpaceDispatch *d, MemoryRegionSection *section)
33417e70 761{
a8170e5e 762 hwaddr start_addr = section->offset_within_address_space;
dd81124b 763 ram_addr_t size = section->size;
a8170e5e 764 hwaddr addr;
5312bd8b 765 uint16_t section_index = phys_section_add(section);
dd81124b 766
3b8e6a2d 767 assert(size);
f6f3fbca 768
3b8e6a2d 769 addr = start_addr;
ac1970fb 770 phys_page_set(d, addr >> TARGET_PAGE_BITS, size >> TARGET_PAGE_BITS,
2999097b 771 section_index);
33417e70
FB
772}
773
86a86236
AK
774QEMU_BUILD_BUG_ON(TARGET_PHYS_ADDR_SPACE_BITS > MAX_PHYS_ADDR_SPACE_BITS)
775
776static MemoryRegionSection limit(MemoryRegionSection section)
777{
778 section.size = MIN(section.offset_within_address_space + section.size,
779 MAX_PHYS_ADDR + 1)
780 - section.offset_within_address_space;
781
782 return section;
783}
784
ac1970fb 785static void mem_add(MemoryListener *listener, MemoryRegionSection *section)
0f0cb164 786{
ac1970fb 787 AddressSpaceDispatch *d = container_of(listener, AddressSpaceDispatch, listener);
86a86236 788 MemoryRegionSection now = limit(*section), remain = limit(*section);
0f0cb164
AK
789
790 if ((now.offset_within_address_space & ~TARGET_PAGE_MASK)
791 || (now.size < TARGET_PAGE_SIZE)) {
792 now.size = MIN(TARGET_PAGE_ALIGN(now.offset_within_address_space)
793 - now.offset_within_address_space,
794 now.size);
ac1970fb 795 register_subpage(d, &now);
0f0cb164
AK
796 remain.size -= now.size;
797 remain.offset_within_address_space += now.size;
798 remain.offset_within_region += now.size;
799 }
69b67646
TH
800 while (remain.size >= TARGET_PAGE_SIZE) {
801 now = remain;
802 if (remain.offset_within_region & ~TARGET_PAGE_MASK) {
803 now.size = TARGET_PAGE_SIZE;
ac1970fb 804 register_subpage(d, &now);
69b67646
TH
805 } else {
806 now.size &= TARGET_PAGE_MASK;
ac1970fb 807 register_multipage(d, &now);
69b67646 808 }
0f0cb164
AK
809 remain.size -= now.size;
810 remain.offset_within_address_space += now.size;
811 remain.offset_within_region += now.size;
812 }
813 now = remain;
814 if (now.size) {
ac1970fb 815 register_subpage(d, &now);
0f0cb164
AK
816 }
817}
818
62a2744c
SY
819void qemu_flush_coalesced_mmio_buffer(void)
820{
821 if (kvm_enabled())
822 kvm_flush_coalesced_mmio_buffer();
823}
824
b2a8658e
UD
825void qemu_mutex_lock_ramlist(void)
826{
827 qemu_mutex_lock(&ram_list.mutex);
828}
829
830void qemu_mutex_unlock_ramlist(void)
831{
832 qemu_mutex_unlock(&ram_list.mutex);
833}
834
c902760f
MT
835#if defined(__linux__) && !defined(TARGET_S390X)
836
837#include <sys/vfs.h>
838
839#define HUGETLBFS_MAGIC 0x958458f6
840
841static long gethugepagesize(const char *path)
842{
843 struct statfs fs;
844 int ret;
845
846 do {
9742bf26 847 ret = statfs(path, &fs);
c902760f
MT
848 } while (ret != 0 && errno == EINTR);
849
850 if (ret != 0) {
9742bf26
YT
851 perror(path);
852 return 0;
c902760f
MT
853 }
854
855 if (fs.f_type != HUGETLBFS_MAGIC)
9742bf26 856 fprintf(stderr, "Warning: path not on HugeTLBFS: %s\n", path);
c902760f
MT
857
858 return fs.f_bsize;
859}
860
04b16653
AW
861static void *file_ram_alloc(RAMBlock *block,
862 ram_addr_t memory,
863 const char *path)
c902760f
MT
864{
865 char *filename;
8ca761f6
PF
866 char *sanitized_name;
867 char *c;
c902760f
MT
868 void *area;
869 int fd;
870#ifdef MAP_POPULATE
871 int flags;
872#endif
873 unsigned long hpagesize;
874
875 hpagesize = gethugepagesize(path);
876 if (!hpagesize) {
9742bf26 877 return NULL;
c902760f
MT
878 }
879
880 if (memory < hpagesize) {
881 return NULL;
882 }
883
884 if (kvm_enabled() && !kvm_has_sync_mmu()) {
885 fprintf(stderr, "host lacks kvm mmu notifiers, -mem-path unsupported\n");
886 return NULL;
887 }
888
8ca761f6
PF
889 /* Make name safe to use with mkstemp by replacing '/' with '_'. */
890 sanitized_name = g_strdup(block->mr->name);
891 for (c = sanitized_name; *c != '\0'; c++) {
892 if (*c == '/')
893 *c = '_';
894 }
895
896 filename = g_strdup_printf("%s/qemu_back_mem.%s.XXXXXX", path,
897 sanitized_name);
898 g_free(sanitized_name);
c902760f
MT
899
900 fd = mkstemp(filename);
901 if (fd < 0) {
9742bf26 902 perror("unable to create backing store for hugepages");
e4ada482 903 g_free(filename);
9742bf26 904 return NULL;
c902760f
MT
905 }
906 unlink(filename);
e4ada482 907 g_free(filename);
c902760f
MT
908
909 memory = (memory+hpagesize-1) & ~(hpagesize-1);
910
911 /*
912 * ftruncate is not supported by hugetlbfs in older
913 * hosts, so don't bother bailing out on errors.
914 * If anything goes wrong with it under other filesystems,
915 * mmap will fail.
916 */
917 if (ftruncate(fd, memory))
9742bf26 918 perror("ftruncate");
c902760f
MT
919
920#ifdef MAP_POPULATE
921 /* NB: MAP_POPULATE won't exhaustively alloc all phys pages in the case
922 * MAP_PRIVATE is requested. For mem_prealloc we mmap as MAP_SHARED
923 * to sidestep this quirk.
924 */
925 flags = mem_prealloc ? MAP_POPULATE | MAP_SHARED : MAP_PRIVATE;
926 area = mmap(0, memory, PROT_READ | PROT_WRITE, flags, fd, 0);
927#else
928 area = mmap(0, memory, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
929#endif
930 if (area == MAP_FAILED) {
9742bf26
YT
931 perror("file_ram_alloc: can't mmap RAM pages");
932 close(fd);
933 return (NULL);
c902760f 934 }
04b16653 935 block->fd = fd;
c902760f
MT
936 return area;
937}
938#endif
939
d17b5288 940static ram_addr_t find_ram_offset(ram_addr_t size)
04b16653
AW
941{
942 RAMBlock *block, *next_block;
3e837b2c 943 ram_addr_t offset = RAM_ADDR_MAX, mingap = RAM_ADDR_MAX;
04b16653 944
49cd9ac6
SH
945 assert(size != 0); /* it would hand out same offset multiple times */
946
a3161038 947 if (QTAILQ_EMPTY(&ram_list.blocks))
04b16653
AW
948 return 0;
949
a3161038 950 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
f15fbc4b 951 ram_addr_t end, next = RAM_ADDR_MAX;
04b16653
AW
952
953 end = block->offset + block->length;
954
a3161038 955 QTAILQ_FOREACH(next_block, &ram_list.blocks, next) {
04b16653
AW
956 if (next_block->offset >= end) {
957 next = MIN(next, next_block->offset);
958 }
959 }
960 if (next - end >= size && next - end < mingap) {
3e837b2c 961 offset = end;
04b16653
AW
962 mingap = next - end;
963 }
964 }
3e837b2c
AW
965
966 if (offset == RAM_ADDR_MAX) {
967 fprintf(stderr, "Failed to find gap of requested size: %" PRIu64 "\n",
968 (uint64_t)size);
969 abort();
970 }
971
04b16653
AW
972 return offset;
973}
974
652d7ec2 975ram_addr_t last_ram_offset(void)
d17b5288
AW
976{
977 RAMBlock *block;
978 ram_addr_t last = 0;
979
a3161038 980 QTAILQ_FOREACH(block, &ram_list.blocks, next)
d17b5288
AW
981 last = MAX(last, block->offset + block->length);
982
983 return last;
984}
985
ddb97f1d
JB
986static void qemu_ram_setup_dump(void *addr, ram_addr_t size)
987{
988 int ret;
989 QemuOpts *machine_opts;
990
991 /* Use MADV_DONTDUMP, if user doesn't want the guest memory in the core */
992 machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
993 if (machine_opts &&
994 !qemu_opt_get_bool(machine_opts, "dump-guest-core", true)) {
995 ret = qemu_madvise(addr, size, QEMU_MADV_DONTDUMP);
996 if (ret) {
997 perror("qemu_madvise");
998 fprintf(stderr, "madvise doesn't support MADV_DONTDUMP, "
999 "but dump_guest_core=off specified\n");
1000 }
1001 }
1002}
1003
c5705a77 1004void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev)
84b89d78
CM
1005{
1006 RAMBlock *new_block, *block;
1007
c5705a77 1008 new_block = NULL;
a3161038 1009 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
c5705a77
AK
1010 if (block->offset == addr) {
1011 new_block = block;
1012 break;
1013 }
1014 }
1015 assert(new_block);
1016 assert(!new_block->idstr[0]);
84b89d78 1017
09e5ab63
AL
1018 if (dev) {
1019 char *id = qdev_get_dev_path(dev);
84b89d78
CM
1020 if (id) {
1021 snprintf(new_block->idstr, sizeof(new_block->idstr), "%s/", id);
7267c094 1022 g_free(id);
84b89d78
CM
1023 }
1024 }
1025 pstrcat(new_block->idstr, sizeof(new_block->idstr), name);
1026
b2a8658e
UD
1027 /* This assumes the iothread lock is taken here too. */
1028 qemu_mutex_lock_ramlist();
a3161038 1029 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
c5705a77 1030 if (block != new_block && !strcmp(block->idstr, new_block->idstr)) {
84b89d78
CM
1031 fprintf(stderr, "RAMBlock \"%s\" already registered, abort!\n",
1032 new_block->idstr);
1033 abort();
1034 }
1035 }
b2a8658e 1036 qemu_mutex_unlock_ramlist();
c5705a77
AK
1037}
1038
8490fc78
LC
1039static int memory_try_enable_merging(void *addr, size_t len)
1040{
1041 QemuOpts *opts;
1042
1043 opts = qemu_opts_find(qemu_find_opts("machine"), 0);
1044 if (opts && !qemu_opt_get_bool(opts, "mem-merge", true)) {
1045 /* disabled by the user */
1046 return 0;
1047 }
1048
1049 return qemu_madvise(addr, len, QEMU_MADV_MERGEABLE);
1050}
1051
c5705a77
AK
1052ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
1053 MemoryRegion *mr)
1054{
abb26d63 1055 RAMBlock *block, *new_block;
c5705a77
AK
1056
1057 size = TARGET_PAGE_ALIGN(size);
1058 new_block = g_malloc0(sizeof(*new_block));
84b89d78 1059
b2a8658e
UD
1060 /* This assumes the iothread lock is taken here too. */
1061 qemu_mutex_lock_ramlist();
7c637366 1062 new_block->mr = mr;
432d268c 1063 new_block->offset = find_ram_offset(size);
6977dfe6
YT
1064 if (host) {
1065 new_block->host = host;
cd19cfa2 1066 new_block->flags |= RAM_PREALLOC_MASK;
6977dfe6
YT
1067 } else {
1068 if (mem_path) {
c902760f 1069#if defined (__linux__) && !defined(TARGET_S390X)
6977dfe6
YT
1070 new_block->host = file_ram_alloc(new_block, size, mem_path);
1071 if (!new_block->host) {
6eebf958 1072 new_block->host = qemu_anon_ram_alloc(size);
8490fc78 1073 memory_try_enable_merging(new_block->host, size);
6977dfe6 1074 }
c902760f 1075#else
6977dfe6
YT
1076 fprintf(stderr, "-mem-path option unsupported\n");
1077 exit(1);
c902760f 1078#endif
6977dfe6 1079 } else {
868bb33f 1080 if (xen_enabled()) {
fce537d4 1081 xen_ram_alloc(new_block->offset, size, mr);
fdec9918
CB
1082 } else if (kvm_enabled()) {
1083 /* some s390/kvm configurations have special constraints */
6eebf958 1084 new_block->host = kvm_ram_alloc(size);
432d268c 1085 } else {
6eebf958 1086 new_block->host = qemu_anon_ram_alloc(size);
432d268c 1087 }
8490fc78 1088 memory_try_enable_merging(new_block->host, size);
6977dfe6 1089 }
c902760f 1090 }
94a6b54f
PB
1091 new_block->length = size;
1092
abb26d63
PB
1093 /* Keep the list sorted from biggest to smallest block. */
1094 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
1095 if (block->length < new_block->length) {
1096 break;
1097 }
1098 }
1099 if (block) {
1100 QTAILQ_INSERT_BEFORE(block, new_block, next);
1101 } else {
1102 QTAILQ_INSERT_TAIL(&ram_list.blocks, new_block, next);
1103 }
0d6d3c87 1104 ram_list.mru_block = NULL;
94a6b54f 1105
f798b07f 1106 ram_list.version++;
b2a8658e 1107 qemu_mutex_unlock_ramlist();
f798b07f 1108
7267c094 1109 ram_list.phys_dirty = g_realloc(ram_list.phys_dirty,
04b16653 1110 last_ram_offset() >> TARGET_PAGE_BITS);
5fda043f
IM
1111 memset(ram_list.phys_dirty + (new_block->offset >> TARGET_PAGE_BITS),
1112 0, size >> TARGET_PAGE_BITS);
1720aeee 1113 cpu_physical_memory_set_dirty_range(new_block->offset, size, 0xff);
94a6b54f 1114
ddb97f1d 1115 qemu_ram_setup_dump(new_block->host, size);
ad0b5321 1116 qemu_madvise(new_block->host, size, QEMU_MADV_HUGEPAGE);
ddb97f1d 1117
6f0437e8
JK
1118 if (kvm_enabled())
1119 kvm_setup_guest_memory(new_block->host, size);
1120
94a6b54f
PB
1121 return new_block->offset;
1122}
e9a1ab19 1123
c5705a77 1124ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr)
6977dfe6 1125{
c5705a77 1126 return qemu_ram_alloc_from_ptr(size, NULL, mr);
6977dfe6
YT
1127}
1128
1f2e98b6
AW
1129void qemu_ram_free_from_ptr(ram_addr_t addr)
1130{
1131 RAMBlock *block;
1132
b2a8658e
UD
1133 /* This assumes the iothread lock is taken here too. */
1134 qemu_mutex_lock_ramlist();
a3161038 1135 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
1f2e98b6 1136 if (addr == block->offset) {
a3161038 1137 QTAILQ_REMOVE(&ram_list.blocks, block, next);
0d6d3c87 1138 ram_list.mru_block = NULL;
f798b07f 1139 ram_list.version++;
7267c094 1140 g_free(block);
b2a8658e 1141 break;
1f2e98b6
AW
1142 }
1143 }
b2a8658e 1144 qemu_mutex_unlock_ramlist();
1f2e98b6
AW
1145}
1146
c227f099 1147void qemu_ram_free(ram_addr_t addr)
e9a1ab19 1148{
04b16653
AW
1149 RAMBlock *block;
1150
b2a8658e
UD
1151 /* This assumes the iothread lock is taken here too. */
1152 qemu_mutex_lock_ramlist();
a3161038 1153 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
04b16653 1154 if (addr == block->offset) {
a3161038 1155 QTAILQ_REMOVE(&ram_list.blocks, block, next);
0d6d3c87 1156 ram_list.mru_block = NULL;
f798b07f 1157 ram_list.version++;
cd19cfa2
HY
1158 if (block->flags & RAM_PREALLOC_MASK) {
1159 ;
1160 } else if (mem_path) {
04b16653
AW
1161#if defined (__linux__) && !defined(TARGET_S390X)
1162 if (block->fd) {
1163 munmap(block->host, block->length);
1164 close(block->fd);
1165 } else {
e7a09b92 1166 qemu_anon_ram_free(block->host, block->length);
04b16653 1167 }
fd28aa13
JK
1168#else
1169 abort();
04b16653
AW
1170#endif
1171 } else {
868bb33f 1172 if (xen_enabled()) {
e41d7c69 1173 xen_invalidate_map_cache_entry(block->host);
432d268c 1174 } else {
e7a09b92 1175 qemu_anon_ram_free(block->host, block->length);
432d268c 1176 }
04b16653 1177 }
7267c094 1178 g_free(block);
b2a8658e 1179 break;
04b16653
AW
1180 }
1181 }
b2a8658e 1182 qemu_mutex_unlock_ramlist();
04b16653 1183
e9a1ab19
FB
1184}
1185
cd19cfa2
HY
1186#ifndef _WIN32
1187void qemu_ram_remap(ram_addr_t addr, ram_addr_t length)
1188{
1189 RAMBlock *block;
1190 ram_addr_t offset;
1191 int flags;
1192 void *area, *vaddr;
1193
a3161038 1194 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
cd19cfa2
HY
1195 offset = addr - block->offset;
1196 if (offset < block->length) {
1197 vaddr = block->host + offset;
1198 if (block->flags & RAM_PREALLOC_MASK) {
1199 ;
1200 } else {
1201 flags = MAP_FIXED;
1202 munmap(vaddr, length);
1203 if (mem_path) {
1204#if defined(__linux__) && !defined(TARGET_S390X)
1205 if (block->fd) {
1206#ifdef MAP_POPULATE
1207 flags |= mem_prealloc ? MAP_POPULATE | MAP_SHARED :
1208 MAP_PRIVATE;
1209#else
1210 flags |= MAP_PRIVATE;
1211#endif
1212 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1213 flags, block->fd, offset);
1214 } else {
1215 flags |= MAP_PRIVATE | MAP_ANONYMOUS;
1216 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1217 flags, -1, 0);
1218 }
fd28aa13
JK
1219#else
1220 abort();
cd19cfa2
HY
1221#endif
1222 } else {
1223#if defined(TARGET_S390X) && defined(CONFIG_KVM)
1224 flags |= MAP_SHARED | MAP_ANONYMOUS;
1225 area = mmap(vaddr, length, PROT_EXEC|PROT_READ|PROT_WRITE,
1226 flags, -1, 0);
1227#else
1228 flags |= MAP_PRIVATE | MAP_ANONYMOUS;
1229 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
1230 flags, -1, 0);
1231#endif
1232 }
1233 if (area != vaddr) {
f15fbc4b
AP
1234 fprintf(stderr, "Could not remap addr: "
1235 RAM_ADDR_FMT "@" RAM_ADDR_FMT "\n",
cd19cfa2
HY
1236 length, addr);
1237 exit(1);
1238 }
8490fc78 1239 memory_try_enable_merging(vaddr, length);
ddb97f1d 1240 qemu_ram_setup_dump(vaddr, length);
cd19cfa2
HY
1241 }
1242 return;
1243 }
1244 }
1245}
1246#endif /* !_WIN32 */
1247
dc828ca1 1248/* Return a host pointer to ram allocated with qemu_ram_alloc.
5579c7f3
PB
1249 With the exception of the softmmu code in this file, this should
1250 only be used for local memory (e.g. video ram) that the device owns,
1251 and knows it isn't going to access beyond the end of the block.
1252
1253 It should not be used for general purpose DMA.
1254 Use cpu_physical_memory_map/cpu_physical_memory_rw instead.
1255 */
c227f099 1256void *qemu_get_ram_ptr(ram_addr_t addr)
dc828ca1 1257{
94a6b54f
PB
1258 RAMBlock *block;
1259
b2a8658e 1260 /* The list is protected by the iothread lock here. */
0d6d3c87
PB
1261 block = ram_list.mru_block;
1262 if (block && addr - block->offset < block->length) {
1263 goto found;
1264 }
a3161038 1265 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
f471a17e 1266 if (addr - block->offset < block->length) {
0d6d3c87 1267 goto found;
f471a17e 1268 }
94a6b54f 1269 }
f471a17e
AW
1270
1271 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1272 abort();
1273
0d6d3c87
PB
1274found:
1275 ram_list.mru_block = block;
1276 if (xen_enabled()) {
1277 /* We need to check if the requested address is in the RAM
1278 * because we don't want to map the entire memory in QEMU.
1279 * In that case just map until the end of the page.
1280 */
1281 if (block->offset == 0) {
1282 return xen_map_cache(addr, 0, 0);
1283 } else if (block->host == NULL) {
1284 block->host =
1285 xen_map_cache(block->offset, block->length, 1);
1286 }
1287 }
1288 return block->host + (addr - block->offset);
dc828ca1
PB
1289}
1290
0d6d3c87
PB
1291/* Return a host pointer to ram allocated with qemu_ram_alloc. Same as
1292 * qemu_get_ram_ptr but do not touch ram_list.mru_block.
1293 *
1294 * ??? Is this still necessary?
b2e0a138 1295 */
8b9c99d9 1296static void *qemu_safe_ram_ptr(ram_addr_t addr)
b2e0a138
MT
1297{
1298 RAMBlock *block;
1299
b2a8658e 1300 /* The list is protected by the iothread lock here. */
a3161038 1301 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
b2e0a138 1302 if (addr - block->offset < block->length) {
868bb33f 1303 if (xen_enabled()) {
432d268c
JN
1304 /* We need to check if the requested address is in the RAM
1305 * because we don't want to map the entire memory in QEMU.
712c2b41 1306 * In that case just map until the end of the page.
432d268c
JN
1307 */
1308 if (block->offset == 0) {
e41d7c69 1309 return xen_map_cache(addr, 0, 0);
432d268c 1310 } else if (block->host == NULL) {
e41d7c69
JK
1311 block->host =
1312 xen_map_cache(block->offset, block->length, 1);
432d268c
JN
1313 }
1314 }
b2e0a138
MT
1315 return block->host + (addr - block->offset);
1316 }
1317 }
1318
1319 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1320 abort();
1321
1322 return NULL;
1323}
1324
38bee5dc
SS
1325/* Return a host pointer to guest's ram. Similar to qemu_get_ram_ptr
1326 * but takes a size argument */
8b9c99d9 1327static void *qemu_ram_ptr_length(ram_addr_t addr, ram_addr_t *size)
38bee5dc 1328{
8ab934f9
SS
1329 if (*size == 0) {
1330 return NULL;
1331 }
868bb33f 1332 if (xen_enabled()) {
e41d7c69 1333 return xen_map_cache(addr, *size, 1);
868bb33f 1334 } else {
38bee5dc
SS
1335 RAMBlock *block;
1336
a3161038 1337 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
38bee5dc
SS
1338 if (addr - block->offset < block->length) {
1339 if (addr - block->offset + *size > block->length)
1340 *size = block->length - addr + block->offset;
1341 return block->host + (addr - block->offset);
1342 }
1343 }
1344
1345 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1346 abort();
38bee5dc
SS
1347 }
1348}
1349
e890261f 1350int qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr)
5579c7f3 1351{
94a6b54f
PB
1352 RAMBlock *block;
1353 uint8_t *host = ptr;
1354
868bb33f 1355 if (xen_enabled()) {
e41d7c69 1356 *ram_addr = xen_ram_addr_from_mapcache(ptr);
712c2b41
SS
1357 return 0;
1358 }
1359
a3161038 1360 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
432d268c
JN
1361 /* This case append when the block is not mapped. */
1362 if (block->host == NULL) {
1363 continue;
1364 }
f471a17e 1365 if (host - block->host < block->length) {
e890261f
MT
1366 *ram_addr = block->offset + (host - block->host);
1367 return 0;
f471a17e 1368 }
94a6b54f 1369 }
432d268c 1370
e890261f
MT
1371 return -1;
1372}
f471a17e 1373
e890261f
MT
1374/* Some of the softmmu routines need to translate from a host pointer
1375 (typically a TLB entry) back to a ram offset. */
1376ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr)
1377{
1378 ram_addr_t ram_addr;
f471a17e 1379
e890261f
MT
1380 if (qemu_ram_addr_from_host(ptr, &ram_addr)) {
1381 fprintf(stderr, "Bad ram pointer %p\n", ptr);
1382 abort();
1383 }
1384 return ram_addr;
5579c7f3
PB
1385}
1386
a8170e5e 1387static uint64_t unassigned_mem_read(void *opaque, hwaddr addr,
0e0df1e2 1388 unsigned size)
e18231a3
BS
1389{
1390#ifdef DEBUG_UNASSIGNED
1391 printf("Unassigned mem read " TARGET_FMT_plx "\n", addr);
1392#endif
5b450407 1393#if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE)
0e0df1e2 1394 cpu_unassigned_access(cpu_single_env, addr, 0, 0, 0, size);
e18231a3
BS
1395#endif
1396 return 0;
1397}
1398
a8170e5e 1399static void unassigned_mem_write(void *opaque, hwaddr addr,
0e0df1e2 1400 uint64_t val, unsigned size)
e18231a3
BS
1401{
1402#ifdef DEBUG_UNASSIGNED
0e0df1e2 1403 printf("Unassigned mem write " TARGET_FMT_plx " = 0x%"PRIx64"\n", addr, val);
e18231a3 1404#endif
5b450407 1405#if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE)
0e0df1e2 1406 cpu_unassigned_access(cpu_single_env, addr, 1, 0, 0, size);
67d3b957 1407#endif
33417e70
FB
1408}
1409
0e0df1e2
AK
1410static const MemoryRegionOps unassigned_mem_ops = {
1411 .read = unassigned_mem_read,
1412 .write = unassigned_mem_write,
1413 .endianness = DEVICE_NATIVE_ENDIAN,
1414};
e18231a3 1415
a8170e5e 1416static uint64_t error_mem_read(void *opaque, hwaddr addr,
0e0df1e2 1417 unsigned size)
e18231a3 1418{
0e0df1e2 1419 abort();
e18231a3
BS
1420}
1421
a8170e5e 1422static void error_mem_write(void *opaque, hwaddr addr,
0e0df1e2 1423 uint64_t value, unsigned size)
e18231a3 1424{
0e0df1e2 1425 abort();
33417e70
FB
1426}
1427
0e0df1e2
AK
1428static const MemoryRegionOps error_mem_ops = {
1429 .read = error_mem_read,
1430 .write = error_mem_write,
1431 .endianness = DEVICE_NATIVE_ENDIAN,
33417e70
FB
1432};
1433
0e0df1e2
AK
1434static const MemoryRegionOps rom_mem_ops = {
1435 .read = error_mem_read,
1436 .write = unassigned_mem_write,
1437 .endianness = DEVICE_NATIVE_ENDIAN,
33417e70
FB
1438};
1439
a8170e5e 1440static void notdirty_mem_write(void *opaque, hwaddr ram_addr,
0e0df1e2 1441 uint64_t val, unsigned size)
9fa3e853 1442{
3a7d929e 1443 int dirty_flags;
f7c11b53 1444 dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
3a7d929e 1445 if (!(dirty_flags & CODE_DIRTY_FLAG)) {
9fa3e853 1446#if !defined(CONFIG_USER_ONLY)
0e0df1e2 1447 tb_invalidate_phys_page_fast(ram_addr, size);
f7c11b53 1448 dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
9fa3e853 1449#endif
3a7d929e 1450 }
0e0df1e2
AK
1451 switch (size) {
1452 case 1:
1453 stb_p(qemu_get_ram_ptr(ram_addr), val);
1454 break;
1455 case 2:
1456 stw_p(qemu_get_ram_ptr(ram_addr), val);
1457 break;
1458 case 4:
1459 stl_p(qemu_get_ram_ptr(ram_addr), val);
1460 break;
1461 default:
1462 abort();
3a7d929e 1463 }
f23db169 1464 dirty_flags |= (0xff & ~CODE_DIRTY_FLAG);
f7c11b53 1465 cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
f23db169
FB
1466 /* we remove the notdirty callback only if the code has been
1467 flushed */
1468 if (dirty_flags == 0xff)
2e70f6ef 1469 tlb_set_dirty(cpu_single_env, cpu_single_env->mem_io_vaddr);
9fa3e853
FB
1470}
1471
0e0df1e2
AK
1472static const MemoryRegionOps notdirty_mem_ops = {
1473 .read = error_mem_read,
1474 .write = notdirty_mem_write,
1475 .endianness = DEVICE_NATIVE_ENDIAN,
1ccde1cb
FB
1476};
1477
0f459d16 1478/* Generate a debug exception if a watchpoint has been hit. */
b4051334 1479static void check_watchpoint(int offset, int len_mask, int flags)
0f459d16 1480{
9349b4f9 1481 CPUArchState *env = cpu_single_env;
06d55cc1 1482 target_ulong pc, cs_base;
0f459d16 1483 target_ulong vaddr;
a1d1bb31 1484 CPUWatchpoint *wp;
06d55cc1 1485 int cpu_flags;
0f459d16 1486
06d55cc1
AL
1487 if (env->watchpoint_hit) {
1488 /* We re-entered the check after replacing the TB. Now raise
1489 * the debug interrupt so that is will trigger after the
1490 * current instruction. */
c3affe56 1491 cpu_interrupt(ENV_GET_CPU(env), CPU_INTERRUPT_DEBUG);
06d55cc1
AL
1492 return;
1493 }
2e70f6ef 1494 vaddr = (env->mem_io_vaddr & TARGET_PAGE_MASK) + offset;
72cf2d4f 1495 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
b4051334
AL
1496 if ((vaddr == (wp->vaddr & len_mask) ||
1497 (vaddr & wp->len_mask) == wp->vaddr) && (wp->flags & flags)) {
6e140f28
AL
1498 wp->flags |= BP_WATCHPOINT_HIT;
1499 if (!env->watchpoint_hit) {
1500 env->watchpoint_hit = wp;
5a316526 1501 tb_check_watchpoint(env);
6e140f28
AL
1502 if (wp->flags & BP_STOP_BEFORE_ACCESS) {
1503 env->exception_index = EXCP_DEBUG;
488d6577 1504 cpu_loop_exit(env);
6e140f28
AL
1505 } else {
1506 cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags);
1507 tb_gen_code(env, pc, cs_base, cpu_flags, 1);
488d6577 1508 cpu_resume_from_signal(env, NULL);
6e140f28 1509 }
06d55cc1 1510 }
6e140f28
AL
1511 } else {
1512 wp->flags &= ~BP_WATCHPOINT_HIT;
0f459d16
PB
1513 }
1514 }
1515}
1516
6658ffb8
PB
1517/* Watchpoint access routines. Watchpoints are inserted using TLB tricks,
1518 so these check for a hit then pass through to the normal out-of-line
1519 phys routines. */
a8170e5e 1520static uint64_t watch_mem_read(void *opaque, hwaddr addr,
1ec9b909 1521 unsigned size)
6658ffb8 1522{
1ec9b909
AK
1523 check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_READ);
1524 switch (size) {
1525 case 1: return ldub_phys(addr);
1526 case 2: return lduw_phys(addr);
1527 case 4: return ldl_phys(addr);
1528 default: abort();
1529 }
6658ffb8
PB
1530}
1531
a8170e5e 1532static void watch_mem_write(void *opaque, hwaddr addr,
1ec9b909 1533 uint64_t val, unsigned size)
6658ffb8 1534{
1ec9b909
AK
1535 check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_WRITE);
1536 switch (size) {
67364150
MF
1537 case 1:
1538 stb_phys(addr, val);
1539 break;
1540 case 2:
1541 stw_phys(addr, val);
1542 break;
1543 case 4:
1544 stl_phys(addr, val);
1545 break;
1ec9b909
AK
1546 default: abort();
1547 }
6658ffb8
PB
1548}
1549
1ec9b909
AK
1550static const MemoryRegionOps watch_mem_ops = {
1551 .read = watch_mem_read,
1552 .write = watch_mem_write,
1553 .endianness = DEVICE_NATIVE_ENDIAN,
6658ffb8 1554};
6658ffb8 1555
a8170e5e 1556static uint64_t subpage_read(void *opaque, hwaddr addr,
70c68e44 1557 unsigned len)
db7b5426 1558{
70c68e44 1559 subpage_t *mmio = opaque;
f6405247 1560 unsigned int idx = SUBPAGE_IDX(addr);
5312bd8b 1561 MemoryRegionSection *section;
db7b5426
BS
1562#if defined(DEBUG_SUBPAGE)
1563 printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d\n", __func__,
1564 mmio, len, addr, idx);
1565#endif
db7b5426 1566
5312bd8b
AK
1567 section = &phys_sections[mmio->sub_section[idx]];
1568 addr += mmio->base;
1569 addr -= section->offset_within_address_space;
1570 addr += section->offset_within_region;
37ec01d4 1571 return io_mem_read(section->mr, addr, len);
db7b5426
BS
1572}
1573
a8170e5e 1574static void subpage_write(void *opaque, hwaddr addr,
70c68e44 1575 uint64_t value, unsigned len)
db7b5426 1576{
70c68e44 1577 subpage_t *mmio = opaque;
f6405247 1578 unsigned int idx = SUBPAGE_IDX(addr);
5312bd8b 1579 MemoryRegionSection *section;
db7b5426 1580#if defined(DEBUG_SUBPAGE)
70c68e44
AK
1581 printf("%s: subpage %p len %d addr " TARGET_FMT_plx
1582 " idx %d value %"PRIx64"\n",
f6405247 1583 __func__, mmio, len, addr, idx, value);
db7b5426 1584#endif
f6405247 1585
5312bd8b
AK
1586 section = &phys_sections[mmio->sub_section[idx]];
1587 addr += mmio->base;
1588 addr -= section->offset_within_address_space;
1589 addr += section->offset_within_region;
37ec01d4 1590 io_mem_write(section->mr, addr, value, len);
db7b5426
BS
1591}
1592
70c68e44
AK
1593static const MemoryRegionOps subpage_ops = {
1594 .read = subpage_read,
1595 .write = subpage_write,
1596 .endianness = DEVICE_NATIVE_ENDIAN,
db7b5426
BS
1597};
1598
a8170e5e 1599static uint64_t subpage_ram_read(void *opaque, hwaddr addr,
de712f94 1600 unsigned size)
56384e8b
AF
1601{
1602 ram_addr_t raddr = addr;
1603 void *ptr = qemu_get_ram_ptr(raddr);
de712f94
AK
1604 switch (size) {
1605 case 1: return ldub_p(ptr);
1606 case 2: return lduw_p(ptr);
1607 case 4: return ldl_p(ptr);
1608 default: abort();
1609 }
56384e8b
AF
1610}
1611
a8170e5e 1612static void subpage_ram_write(void *opaque, hwaddr addr,
de712f94 1613 uint64_t value, unsigned size)
56384e8b
AF
1614{
1615 ram_addr_t raddr = addr;
1616 void *ptr = qemu_get_ram_ptr(raddr);
de712f94
AK
1617 switch (size) {
1618 case 1: return stb_p(ptr, value);
1619 case 2: return stw_p(ptr, value);
1620 case 4: return stl_p(ptr, value);
1621 default: abort();
1622 }
56384e8b
AF
1623}
1624
de712f94
AK
1625static const MemoryRegionOps subpage_ram_ops = {
1626 .read = subpage_ram_read,
1627 .write = subpage_ram_write,
1628 .endianness = DEVICE_NATIVE_ENDIAN,
56384e8b
AF
1629};
1630
c227f099 1631static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
5312bd8b 1632 uint16_t section)
db7b5426
BS
1633{
1634 int idx, eidx;
1635
1636 if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE)
1637 return -1;
1638 idx = SUBPAGE_IDX(start);
1639 eidx = SUBPAGE_IDX(end);
1640#if defined(DEBUG_SUBPAGE)
0bf9e31a 1641 printf("%s: %p start %08x end %08x idx %08x eidx %08x mem %ld\n", __func__,
db7b5426
BS
1642 mmio, start, end, idx, eidx, memory);
1643#endif
5312bd8b
AK
1644 if (memory_region_is_ram(phys_sections[section].mr)) {
1645 MemoryRegionSection new_section = phys_sections[section];
1646 new_section.mr = &io_mem_subpage_ram;
1647 section = phys_section_add(&new_section);
56384e8b 1648 }
db7b5426 1649 for (; idx <= eidx; idx++) {
5312bd8b 1650 mmio->sub_section[idx] = section;
db7b5426
BS
1651 }
1652
1653 return 0;
1654}
1655
a8170e5e 1656static subpage_t *subpage_init(hwaddr base)
db7b5426 1657{
c227f099 1658 subpage_t *mmio;
db7b5426 1659
7267c094 1660 mmio = g_malloc0(sizeof(subpage_t));
1eec614b
AL
1661
1662 mmio->base = base;
70c68e44
AK
1663 memory_region_init_io(&mmio->iomem, &subpage_ops, mmio,
1664 "subpage", TARGET_PAGE_SIZE);
b3b00c78 1665 mmio->iomem.subpage = true;
db7b5426 1666#if defined(DEBUG_SUBPAGE)
1eec614b
AL
1667 printf("%s: %p base " TARGET_FMT_plx " len %08x %d\n", __func__,
1668 mmio, base, TARGET_PAGE_SIZE, subpage_memory);
db7b5426 1669#endif
0f0cb164 1670 subpage_register(mmio, 0, TARGET_PAGE_SIZE-1, phys_section_unassigned);
db7b5426
BS
1671
1672 return mmio;
1673}
1674
5312bd8b
AK
1675static uint16_t dummy_section(MemoryRegion *mr)
1676{
1677 MemoryRegionSection section = {
1678 .mr = mr,
1679 .offset_within_address_space = 0,
1680 .offset_within_region = 0,
1681 .size = UINT64_MAX,
1682 };
1683
1684 return phys_section_add(&section);
1685}
1686
a8170e5e 1687MemoryRegion *iotlb_to_region(hwaddr index)
aa102231 1688{
37ec01d4 1689 return phys_sections[index & ~TARGET_PAGE_MASK].mr;
aa102231
AK
1690}
1691
e9179ce1
AK
1692static void io_mem_init(void)
1693{
0e0df1e2 1694 memory_region_init_io(&io_mem_ram, &error_mem_ops, NULL, "ram", UINT64_MAX);
0e0df1e2
AK
1695 memory_region_init_io(&io_mem_rom, &rom_mem_ops, NULL, "rom", UINT64_MAX);
1696 memory_region_init_io(&io_mem_unassigned, &unassigned_mem_ops, NULL,
1697 "unassigned", UINT64_MAX);
1698 memory_region_init_io(&io_mem_notdirty, &notdirty_mem_ops, NULL,
1699 "notdirty", UINT64_MAX);
de712f94
AK
1700 memory_region_init_io(&io_mem_subpage_ram, &subpage_ram_ops, NULL,
1701 "subpage-ram", UINT64_MAX);
1ec9b909
AK
1702 memory_region_init_io(&io_mem_watch, &watch_mem_ops, NULL,
1703 "watch", UINT64_MAX);
e9179ce1
AK
1704}
1705
ac1970fb
AK
1706static void mem_begin(MemoryListener *listener)
1707{
1708 AddressSpaceDispatch *d = container_of(listener, AddressSpaceDispatch, listener);
1709
1710 destroy_all_mappings(d);
1711 d->phys_map.ptr = PHYS_MAP_NODE_NIL;
1712}
1713
50c1e149
AK
1714static void core_begin(MemoryListener *listener)
1715{
5312bd8b
AK
1716 phys_sections_clear();
1717 phys_section_unassigned = dummy_section(&io_mem_unassigned);
aa102231
AK
1718 phys_section_notdirty = dummy_section(&io_mem_notdirty);
1719 phys_section_rom = dummy_section(&io_mem_rom);
1720 phys_section_watch = dummy_section(&io_mem_watch);
50c1e149
AK
1721}
1722
1d71148e 1723static void tcg_commit(MemoryListener *listener)
50c1e149 1724{
9349b4f9 1725 CPUArchState *env;
117712c3
AK
1726
1727 /* since each CPU stores ram addresses in its TLB cache, we must
1728 reset the modified entries */
1729 /* XXX: slow ! */
1730 for(env = first_cpu; env != NULL; env = env->next_cpu) {
1731 tlb_flush(env, 1);
1732 }
50c1e149
AK
1733}
1734
93632747
AK
1735static void core_log_global_start(MemoryListener *listener)
1736{
1737 cpu_physical_memory_set_dirty_tracking(1);
1738}
1739
1740static void core_log_global_stop(MemoryListener *listener)
1741{
1742 cpu_physical_memory_set_dirty_tracking(0);
1743}
1744
4855d41a
AK
1745static void io_region_add(MemoryListener *listener,
1746 MemoryRegionSection *section)
1747{
a2d33521
AK
1748 MemoryRegionIORange *mrio = g_new(MemoryRegionIORange, 1);
1749
1750 mrio->mr = section->mr;
1751 mrio->offset = section->offset_within_region;
1752 iorange_init(&mrio->iorange, &memory_region_iorange_ops,
4855d41a 1753 section->offset_within_address_space, section->size);
a2d33521 1754 ioport_register(&mrio->iorange);
4855d41a
AK
1755}
1756
1757static void io_region_del(MemoryListener *listener,
1758 MemoryRegionSection *section)
1759{
1760 isa_unassign_ioport(section->offset_within_address_space, section->size);
1761}
1762
93632747 1763static MemoryListener core_memory_listener = {
50c1e149 1764 .begin = core_begin,
93632747
AK
1765 .log_global_start = core_log_global_start,
1766 .log_global_stop = core_log_global_stop,
ac1970fb 1767 .priority = 1,
93632747
AK
1768};
1769
4855d41a
AK
1770static MemoryListener io_memory_listener = {
1771 .region_add = io_region_add,
1772 .region_del = io_region_del,
4855d41a
AK
1773 .priority = 0,
1774};
1775
1d71148e
AK
1776static MemoryListener tcg_memory_listener = {
1777 .commit = tcg_commit,
1778};
1779
ac1970fb
AK
1780void address_space_init_dispatch(AddressSpace *as)
1781{
1782 AddressSpaceDispatch *d = g_new(AddressSpaceDispatch, 1);
1783
1784 d->phys_map = (PhysPageEntry) { .ptr = PHYS_MAP_NODE_NIL, .is_leaf = 0 };
1785 d->listener = (MemoryListener) {
1786 .begin = mem_begin,
1787 .region_add = mem_add,
1788 .region_nop = mem_add,
1789 .priority = 0,
1790 };
1791 as->dispatch = d;
1792 memory_listener_register(&d->listener, as);
1793}
1794
83f3c251
AK
1795void address_space_destroy_dispatch(AddressSpace *as)
1796{
1797 AddressSpaceDispatch *d = as->dispatch;
1798
1799 memory_listener_unregister(&d->listener);
1800 destroy_l2_mapping(&d->phys_map, P_L2_LEVELS - 1);
1801 g_free(d);
1802 as->dispatch = NULL;
1803}
1804
62152b8a
AK
1805static void memory_map_init(void)
1806{
7267c094 1807 system_memory = g_malloc(sizeof(*system_memory));
8417cebf 1808 memory_region_init(system_memory, "system", INT64_MAX);
2673a5da
AK
1809 address_space_init(&address_space_memory, system_memory);
1810 address_space_memory.name = "memory";
309cb471 1811
7267c094 1812 system_io = g_malloc(sizeof(*system_io));
309cb471 1813 memory_region_init(system_io, "io", 65536);
2673a5da
AK
1814 address_space_init(&address_space_io, system_io);
1815 address_space_io.name = "I/O";
93632747 1816
f6790af6
AK
1817 memory_listener_register(&core_memory_listener, &address_space_memory);
1818 memory_listener_register(&io_memory_listener, &address_space_io);
1819 memory_listener_register(&tcg_memory_listener, &address_space_memory);
9e11908f
PM
1820
1821 dma_context_init(&dma_context_memory, &address_space_memory,
1822 NULL, NULL, NULL);
62152b8a
AK
1823}
1824
1825MemoryRegion *get_system_memory(void)
1826{
1827 return system_memory;
1828}
1829
309cb471
AK
1830MemoryRegion *get_system_io(void)
1831{
1832 return system_io;
1833}
1834
e2eef170
PB
1835#endif /* !defined(CONFIG_USER_ONLY) */
1836
13eb76e0
FB
1837/* physical memory access (slow version, mainly for debug) */
1838#if defined(CONFIG_USER_ONLY)
9349b4f9 1839int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr,
a68fe89c 1840 uint8_t *buf, int len, int is_write)
13eb76e0
FB
1841{
1842 int l, flags;
1843 target_ulong page;
53a5960a 1844 void * p;
13eb76e0
FB
1845
1846 while (len > 0) {
1847 page = addr & TARGET_PAGE_MASK;
1848 l = (page + TARGET_PAGE_SIZE) - addr;
1849 if (l > len)
1850 l = len;
1851 flags = page_get_flags(page);
1852 if (!(flags & PAGE_VALID))
a68fe89c 1853 return -1;
13eb76e0
FB
1854 if (is_write) {
1855 if (!(flags & PAGE_WRITE))
a68fe89c 1856 return -1;
579a97f7 1857 /* XXX: this code should not depend on lock_user */
72fb7daa 1858 if (!(p = lock_user(VERIFY_WRITE, addr, l, 0)))
a68fe89c 1859 return -1;
72fb7daa
AJ
1860 memcpy(p, buf, l);
1861 unlock_user(p, addr, l);
13eb76e0
FB
1862 } else {
1863 if (!(flags & PAGE_READ))
a68fe89c 1864 return -1;
579a97f7 1865 /* XXX: this code should not depend on lock_user */
72fb7daa 1866 if (!(p = lock_user(VERIFY_READ, addr, l, 1)))
a68fe89c 1867 return -1;
72fb7daa 1868 memcpy(buf, p, l);
5b257578 1869 unlock_user(p, addr, 0);
13eb76e0
FB
1870 }
1871 len -= l;
1872 buf += l;
1873 addr += l;
1874 }
a68fe89c 1875 return 0;
13eb76e0 1876}
8df1cd07 1877
13eb76e0 1878#else
51d7a9eb 1879
a8170e5e
AK
1880static void invalidate_and_set_dirty(hwaddr addr,
1881 hwaddr length)
51d7a9eb
AP
1882{
1883 if (!cpu_physical_memory_is_dirty(addr)) {
1884 /* invalidate code */
1885 tb_invalidate_phys_page_range(addr, addr + length, 0);
1886 /* set dirty bit */
1887 cpu_physical_memory_set_dirty_flags(addr, (0xff & ~CODE_DIRTY_FLAG));
1888 }
e226939d 1889 xen_modified_memory(addr, length);
51d7a9eb
AP
1890}
1891
a8170e5e 1892void address_space_rw(AddressSpace *as, hwaddr addr, uint8_t *buf,
ac1970fb 1893 int len, bool is_write)
13eb76e0 1894{
ac1970fb 1895 AddressSpaceDispatch *d = as->dispatch;
37ec01d4 1896 int l;
13eb76e0
FB
1897 uint8_t *ptr;
1898 uint32_t val;
a8170e5e 1899 hwaddr page;
f3705d53 1900 MemoryRegionSection *section;
3b46e624 1901
13eb76e0
FB
1902 while (len > 0) {
1903 page = addr & TARGET_PAGE_MASK;
1904 l = (page + TARGET_PAGE_SIZE) - addr;
1905 if (l > len)
1906 l = len;
ac1970fb 1907 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
3b46e624 1908
13eb76e0 1909 if (is_write) {
f3705d53 1910 if (!memory_region_is_ram(section->mr)) {
a8170e5e 1911 hwaddr addr1;
cc5bea60 1912 addr1 = memory_region_section_addr(section, addr);
6a00d601
FB
1913 /* XXX: could force cpu_single_env to NULL to avoid
1914 potential bugs */
6c2934db 1915 if (l >= 4 && ((addr1 & 3) == 0)) {
1c213d19 1916 /* 32 bit write access */
c27004ec 1917 val = ldl_p(buf);
37ec01d4 1918 io_mem_write(section->mr, addr1, val, 4);
13eb76e0 1919 l = 4;
6c2934db 1920 } else if (l >= 2 && ((addr1 & 1) == 0)) {
1c213d19 1921 /* 16 bit write access */
c27004ec 1922 val = lduw_p(buf);
37ec01d4 1923 io_mem_write(section->mr, addr1, val, 2);
13eb76e0
FB
1924 l = 2;
1925 } else {
1c213d19 1926 /* 8 bit write access */
c27004ec 1927 val = ldub_p(buf);
37ec01d4 1928 io_mem_write(section->mr, addr1, val, 1);
13eb76e0
FB
1929 l = 1;
1930 }
f3705d53 1931 } else if (!section->readonly) {
8ca5692d 1932 ram_addr_t addr1;
f3705d53 1933 addr1 = memory_region_get_ram_addr(section->mr)
cc5bea60 1934 + memory_region_section_addr(section, addr);
13eb76e0 1935 /* RAM case */
5579c7f3 1936 ptr = qemu_get_ram_ptr(addr1);
13eb76e0 1937 memcpy(ptr, buf, l);
51d7a9eb 1938 invalidate_and_set_dirty(addr1, l);
13eb76e0
FB
1939 }
1940 } else {
cc5bea60
BS
1941 if (!(memory_region_is_ram(section->mr) ||
1942 memory_region_is_romd(section->mr))) {
a8170e5e 1943 hwaddr addr1;
13eb76e0 1944 /* I/O case */
cc5bea60 1945 addr1 = memory_region_section_addr(section, addr);
6c2934db 1946 if (l >= 4 && ((addr1 & 3) == 0)) {
13eb76e0 1947 /* 32 bit read access */
37ec01d4 1948 val = io_mem_read(section->mr, addr1, 4);
c27004ec 1949 stl_p(buf, val);
13eb76e0 1950 l = 4;
6c2934db 1951 } else if (l >= 2 && ((addr1 & 1) == 0)) {
13eb76e0 1952 /* 16 bit read access */
37ec01d4 1953 val = io_mem_read(section->mr, addr1, 2);
c27004ec 1954 stw_p(buf, val);
13eb76e0
FB
1955 l = 2;
1956 } else {
1c213d19 1957 /* 8 bit read access */
37ec01d4 1958 val = io_mem_read(section->mr, addr1, 1);
c27004ec 1959 stb_p(buf, val);
13eb76e0
FB
1960 l = 1;
1961 }
1962 } else {
1963 /* RAM case */
0a1b357f 1964 ptr = qemu_get_ram_ptr(section->mr->ram_addr
cc5bea60
BS
1965 + memory_region_section_addr(section,
1966 addr));
f3705d53 1967 memcpy(buf, ptr, l);
13eb76e0
FB
1968 }
1969 }
1970 len -= l;
1971 buf += l;
1972 addr += l;
1973 }
1974}
8df1cd07 1975
a8170e5e 1976void address_space_write(AddressSpace *as, hwaddr addr,
ac1970fb
AK
1977 const uint8_t *buf, int len)
1978{
1979 address_space_rw(as, addr, (uint8_t *)buf, len, true);
1980}
1981
1982/**
1983 * address_space_read: read from an address space.
1984 *
1985 * @as: #AddressSpace to be accessed
1986 * @addr: address within that address space
1987 * @buf: buffer with the data transferred
1988 */
a8170e5e 1989void address_space_read(AddressSpace *as, hwaddr addr, uint8_t *buf, int len)
ac1970fb
AK
1990{
1991 address_space_rw(as, addr, buf, len, false);
1992}
1993
1994
a8170e5e 1995void cpu_physical_memory_rw(hwaddr addr, uint8_t *buf,
ac1970fb
AK
1996 int len, int is_write)
1997{
1998 return address_space_rw(&address_space_memory, addr, buf, len, is_write);
1999}
2000
d0ecd2aa 2001/* used for ROM loading : can write in RAM and ROM */
a8170e5e 2002void cpu_physical_memory_write_rom(hwaddr addr,
d0ecd2aa
FB
2003 const uint8_t *buf, int len)
2004{
ac1970fb 2005 AddressSpaceDispatch *d = address_space_memory.dispatch;
d0ecd2aa
FB
2006 int l;
2007 uint8_t *ptr;
a8170e5e 2008 hwaddr page;
f3705d53 2009 MemoryRegionSection *section;
3b46e624 2010
d0ecd2aa
FB
2011 while (len > 0) {
2012 page = addr & TARGET_PAGE_MASK;
2013 l = (page + TARGET_PAGE_SIZE) - addr;
2014 if (l > len)
2015 l = len;
ac1970fb 2016 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
3b46e624 2017
cc5bea60
BS
2018 if (!(memory_region_is_ram(section->mr) ||
2019 memory_region_is_romd(section->mr))) {
d0ecd2aa
FB
2020 /* do nothing */
2021 } else {
2022 unsigned long addr1;
f3705d53 2023 addr1 = memory_region_get_ram_addr(section->mr)
cc5bea60 2024 + memory_region_section_addr(section, addr);
d0ecd2aa 2025 /* ROM/RAM case */
5579c7f3 2026 ptr = qemu_get_ram_ptr(addr1);
d0ecd2aa 2027 memcpy(ptr, buf, l);
51d7a9eb 2028 invalidate_and_set_dirty(addr1, l);
d0ecd2aa
FB
2029 }
2030 len -= l;
2031 buf += l;
2032 addr += l;
2033 }
2034}
2035
6d16c2f8
AL
2036typedef struct {
2037 void *buffer;
a8170e5e
AK
2038 hwaddr addr;
2039 hwaddr len;
6d16c2f8
AL
2040} BounceBuffer;
2041
2042static BounceBuffer bounce;
2043
ba223c29
AL
2044typedef struct MapClient {
2045 void *opaque;
2046 void (*callback)(void *opaque);
72cf2d4f 2047 QLIST_ENTRY(MapClient) link;
ba223c29
AL
2048} MapClient;
2049
72cf2d4f
BS
2050static QLIST_HEAD(map_client_list, MapClient) map_client_list
2051 = QLIST_HEAD_INITIALIZER(map_client_list);
ba223c29
AL
2052
2053void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque))
2054{
7267c094 2055 MapClient *client = g_malloc(sizeof(*client));
ba223c29
AL
2056
2057 client->opaque = opaque;
2058 client->callback = callback;
72cf2d4f 2059 QLIST_INSERT_HEAD(&map_client_list, client, link);
ba223c29
AL
2060 return client;
2061}
2062
8b9c99d9 2063static void cpu_unregister_map_client(void *_client)
ba223c29
AL
2064{
2065 MapClient *client = (MapClient *)_client;
2066
72cf2d4f 2067 QLIST_REMOVE(client, link);
7267c094 2068 g_free(client);
ba223c29
AL
2069}
2070
2071static void cpu_notify_map_clients(void)
2072{
2073 MapClient *client;
2074
72cf2d4f
BS
2075 while (!QLIST_EMPTY(&map_client_list)) {
2076 client = QLIST_FIRST(&map_client_list);
ba223c29 2077 client->callback(client->opaque);
34d5e948 2078 cpu_unregister_map_client(client);
ba223c29
AL
2079 }
2080}
2081
6d16c2f8
AL
2082/* Map a physical memory region into a host virtual address.
2083 * May map a subset of the requested range, given by and returned in *plen.
2084 * May return NULL if resources needed to perform the mapping are exhausted.
2085 * Use only for reads OR writes - not for read-modify-write operations.
ba223c29
AL
2086 * Use cpu_register_map_client() to know when retrying the map operation is
2087 * likely to succeed.
6d16c2f8 2088 */
ac1970fb 2089void *address_space_map(AddressSpace *as,
a8170e5e
AK
2090 hwaddr addr,
2091 hwaddr *plen,
ac1970fb 2092 bool is_write)
6d16c2f8 2093{
ac1970fb 2094 AddressSpaceDispatch *d = as->dispatch;
a8170e5e
AK
2095 hwaddr len = *plen;
2096 hwaddr todo = 0;
6d16c2f8 2097 int l;
a8170e5e 2098 hwaddr page;
f3705d53 2099 MemoryRegionSection *section;
f15fbc4b 2100 ram_addr_t raddr = RAM_ADDR_MAX;
8ab934f9
SS
2101 ram_addr_t rlen;
2102 void *ret;
6d16c2f8
AL
2103
2104 while (len > 0) {
2105 page = addr & TARGET_PAGE_MASK;
2106 l = (page + TARGET_PAGE_SIZE) - addr;
2107 if (l > len)
2108 l = len;
ac1970fb 2109 section = phys_page_find(d, page >> TARGET_PAGE_BITS);
6d16c2f8 2110
f3705d53 2111 if (!(memory_region_is_ram(section->mr) && !section->readonly)) {
38bee5dc 2112 if (todo || bounce.buffer) {
6d16c2f8
AL
2113 break;
2114 }
2115 bounce.buffer = qemu_memalign(TARGET_PAGE_SIZE, TARGET_PAGE_SIZE);
2116 bounce.addr = addr;
2117 bounce.len = l;
2118 if (!is_write) {
ac1970fb 2119 address_space_read(as, addr, bounce.buffer, l);
6d16c2f8 2120 }
38bee5dc
SS
2121
2122 *plen = l;
2123 return bounce.buffer;
6d16c2f8 2124 }
8ab934f9 2125 if (!todo) {
f3705d53 2126 raddr = memory_region_get_ram_addr(section->mr)
cc5bea60 2127 + memory_region_section_addr(section, addr);
8ab934f9 2128 }
6d16c2f8
AL
2129
2130 len -= l;
2131 addr += l;
38bee5dc 2132 todo += l;
6d16c2f8 2133 }
8ab934f9
SS
2134 rlen = todo;
2135 ret = qemu_ram_ptr_length(raddr, &rlen);
2136 *plen = rlen;
2137 return ret;
6d16c2f8
AL
2138}
2139
ac1970fb 2140/* Unmaps a memory region previously mapped by address_space_map().
6d16c2f8
AL
2141 * Will also mark the memory as dirty if is_write == 1. access_len gives
2142 * the amount of memory that was actually read or written by the caller.
2143 */
a8170e5e
AK
2144void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
2145 int is_write, hwaddr access_len)
6d16c2f8
AL
2146{
2147 if (buffer != bounce.buffer) {
2148 if (is_write) {
e890261f 2149 ram_addr_t addr1 = qemu_ram_addr_from_host_nofail(buffer);
6d16c2f8
AL
2150 while (access_len) {
2151 unsigned l;
2152 l = TARGET_PAGE_SIZE;
2153 if (l > access_len)
2154 l = access_len;
51d7a9eb 2155 invalidate_and_set_dirty(addr1, l);
6d16c2f8
AL
2156 addr1 += l;
2157 access_len -= l;
2158 }
2159 }
868bb33f 2160 if (xen_enabled()) {
e41d7c69 2161 xen_invalidate_map_cache_entry(buffer);
050a0ddf 2162 }
6d16c2f8
AL
2163 return;
2164 }
2165 if (is_write) {
ac1970fb 2166 address_space_write(as, bounce.addr, bounce.buffer, access_len);
6d16c2f8 2167 }
f8a83245 2168 qemu_vfree(bounce.buffer);
6d16c2f8 2169 bounce.buffer = NULL;
ba223c29 2170 cpu_notify_map_clients();
6d16c2f8 2171}
d0ecd2aa 2172
a8170e5e
AK
2173void *cpu_physical_memory_map(hwaddr addr,
2174 hwaddr *plen,
ac1970fb
AK
2175 int is_write)
2176{
2177 return address_space_map(&address_space_memory, addr, plen, is_write);
2178}
2179
a8170e5e
AK
2180void cpu_physical_memory_unmap(void *buffer, hwaddr len,
2181 int is_write, hwaddr access_len)
ac1970fb
AK
2182{
2183 return address_space_unmap(&address_space_memory, buffer, len, is_write, access_len);
2184}
2185
8df1cd07 2186/* warning: addr must be aligned */
a8170e5e 2187static inline uint32_t ldl_phys_internal(hwaddr addr,
1e78bcc1 2188 enum device_endian endian)
8df1cd07 2189{
8df1cd07
FB
2190 uint8_t *ptr;
2191 uint32_t val;
f3705d53 2192 MemoryRegionSection *section;
8df1cd07 2193
ac1970fb 2194 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
3b46e624 2195
cc5bea60
BS
2196 if (!(memory_region_is_ram(section->mr) ||
2197 memory_region_is_romd(section->mr))) {
8df1cd07 2198 /* I/O case */
cc5bea60 2199 addr = memory_region_section_addr(section, addr);
37ec01d4 2200 val = io_mem_read(section->mr, addr, 4);
1e78bcc1
AG
2201#if defined(TARGET_WORDS_BIGENDIAN)
2202 if (endian == DEVICE_LITTLE_ENDIAN) {
2203 val = bswap32(val);
2204 }
2205#else
2206 if (endian == DEVICE_BIG_ENDIAN) {
2207 val = bswap32(val);
2208 }
2209#endif
8df1cd07
FB
2210 } else {
2211 /* RAM case */
f3705d53 2212 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
06ef3525 2213 & TARGET_PAGE_MASK)
cc5bea60 2214 + memory_region_section_addr(section, addr));
1e78bcc1
AG
2215 switch (endian) {
2216 case DEVICE_LITTLE_ENDIAN:
2217 val = ldl_le_p(ptr);
2218 break;
2219 case DEVICE_BIG_ENDIAN:
2220 val = ldl_be_p(ptr);
2221 break;
2222 default:
2223 val = ldl_p(ptr);
2224 break;
2225 }
8df1cd07
FB
2226 }
2227 return val;
2228}
2229
a8170e5e 2230uint32_t ldl_phys(hwaddr addr)
1e78bcc1
AG
2231{
2232 return ldl_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2233}
2234
a8170e5e 2235uint32_t ldl_le_phys(hwaddr addr)
1e78bcc1
AG
2236{
2237 return ldl_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2238}
2239
a8170e5e 2240uint32_t ldl_be_phys(hwaddr addr)
1e78bcc1
AG
2241{
2242 return ldl_phys_internal(addr, DEVICE_BIG_ENDIAN);
2243}
2244
84b7b8e7 2245/* warning: addr must be aligned */
a8170e5e 2246static inline uint64_t ldq_phys_internal(hwaddr addr,
1e78bcc1 2247 enum device_endian endian)
84b7b8e7 2248{
84b7b8e7
FB
2249 uint8_t *ptr;
2250 uint64_t val;
f3705d53 2251 MemoryRegionSection *section;
84b7b8e7 2252
ac1970fb 2253 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
3b46e624 2254
cc5bea60
BS
2255 if (!(memory_region_is_ram(section->mr) ||
2256 memory_region_is_romd(section->mr))) {
84b7b8e7 2257 /* I/O case */
cc5bea60 2258 addr = memory_region_section_addr(section, addr);
1e78bcc1
AG
2259
2260 /* XXX This is broken when device endian != cpu endian.
2261 Fix and add "endian" variable check */
84b7b8e7 2262#ifdef TARGET_WORDS_BIGENDIAN
37ec01d4
AK
2263 val = io_mem_read(section->mr, addr, 4) << 32;
2264 val |= io_mem_read(section->mr, addr + 4, 4);
84b7b8e7 2265#else
37ec01d4
AK
2266 val = io_mem_read(section->mr, addr, 4);
2267 val |= io_mem_read(section->mr, addr + 4, 4) << 32;
84b7b8e7
FB
2268#endif
2269 } else {
2270 /* RAM case */
f3705d53 2271 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
06ef3525 2272 & TARGET_PAGE_MASK)
cc5bea60 2273 + memory_region_section_addr(section, addr));
1e78bcc1
AG
2274 switch (endian) {
2275 case DEVICE_LITTLE_ENDIAN:
2276 val = ldq_le_p(ptr);
2277 break;
2278 case DEVICE_BIG_ENDIAN:
2279 val = ldq_be_p(ptr);
2280 break;
2281 default:
2282 val = ldq_p(ptr);
2283 break;
2284 }
84b7b8e7
FB
2285 }
2286 return val;
2287}
2288
a8170e5e 2289uint64_t ldq_phys(hwaddr addr)
1e78bcc1
AG
2290{
2291 return ldq_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2292}
2293
a8170e5e 2294uint64_t ldq_le_phys(hwaddr addr)
1e78bcc1
AG
2295{
2296 return ldq_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2297}
2298
a8170e5e 2299uint64_t ldq_be_phys(hwaddr addr)
1e78bcc1
AG
2300{
2301 return ldq_phys_internal(addr, DEVICE_BIG_ENDIAN);
2302}
2303
aab33094 2304/* XXX: optimize */
a8170e5e 2305uint32_t ldub_phys(hwaddr addr)
aab33094
FB
2306{
2307 uint8_t val;
2308 cpu_physical_memory_read(addr, &val, 1);
2309 return val;
2310}
2311
733f0b02 2312/* warning: addr must be aligned */
a8170e5e 2313static inline uint32_t lduw_phys_internal(hwaddr addr,
1e78bcc1 2314 enum device_endian endian)
aab33094 2315{
733f0b02
MT
2316 uint8_t *ptr;
2317 uint64_t val;
f3705d53 2318 MemoryRegionSection *section;
733f0b02 2319
ac1970fb 2320 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
733f0b02 2321
cc5bea60
BS
2322 if (!(memory_region_is_ram(section->mr) ||
2323 memory_region_is_romd(section->mr))) {
733f0b02 2324 /* I/O case */
cc5bea60 2325 addr = memory_region_section_addr(section, addr);
37ec01d4 2326 val = io_mem_read(section->mr, addr, 2);
1e78bcc1
AG
2327#if defined(TARGET_WORDS_BIGENDIAN)
2328 if (endian == DEVICE_LITTLE_ENDIAN) {
2329 val = bswap16(val);
2330 }
2331#else
2332 if (endian == DEVICE_BIG_ENDIAN) {
2333 val = bswap16(val);
2334 }
2335#endif
733f0b02
MT
2336 } else {
2337 /* RAM case */
f3705d53 2338 ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr)
06ef3525 2339 & TARGET_PAGE_MASK)
cc5bea60 2340 + memory_region_section_addr(section, addr));
1e78bcc1
AG
2341 switch (endian) {
2342 case DEVICE_LITTLE_ENDIAN:
2343 val = lduw_le_p(ptr);
2344 break;
2345 case DEVICE_BIG_ENDIAN:
2346 val = lduw_be_p(ptr);
2347 break;
2348 default:
2349 val = lduw_p(ptr);
2350 break;
2351 }
733f0b02
MT
2352 }
2353 return val;
aab33094
FB
2354}
2355
a8170e5e 2356uint32_t lduw_phys(hwaddr addr)
1e78bcc1
AG
2357{
2358 return lduw_phys_internal(addr, DEVICE_NATIVE_ENDIAN);
2359}
2360
a8170e5e 2361uint32_t lduw_le_phys(hwaddr addr)
1e78bcc1
AG
2362{
2363 return lduw_phys_internal(addr, DEVICE_LITTLE_ENDIAN);
2364}
2365
a8170e5e 2366uint32_t lduw_be_phys(hwaddr addr)
1e78bcc1
AG
2367{
2368 return lduw_phys_internal(addr, DEVICE_BIG_ENDIAN);
2369}
2370
8df1cd07
FB
2371/* warning: addr must be aligned. The ram page is not masked as dirty
2372 and the code inside is not invalidated. It is useful if the dirty
2373 bits are used to track modified PTEs */
a8170e5e 2374void stl_phys_notdirty(hwaddr addr, uint32_t val)
8df1cd07 2375{
8df1cd07 2376 uint8_t *ptr;
f3705d53 2377 MemoryRegionSection *section;
8df1cd07 2378
ac1970fb 2379 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
3b46e624 2380
f3705d53 2381 if (!memory_region_is_ram(section->mr) || section->readonly) {
cc5bea60 2382 addr = memory_region_section_addr(section, addr);
f3705d53 2383 if (memory_region_is_ram(section->mr)) {
37ec01d4 2384 section = &phys_sections[phys_section_rom];
06ef3525 2385 }
37ec01d4 2386 io_mem_write(section->mr, addr, val, 4);
8df1cd07 2387 } else {
f3705d53 2388 unsigned long addr1 = (memory_region_get_ram_addr(section->mr)
06ef3525 2389 & TARGET_PAGE_MASK)
cc5bea60 2390 + memory_region_section_addr(section, addr);
5579c7f3 2391 ptr = qemu_get_ram_ptr(addr1);
8df1cd07 2392 stl_p(ptr, val);
74576198
AL
2393
2394 if (unlikely(in_migration)) {
2395 if (!cpu_physical_memory_is_dirty(addr1)) {
2396 /* invalidate code */
2397 tb_invalidate_phys_page_range(addr1, addr1 + 4, 0);
2398 /* set dirty bit */
f7c11b53
YT
2399 cpu_physical_memory_set_dirty_flags(
2400 addr1, (0xff & ~CODE_DIRTY_FLAG));
74576198
AL
2401 }
2402 }
8df1cd07
FB
2403 }
2404}
2405
2406/* warning: addr must be aligned */
a8170e5e 2407static inline void stl_phys_internal(hwaddr addr, uint32_t val,
1e78bcc1 2408 enum device_endian endian)
8df1cd07 2409{
8df1cd07 2410 uint8_t *ptr;
f3705d53 2411 MemoryRegionSection *section;
8df1cd07 2412
ac1970fb 2413 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
3b46e624 2414
f3705d53 2415 if (!memory_region_is_ram(section->mr) || section->readonly) {
cc5bea60 2416 addr = memory_region_section_addr(section, addr);
f3705d53 2417 if (memory_region_is_ram(section->mr)) {
37ec01d4 2418 section = &phys_sections[phys_section_rom];
06ef3525 2419 }
1e78bcc1
AG
2420#if defined(TARGET_WORDS_BIGENDIAN)
2421 if (endian == DEVICE_LITTLE_ENDIAN) {
2422 val = bswap32(val);
2423 }
2424#else
2425 if (endian == DEVICE_BIG_ENDIAN) {
2426 val = bswap32(val);
2427 }
2428#endif
37ec01d4 2429 io_mem_write(section->mr, addr, val, 4);
8df1cd07
FB
2430 } else {
2431 unsigned long addr1;
f3705d53 2432 addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
cc5bea60 2433 + memory_region_section_addr(section, addr);
8df1cd07 2434 /* RAM case */
5579c7f3 2435 ptr = qemu_get_ram_ptr(addr1);
1e78bcc1
AG
2436 switch (endian) {
2437 case DEVICE_LITTLE_ENDIAN:
2438 stl_le_p(ptr, val);
2439 break;
2440 case DEVICE_BIG_ENDIAN:
2441 stl_be_p(ptr, val);
2442 break;
2443 default:
2444 stl_p(ptr, val);
2445 break;
2446 }
51d7a9eb 2447 invalidate_and_set_dirty(addr1, 4);
8df1cd07
FB
2448 }
2449}
2450
a8170e5e 2451void stl_phys(hwaddr addr, uint32_t val)
1e78bcc1
AG
2452{
2453 stl_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN);
2454}
2455
a8170e5e 2456void stl_le_phys(hwaddr addr, uint32_t val)
1e78bcc1
AG
2457{
2458 stl_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN);
2459}
2460
a8170e5e 2461void stl_be_phys(hwaddr addr, uint32_t val)
1e78bcc1
AG
2462{
2463 stl_phys_internal(addr, val, DEVICE_BIG_ENDIAN);
2464}
2465
aab33094 2466/* XXX: optimize */
a8170e5e 2467void stb_phys(hwaddr addr, uint32_t val)
aab33094
FB
2468{
2469 uint8_t v = val;
2470 cpu_physical_memory_write(addr, &v, 1);
2471}
2472
733f0b02 2473/* warning: addr must be aligned */
a8170e5e 2474static inline void stw_phys_internal(hwaddr addr, uint32_t val,
1e78bcc1 2475 enum device_endian endian)
aab33094 2476{
733f0b02 2477 uint8_t *ptr;
f3705d53 2478 MemoryRegionSection *section;
733f0b02 2479
ac1970fb 2480 section = phys_page_find(address_space_memory.dispatch, addr >> TARGET_PAGE_BITS);
733f0b02 2481
f3705d53 2482 if (!memory_region_is_ram(section->mr) || section->readonly) {
cc5bea60 2483 addr = memory_region_section_addr(section, addr);
f3705d53 2484 if (memory_region_is_ram(section->mr)) {
37ec01d4 2485 section = &phys_sections[phys_section_rom];
06ef3525 2486 }
1e78bcc1
AG
2487#if defined(TARGET_WORDS_BIGENDIAN)
2488 if (endian == DEVICE_LITTLE_ENDIAN) {
2489 val = bswap16(val);
2490 }
2491#else
2492 if (endian == DEVICE_BIG_ENDIAN) {
2493 val = bswap16(val);
2494 }
2495#endif
37ec01d4 2496 io_mem_write(section->mr, addr, val, 2);
733f0b02
MT
2497 } else {
2498 unsigned long addr1;
f3705d53 2499 addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
cc5bea60 2500 + memory_region_section_addr(section, addr);
733f0b02
MT
2501 /* RAM case */
2502 ptr = qemu_get_ram_ptr(addr1);
1e78bcc1
AG
2503 switch (endian) {
2504 case DEVICE_LITTLE_ENDIAN:
2505 stw_le_p(ptr, val);
2506 break;
2507 case DEVICE_BIG_ENDIAN:
2508 stw_be_p(ptr, val);
2509 break;
2510 default:
2511 stw_p(ptr, val);
2512 break;
2513 }
51d7a9eb 2514 invalidate_and_set_dirty(addr1, 2);
733f0b02 2515 }
aab33094
FB
2516}
2517
a8170e5e 2518void stw_phys(hwaddr addr, uint32_t val)
1e78bcc1
AG
2519{
2520 stw_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN);
2521}
2522
a8170e5e 2523void stw_le_phys(hwaddr addr, uint32_t val)
1e78bcc1
AG
2524{
2525 stw_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN);
2526}
2527
a8170e5e 2528void stw_be_phys(hwaddr addr, uint32_t val)
1e78bcc1
AG
2529{
2530 stw_phys_internal(addr, val, DEVICE_BIG_ENDIAN);
2531}
2532
aab33094 2533/* XXX: optimize */
a8170e5e 2534void stq_phys(hwaddr addr, uint64_t val)
aab33094
FB
2535{
2536 val = tswap64(val);
71d2b725 2537 cpu_physical_memory_write(addr, &val, 8);
aab33094
FB
2538}
2539
a8170e5e 2540void stq_le_phys(hwaddr addr, uint64_t val)
1e78bcc1
AG
2541{
2542 val = cpu_to_le64(val);
2543 cpu_physical_memory_write(addr, &val, 8);
2544}
2545
a8170e5e 2546void stq_be_phys(hwaddr addr, uint64_t val)
1e78bcc1
AG
2547{
2548 val = cpu_to_be64(val);
2549 cpu_physical_memory_write(addr, &val, 8);
2550}
2551
5e2972fd 2552/* virtual memory access for debug (includes writing to ROM) */
9349b4f9 2553int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr,
b448f2f3 2554 uint8_t *buf, int len, int is_write)
13eb76e0
FB
2555{
2556 int l;
a8170e5e 2557 hwaddr phys_addr;
9b3c35e0 2558 target_ulong page;
13eb76e0
FB
2559
2560 while (len > 0) {
2561 page = addr & TARGET_PAGE_MASK;
2562 phys_addr = cpu_get_phys_page_debug(env, page);
2563 /* if no physical page mapped, return an error */
2564 if (phys_addr == -1)
2565 return -1;
2566 l = (page + TARGET_PAGE_SIZE) - addr;
2567 if (l > len)
2568 l = len;
5e2972fd 2569 phys_addr += (addr & ~TARGET_PAGE_MASK);
5e2972fd
AL
2570 if (is_write)
2571 cpu_physical_memory_write_rom(phys_addr, buf, l);
2572 else
5e2972fd 2573 cpu_physical_memory_rw(phys_addr, buf, l, is_write);
13eb76e0
FB
2574 len -= l;
2575 buf += l;
2576 addr += l;
2577 }
2578 return 0;
2579}
a68fe89c 2580#endif
13eb76e0 2581
8e4a424b
BS
2582#if !defined(CONFIG_USER_ONLY)
2583
2584/*
2585 * A helper function for the _utterly broken_ virtio device model to find out if
2586 * it's running on a big endian machine. Don't do this at home kids!
2587 */
2588bool virtio_is_big_endian(void);
2589bool virtio_is_big_endian(void)
2590{
2591#if defined(TARGET_WORDS_BIGENDIAN)
2592 return true;
2593#else
2594 return false;
2595#endif
2596}
2597
2598#endif
2599
76f35538 2600#ifndef CONFIG_USER_ONLY
a8170e5e 2601bool cpu_physical_memory_is_io(hwaddr phys_addr)
76f35538
WC
2602{
2603 MemoryRegionSection *section;
2604
ac1970fb
AK
2605 section = phys_page_find(address_space_memory.dispatch,
2606 phys_addr >> TARGET_PAGE_BITS);
76f35538
WC
2607
2608 return !(memory_region_is_ram(section->mr) ||
2609 memory_region_is_romd(section->mr));
2610}
2611#endif