]> git.proxmox.com Git - qemu.git/blame - cpu-all.h
ppc bios
[qemu.git] / cpu-all.h
CommitLineData
5a9fdfec
FB
1/*
2 * defines common to all virtual CPUs
3 *
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
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef CPU_ALL_H
21#define CPU_ALL_H
22
0ac4bd56
FB
23#if defined(__arm__) || defined(__sparc__)
24#define WORDS_ALIGNED
25#endif
26
27/* some important defines:
28 *
29 * WORDS_ALIGNED : if defined, the host cpu can only make word aligned
30 * memory accesses.
31 *
32 * WORDS_BIGENDIAN : if defined, the host cpu is big endian and
33 * otherwise little endian.
34 *
35 * (TARGET_WORDS_ALIGNED : same for target cpu (not supported yet))
36 *
37 * TARGET_WORDS_BIGENDIAN : same for target cpu
38 */
39
f193c797
FB
40#include "bswap.h"
41
42#if defined(WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
43#define BSWAP_NEEDED
44#endif
45
46#ifdef BSWAP_NEEDED
47
48static inline uint16_t tswap16(uint16_t s)
49{
50 return bswap16(s);
51}
52
53static inline uint32_t tswap32(uint32_t s)
54{
55 return bswap32(s);
56}
57
58static inline uint64_t tswap64(uint64_t s)
59{
60 return bswap64(s);
61}
62
63static inline void tswap16s(uint16_t *s)
64{
65 *s = bswap16(*s);
66}
67
68static inline void tswap32s(uint32_t *s)
69{
70 *s = bswap32(*s);
71}
72
73static inline void tswap64s(uint64_t *s)
74{
75 *s = bswap64(*s);
76}
77
78#else
79
80static inline uint16_t tswap16(uint16_t s)
81{
82 return s;
83}
84
85static inline uint32_t tswap32(uint32_t s)
86{
87 return s;
88}
89
90static inline uint64_t tswap64(uint64_t s)
91{
92 return s;
93}
94
95static inline void tswap16s(uint16_t *s)
96{
97}
98
99static inline void tswap32s(uint32_t *s)
100{
101}
102
103static inline void tswap64s(uint64_t *s)
104{
105}
106
107#endif
108
109#if TARGET_LONG_SIZE == 4
110#define tswapl(s) tswap32(s)
111#define tswapls(s) tswap32s((uint32_t *)(s))
112#else
113#define tswapl(s) tswap64(s)
114#define tswapls(s) tswap64s((uint64_t *)(s))
115#endif
116
0ac4bd56
FB
117/* NOTE: arm is horrible as double 32 bit words are stored in big endian ! */
118typedef union {
119 double d;
120#if !defined(WORDS_BIGENDIAN) && !defined(__arm__)
121 struct {
122 uint32_t lower;
123 uint32_t upper;
124 } l;
125#else
126 struct {
127 uint32_t upper;
128 uint32_t lower;
129 } l;
130#endif
131 uint64_t ll;
132} CPU_DoubleU;
133
61382a50
FB
134/* CPU memory access without any memory or io remapping */
135
83d73968
FB
136/*
137 * the generic syntax for the memory accesses is:
138 *
139 * load: ld{type}{sign}{size}{endian}_{access_type}(ptr)
140 *
141 * store: st{type}{size}{endian}_{access_type}(ptr, val)
142 *
143 * type is:
144 * (empty): integer access
145 * f : float access
146 *
147 * sign is:
148 * (empty): for floats or 32 bit size
149 * u : unsigned
150 * s : signed
151 *
152 * size is:
153 * b: 8 bits
154 * w: 16 bits
155 * l: 32 bits
156 * q: 64 bits
157 *
158 * endian is:
159 * (empty): target cpu endianness or 8 bit access
160 * r : reversed target cpu endianness (not implemented yet)
161 * be : big endian (not implemented yet)
162 * le : little endian (not implemented yet)
163 *
164 * access_type is:
165 * raw : host memory access
166 * user : user mode access using soft MMU
167 * kernel : kernel mode access using soft MMU
168 */
61382a50 169static inline int ldub_raw(void *ptr)
5a9fdfec
FB
170{
171 return *(uint8_t *)ptr;
172}
173
61382a50 174static inline int ldsb_raw(void *ptr)
5a9fdfec
FB
175{
176 return *(int8_t *)ptr;
177}
178
61382a50 179static inline void stb_raw(void *ptr, int v)
5a9fdfec
FB
180{
181 *(uint8_t *)ptr = v;
182}
183
184/* NOTE: on arm, putting 2 in /proc/sys/debug/alignment so that the
185 kernel handles unaligned load/stores may give better results, but
186 it is a system wide setting : bad */
0ac4bd56 187#if !defined(TARGET_WORDS_BIGENDIAN) && (defined(WORDS_BIGENDIAN) || defined(WORDS_ALIGNED))
5a9fdfec
FB
188
189/* conservative code for little endian unaligned accesses */
61382a50 190static inline int lduw_raw(void *ptr)
5a9fdfec
FB
191{
192#ifdef __powerpc__
193 int val;
194 __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr));
195 return val;
196#else
197 uint8_t *p = ptr;
198 return p[0] | (p[1] << 8);
199#endif
200}
201
61382a50 202static inline int ldsw_raw(void *ptr)
5a9fdfec
FB
203{
204#ifdef __powerpc__
205 int val;
206 __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr));
207 return (int16_t)val;
208#else
209 uint8_t *p = ptr;
210 return (int16_t)(p[0] | (p[1] << 8));
211#endif
212}
213
61382a50 214static inline int ldl_raw(void *ptr)
5a9fdfec
FB
215{
216#ifdef __powerpc__
217 int val;
218 __asm__ __volatile__ ("lwbrx %0,0,%1" : "=r" (val) : "r" (ptr));
219 return val;
220#else
221 uint8_t *p = ptr;
222 return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
223#endif
224}
225
61382a50 226static inline uint64_t ldq_raw(void *ptr)
5a9fdfec
FB
227{
228 uint8_t *p = ptr;
229 uint32_t v1, v2;
61382a50
FB
230 v1 = ldl_raw(p);
231 v2 = ldl_raw(p + 4);
5a9fdfec
FB
232 return v1 | ((uint64_t)v2 << 32);
233}
234
61382a50 235static inline void stw_raw(void *ptr, int v)
5a9fdfec
FB
236{
237#ifdef __powerpc__
238 __asm__ __volatile__ ("sthbrx %1,0,%2" : "=m" (*(uint16_t *)ptr) : "r" (v), "r" (ptr));
239#else
240 uint8_t *p = ptr;
241 p[0] = v;
242 p[1] = v >> 8;
243#endif
244}
245
61382a50 246static inline void stl_raw(void *ptr, int v)
5a9fdfec
FB
247{
248#ifdef __powerpc__
249 __asm__ __volatile__ ("stwbrx %1,0,%2" : "=m" (*(uint32_t *)ptr) : "r" (v), "r" (ptr));
250#else
251 uint8_t *p = ptr;
252 p[0] = v;
253 p[1] = v >> 8;
254 p[2] = v >> 16;
255 p[3] = v >> 24;
256#endif
257}
258
61382a50 259static inline void stq_raw(void *ptr, uint64_t v)
5a9fdfec
FB
260{
261 uint8_t *p = ptr;
61382a50
FB
262 stl_raw(p, (uint32_t)v);
263 stl_raw(p + 4, v >> 32);
5a9fdfec
FB
264}
265
266/* float access */
267
61382a50 268static inline float ldfl_raw(void *ptr)
5a9fdfec
FB
269{
270 union {
271 float f;
272 uint32_t i;
273 } u;
61382a50 274 u.i = ldl_raw(ptr);
5a9fdfec
FB
275 return u.f;
276}
277
61382a50 278static inline void stfl_raw(void *ptr, float v)
5a9fdfec
FB
279{
280 union {
281 float f;
282 uint32_t i;
283 } u;
284 u.f = v;
61382a50 285 stl_raw(ptr, u.i);
5a9fdfec
FB
286}
287
61382a50 288static inline double ldfq_raw(void *ptr)
5a9fdfec 289{
0ac4bd56
FB
290 CPU_DoubleU u;
291 u.l.lower = ldl_raw(ptr);
292 u.l.upper = ldl_raw(ptr + 4);
5a9fdfec
FB
293 return u.d;
294}
295
61382a50 296static inline void stfq_raw(void *ptr, double v)
5a9fdfec 297{
0ac4bd56 298 CPU_DoubleU u;
5a9fdfec 299 u.d = v;
0ac4bd56
FB
300 stl_raw(ptr, u.l.lower);
301 stl_raw(ptr + 4, u.l.upper);
5a9fdfec
FB
302}
303
0ac4bd56 304#elif defined(TARGET_WORDS_BIGENDIAN) && (!defined(WORDS_BIGENDIAN) || defined(WORDS_ALIGNED))
93ac68bc 305
61382a50 306static inline int lduw_raw(void *ptr)
93ac68bc 307{
83d73968
FB
308#if defined(__i386__)
309 int val;
310 asm volatile ("movzwl %1, %0\n"
311 "xchgb %b0, %h0\n"
312 : "=q" (val)
313 : "m" (*(uint16_t *)ptr));
314 return val;
315#else
93ac68bc 316 uint8_t *b = (uint8_t *) ptr;
83d73968
FB
317 return ((b[0] << 8) | b[1]);
318#endif
93ac68bc
FB
319}
320
61382a50 321static inline int ldsw_raw(void *ptr)
93ac68bc 322{
83d73968
FB
323#if defined(__i386__)
324 int val;
325 asm volatile ("movzwl %1, %0\n"
326 "xchgb %b0, %h0\n"
327 : "=q" (val)
328 : "m" (*(uint16_t *)ptr));
329 return (int16_t)val;
330#else
331 uint8_t *b = (uint8_t *) ptr;
332 return (int16_t)((b[0] << 8) | b[1]);
333#endif
93ac68bc
FB
334}
335
61382a50 336static inline int ldl_raw(void *ptr)
93ac68bc 337{
4f2ac237 338#if defined(__i386__) || defined(__x86_64__)
83d73968
FB
339 int val;
340 asm volatile ("movl %1, %0\n"
341 "bswap %0\n"
342 : "=r" (val)
343 : "m" (*(uint32_t *)ptr));
344 return val;
345#else
93ac68bc 346 uint8_t *b = (uint8_t *) ptr;
83d73968
FB
347 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
348#endif
93ac68bc
FB
349}
350
61382a50 351static inline uint64_t ldq_raw(void *ptr)
93ac68bc
FB
352{
353 uint32_t a,b;
9f05cc34
FB
354 a = ldl_raw(ptr);
355 b = ldl_raw(ptr+4);
93ac68bc
FB
356 return (((uint64_t)a<<32)|b);
357}
358
61382a50 359static inline void stw_raw(void *ptr, int v)
93ac68bc 360{
83d73968
FB
361#if defined(__i386__)
362 asm volatile ("xchgb %b0, %h0\n"
363 "movw %w0, %1\n"
364 : "=q" (v)
365 : "m" (*(uint16_t *)ptr), "0" (v));
366#else
93ac68bc
FB
367 uint8_t *d = (uint8_t *) ptr;
368 d[0] = v >> 8;
369 d[1] = v;
83d73968 370#endif
93ac68bc
FB
371}
372
61382a50 373static inline void stl_raw(void *ptr, int v)
93ac68bc 374{
4f2ac237 375#if defined(__i386__) || defined(__x86_64__)
83d73968
FB
376 asm volatile ("bswap %0\n"
377 "movl %0, %1\n"
378 : "=r" (v)
379 : "m" (*(uint32_t *)ptr), "0" (v));
380#else
93ac68bc
FB
381 uint8_t *d = (uint8_t *) ptr;
382 d[0] = v >> 24;
383 d[1] = v >> 16;
384 d[2] = v >> 8;
385 d[3] = v;
83d73968 386#endif
93ac68bc
FB
387}
388
61382a50 389static inline void stq_raw(void *ptr, uint64_t v)
93ac68bc 390{
0ac4bd56
FB
391 stl_raw(ptr, v >> 32);
392 stl_raw(ptr + 4, v);
393}
394
395/* float access */
396
397static inline float ldfl_raw(void *ptr)
398{
399 union {
400 float f;
401 uint32_t i;
402 } u;
403 u.i = ldl_raw(ptr);
404 return u.f;
405}
406
407static inline void stfl_raw(void *ptr, float v)
408{
409 union {
410 float f;
411 uint32_t i;
412 } u;
413 u.f = v;
414 stl_raw(ptr, u.i);
415}
416
417static inline double ldfq_raw(void *ptr)
418{
419 CPU_DoubleU u;
420 u.l.upper = ldl_raw(ptr);
421 u.l.lower = ldl_raw(ptr + 4);
422 return u.d;
423}
424
425static inline void stfq_raw(void *ptr, double v)
426{
427 CPU_DoubleU u;
428 u.d = v;
429 stl_raw(ptr, u.l.upper);
430 stl_raw(ptr + 4, u.l.lower);
93ac68bc
FB
431}
432
5a9fdfec
FB
433#else
434
61382a50 435static inline int lduw_raw(void *ptr)
5a9fdfec
FB
436{
437 return *(uint16_t *)ptr;
438}
439
61382a50 440static inline int ldsw_raw(void *ptr)
5a9fdfec
FB
441{
442 return *(int16_t *)ptr;
443}
444
61382a50 445static inline int ldl_raw(void *ptr)
5a9fdfec
FB
446{
447 return *(uint32_t *)ptr;
448}
449
61382a50 450static inline uint64_t ldq_raw(void *ptr)
5a9fdfec
FB
451{
452 return *(uint64_t *)ptr;
453}
454
61382a50 455static inline void stw_raw(void *ptr, int v)
5a9fdfec
FB
456{
457 *(uint16_t *)ptr = v;
458}
459
61382a50 460static inline void stl_raw(void *ptr, int v)
5a9fdfec
FB
461{
462 *(uint32_t *)ptr = v;
463}
464
61382a50 465static inline void stq_raw(void *ptr, uint64_t v)
5a9fdfec
FB
466{
467 *(uint64_t *)ptr = v;
468}
469
470/* float access */
471
61382a50 472static inline float ldfl_raw(void *ptr)
5a9fdfec
FB
473{
474 return *(float *)ptr;
475}
476
61382a50 477static inline double ldfq_raw(void *ptr)
5a9fdfec
FB
478{
479 return *(double *)ptr;
480}
481
61382a50 482static inline void stfl_raw(void *ptr, float v)
5a9fdfec
FB
483{
484 *(float *)ptr = v;
485}
486
61382a50 487static inline void stfq_raw(void *ptr, double v)
5a9fdfec
FB
488{
489 *(double *)ptr = v;
490}
491#endif
492
61382a50
FB
493/* MMU memory access macros */
494
495#if defined(CONFIG_USER_ONLY)
496
497/* if user mode, no other memory access functions */
498#define ldub(p) ldub_raw(p)
499#define ldsb(p) ldsb_raw(p)
500#define lduw(p) lduw_raw(p)
501#define ldsw(p) ldsw_raw(p)
502#define ldl(p) ldl_raw(p)
503#define ldq(p) ldq_raw(p)
504#define ldfl(p) ldfl_raw(p)
505#define ldfq(p) ldfq_raw(p)
506#define stb(p, v) stb_raw(p, v)
507#define stw(p, v) stw_raw(p, v)
508#define stl(p, v) stl_raw(p, v)
509#define stq(p, v) stq_raw(p, v)
510#define stfl(p, v) stfl_raw(p, v)
511#define stfq(p, v) stfq_raw(p, v)
512
513#define ldub_code(p) ldub_raw(p)
514#define ldsb_code(p) ldsb_raw(p)
515#define lduw_code(p) lduw_raw(p)
516#define ldsw_code(p) ldsw_raw(p)
517#define ldl_code(p) ldl_raw(p)
518
519#define ldub_kernel(p) ldub_raw(p)
520#define ldsb_kernel(p) ldsb_raw(p)
521#define lduw_kernel(p) lduw_raw(p)
522#define ldsw_kernel(p) ldsw_raw(p)
523#define ldl_kernel(p) ldl_raw(p)
0ac4bd56
FB
524#define ldfl_kernel(p) ldfl_raw(p)
525#define ldfq_kernel(p) ldfq_raw(p)
61382a50
FB
526#define stb_kernel(p, v) stb_raw(p, v)
527#define stw_kernel(p, v) stw_raw(p, v)
528#define stl_kernel(p, v) stl_raw(p, v)
529#define stq_kernel(p, v) stq_raw(p, v)
0ac4bd56
FB
530#define stfl_kernel(p, v) stfl_raw(p, v)
531#define stfq_kernel(p, vt) stfq_raw(p, v)
61382a50
FB
532
533#endif /* defined(CONFIG_USER_ONLY) */
534
5a9fdfec
FB
535/* page related stuff */
536
537#define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS)
538#define TARGET_PAGE_MASK ~(TARGET_PAGE_SIZE - 1)
539#define TARGET_PAGE_ALIGN(addr) (((addr) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK)
540
541extern unsigned long real_host_page_size;
542extern unsigned long host_page_bits;
543extern unsigned long host_page_size;
544extern unsigned long host_page_mask;
545
546#define HOST_PAGE_ALIGN(addr) (((addr) + host_page_size - 1) & host_page_mask)
547
548/* same as PROT_xxx */
549#define PAGE_READ 0x0001
550#define PAGE_WRITE 0x0002
551#define PAGE_EXEC 0x0004
552#define PAGE_BITS (PAGE_READ | PAGE_WRITE | PAGE_EXEC)
553#define PAGE_VALID 0x0008
554/* original state of the write flag (used when tracking self-modifying
555 code */
556#define PAGE_WRITE_ORG 0x0010
557
558void page_dump(FILE *f);
559int page_get_flags(unsigned long address);
560void page_set_flags(unsigned long start, unsigned long end, int flags);
561void page_unprotect_range(uint8_t *data, unsigned long data_size);
562
563#define SINGLE_CPU_DEFINES
564#ifdef SINGLE_CPU_DEFINES
565
566#if defined(TARGET_I386)
567
568#define CPUState CPUX86State
569#define cpu_init cpu_x86_init
570#define cpu_exec cpu_x86_exec
571#define cpu_gen_code cpu_x86_gen_code
5a9fdfec 572#define cpu_signal_handler cpu_x86_signal_handler
09683d35 573#define cpu_dump_state cpu_x86_dump_state
5a9fdfec
FB
574
575#elif defined(TARGET_ARM)
576
577#define CPUState CPUARMState
578#define cpu_init cpu_arm_init
579#define cpu_exec cpu_arm_exec
580#define cpu_gen_code cpu_arm_gen_code
5a9fdfec 581#define cpu_signal_handler cpu_arm_signal_handler
09683d35 582#define cpu_dump_state cpu_arm_dump_state
5a9fdfec 583
93ac68bc
FB
584#elif defined(TARGET_SPARC)
585
586#define CPUState CPUSPARCState
587#define cpu_init cpu_sparc_init
588#define cpu_exec cpu_sparc_exec
589#define cpu_gen_code cpu_sparc_gen_code
93ac68bc 590#define cpu_signal_handler cpu_sparc_signal_handler
09683d35 591#define cpu_dump_state cpu_sparc_dump_state
93ac68bc 592
67867308
FB
593#elif defined(TARGET_PPC)
594
595#define CPUState CPUPPCState
596#define cpu_init cpu_ppc_init
597#define cpu_exec cpu_ppc_exec
598#define cpu_gen_code cpu_ppc_gen_code
67867308 599#define cpu_signal_handler cpu_ppc_signal_handler
09683d35 600#define cpu_dump_state cpu_ppc_dump_state
67867308 601
5a9fdfec
FB
602#else
603
604#error unsupported target CPU
605
606#endif
607
972ddf78
FB
608#endif /* SINGLE_CPU_DEFINES */
609
610void cpu_abort(CPUState *env, const char *fmt, ...);
e2f22898 611extern CPUState *cpu_single_env;
9acbed06 612extern int code_copy_enabled;
5a9fdfec 613
9acbed06
FB
614#define CPU_INTERRUPT_EXIT 0x01 /* wants exit from main loop */
615#define CPU_INTERRUPT_HARD 0x02 /* hardware interrupt pending */
616#define CPU_INTERRUPT_EXITTB 0x04 /* exit the current TB (use for x86 a20 case) */
ef792f9d 617#define CPU_INTERRUPT_TIMER 0x08 /* internal timer exception pending */
4690764b 618void cpu_interrupt(CPUState *s, int mask);
b54ad049 619void cpu_reset_interrupt(CPUState *env, int mask);
68a79315 620
2e12669a
FB
621int cpu_breakpoint_insert(CPUState *env, target_ulong pc);
622int cpu_breakpoint_remove(CPUState *env, target_ulong pc);
c33a346e 623void cpu_single_step(CPUState *env, int enabled);
d95dc32d 624void cpu_reset(CPUState *s);
4c3a88a2 625
13eb76e0
FB
626/* Return the physical page corresponding to a virtual one. Use it
627 only for debugging because no protection checks are done. Return -1
628 if no page found. */
629target_ulong cpu_get_phys_page_debug(CPUState *env, target_ulong addr);
630
9fddaa0c
FB
631#define CPU_LOG_TB_OUT_ASM (1 << 0)
632#define CPU_LOG_TB_IN_ASM (1 << 1)
f193c797
FB
633#define CPU_LOG_TB_OP (1 << 2)
634#define CPU_LOG_TB_OP_OPT (1 << 3)
635#define CPU_LOG_INT (1 << 4)
636#define CPU_LOG_EXEC (1 << 5)
637#define CPU_LOG_PCALL (1 << 6)
fd872598 638#define CPU_LOG_IOPORT (1 << 7)
9fddaa0c 639#define CPU_LOG_TB_CPU (1 << 8)
f193c797
FB
640
641/* define log items */
642typedef struct CPULogItem {
643 int mask;
644 const char *name;
645 const char *help;
646} CPULogItem;
647
648extern CPULogItem cpu_log_items[];
649
34865134
FB
650void cpu_set_log(int log_flags);
651void cpu_set_log_filename(const char *filename);
f193c797 652int cpu_str_to_log_mask(const char *str);
34865134 653
09683d35
FB
654/* IO ports API */
655
656/* NOTE: as these functions may be even used when there is an isa
657 brige on non x86 targets, we always defined them */
658#ifndef NO_CPU_IO_DEFS
659void cpu_outb(CPUState *env, int addr, int val);
660void cpu_outw(CPUState *env, int addr, int val);
661void cpu_outl(CPUState *env, int addr, int val);
662int cpu_inb(CPUState *env, int addr);
663int cpu_inw(CPUState *env, int addr);
664int cpu_inl(CPUState *env, int addr);
665#endif
666
33417e70
FB
667/* memory API */
668
edf75d59
FB
669extern int phys_ram_size;
670extern int phys_ram_fd;
671extern uint8_t *phys_ram_base;
1ccde1cb 672extern uint8_t *phys_ram_dirty;
edf75d59
FB
673
674/* physical memory access */
675#define IO_MEM_NB_ENTRIES 256
676#define TLB_INVALID_MASK (1 << 3)
677#define IO_MEM_SHIFT 4
678
679#define IO_MEM_RAM (0 << IO_MEM_SHIFT) /* hardcoded offset */
680#define IO_MEM_ROM (1 << IO_MEM_SHIFT) /* hardcoded offset */
681#define IO_MEM_UNASSIGNED (2 << IO_MEM_SHIFT)
1ccde1cb
FB
682#define IO_MEM_CODE (3 << IO_MEM_SHIFT) /* used internally, never use directly */
683#define IO_MEM_NOTDIRTY (4 << IO_MEM_SHIFT) /* used internally, never use directly */
edf75d59 684
7727994d
FB
685typedef void CPUWriteMemoryFunc(void *opaque, target_phys_addr_t addr, uint32_t value);
686typedef uint32_t CPUReadMemoryFunc(void *opaque, target_phys_addr_t addr);
33417e70 687
2e12669a
FB
688void cpu_register_physical_memory(target_phys_addr_t start_addr,
689 unsigned long size,
690 unsigned long phys_offset);
33417e70
FB
691int cpu_register_io_memory(int io_index,
692 CPUReadMemoryFunc **mem_read,
7727994d
FB
693 CPUWriteMemoryFunc **mem_write,
694 void *opaque);
33417e70 695
2e12669a 696void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf,
13eb76e0 697 int len, int is_write);
2e12669a
FB
698static inline void cpu_physical_memory_read(target_phys_addr_t addr,
699 uint8_t *buf, int len)
8b1f24b0
FB
700{
701 cpu_physical_memory_rw(addr, buf, len, 0);
702}
2e12669a
FB
703static inline void cpu_physical_memory_write(target_phys_addr_t addr,
704 const uint8_t *buf, int len)
8b1f24b0
FB
705{
706 cpu_physical_memory_rw(addr, (uint8_t *)buf, len, 1);
707}
708
709int cpu_memory_rw_debug(CPUState *env, target_ulong addr,
710 uint8_t *buf, int len, int is_write);
13eb76e0 711
1ccde1cb
FB
712/* read dirty bit (return 0 or 1) */
713static inline int cpu_physical_memory_is_dirty(target_ulong addr)
714{
715 return phys_ram_dirty[addr >> TARGET_PAGE_BITS];
716}
717
718static inline void cpu_physical_memory_set_dirty(target_ulong addr)
719{
720 phys_ram_dirty[addr >> TARGET_PAGE_BITS] = 1;
721}
722
723void cpu_physical_memory_reset_dirty(target_ulong start, target_ulong end);
724
5a9fdfec 725#endif /* CPU_ALL_H */