]> Git Repo - qemu.git/blame - include/exec/cpu-common.h
qemu_ram_block_by_name
[qemu.git] / include / exec / cpu-common.h
CommitLineData
1ad2134f
PB
1#ifndef CPU_COMMON_H
2#define CPU_COMMON_H 1
3
07f35073 4/* CPU interfaces that are target independent. */
1ad2134f 5
ce927ed9 6#ifndef CONFIG_USER_ONLY
022c62cb 7#include "exec/hwaddr.h"
ce927ed9 8#endif
37b76cfd
PB
9
10#ifndef NEED_CPU_H
022c62cb 11#include "exec/poison.h"
37b76cfd
PB
12#endif
13
1de7afc9
PB
14#include "qemu/bswap.h"
15#include "qemu/queue.h"
fba0a593
PM
16#include "qemu/fprintf-fn.h"
17#include "qemu/typedefs.h"
1ad2134f 18
92a31361
AF
19/**
20 * CPUListState:
21 * @cpu_fprintf: Print function.
22 * @file: File to print to using @cpu_fprint.
23 *
24 * State commonly used for iterating over CPU models.
25 */
26typedef struct CPUListState {
27 fprintf_function cpu_fprintf;
28 FILE *file;
29} CPUListState;
30
55e94093
LA
31typedef enum MMUAccessType {
32 MMU_DATA_LOAD = 0,
33 MMU_DATA_STORE = 1,
34 MMU_INST_FETCH = 2
35} MMUAccessType;
36
b3755a91
PB
37#if !defined(CONFIG_USER_ONLY)
38
dd310534
AG
39enum device_endian {
40 DEVICE_NATIVE_ENDIAN,
41 DEVICE_BIG_ENDIAN,
42 DEVICE_LITTLE_ENDIAN,
43};
44
1ad2134f 45/* address in the RAM (different from a physical address) */
4be403c8 46#if defined(CONFIG_XEN_BACKEND)
f15fbc4b
AP
47typedef uint64_t ram_addr_t;
48# define RAM_ADDR_MAX UINT64_MAX
49# define RAM_ADDR_FMT "%" PRIx64
50#else
53576999
SW
51typedef uintptr_t ram_addr_t;
52# define RAM_ADDR_MAX UINTPTR_MAX
53# define RAM_ADDR_FMT "%" PRIxPTR
f15fbc4b 54#endif
1ad2134f 55
96d0e26c 56extern ram_addr_t ram_size;
87a45cfe 57ram_addr_t get_current_ram_size(void);
96d0e26c 58
1ad2134f
PB
59/* memory API */
60
a8170e5e
AK
61typedef void CPUWriteMemoryFunc(void *opaque, hwaddr addr, uint32_t value);
62typedef uint32_t CPUReadMemoryFunc(void *opaque, hwaddr addr);
1ad2134f 63
cd19cfa2 64void qemu_ram_remap(ram_addr_t addr, ram_addr_t length);
1ad2134f 65/* This should not be used by devices. */
1b5ec234 66MemoryRegion *qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr);
e3dd7493 67RAMBlock *qemu_ram_block_by_name(const char *name);
422148d3
DDAG
68RAMBlock *qemu_ram_block_from_host(void *ptr, bool round_offset,
69 ram_addr_t *ram_addr, ram_addr_t *offset);
c5705a77 70void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev);
20cfe881 71void qemu_ram_unset_idstr(ram_addr_t addr);
422148d3 72const char *qemu_ram_get_idstr(RAMBlock *rb);
1ad2134f 73
a8170e5e 74void cpu_physical_memory_rw(hwaddr addr, uint8_t *buf,
1ad2134f 75 int len, int is_write);
a8170e5e 76static inline void cpu_physical_memory_read(hwaddr addr,
3bad9814 77 void *buf, int len)
1ad2134f
PB
78{
79 cpu_physical_memory_rw(addr, buf, len, 0);
80}
a8170e5e 81static inline void cpu_physical_memory_write(hwaddr addr,
3bad9814 82 const void *buf, int len)
1ad2134f 83{
3bad9814 84 cpu_physical_memory_rw(addr, (void *)buf, len, 1);
1ad2134f 85}
a8170e5e
AK
86void *cpu_physical_memory_map(hwaddr addr,
87 hwaddr *plen,
1ad2134f 88 int is_write);
a8170e5e
AK
89void cpu_physical_memory_unmap(void *buffer, hwaddr len,
90 int is_write, hwaddr access_len);
e95205e1
FZ
91void cpu_register_map_client(QEMUBH *bh);
92void cpu_unregister_map_client(QEMUBH *bh);
1ad2134f 93
a8170e5e 94bool cpu_physical_memory_is_io(hwaddr phys_addr);
76f35538 95
6842a08e
BS
96/* Coalesced MMIO regions are areas where write operations can be reordered.
97 * This usually implies that write operations are side-effect free. This allows
98 * batching which can make a major impact on performance when using
99 * virtualization.
100 */
6842a08e
BS
101void qemu_flush_coalesced_mmio_buffer(void);
102
2c17449b 103uint32_t ldub_phys(AddressSpace *as, hwaddr addr);
41701aa4
EI
104uint32_t lduw_le_phys(AddressSpace *as, hwaddr addr);
105uint32_t lduw_be_phys(AddressSpace *as, hwaddr addr);
fdfba1a2
EI
106uint32_t ldl_le_phys(AddressSpace *as, hwaddr addr);
107uint32_t ldl_be_phys(AddressSpace *as, hwaddr addr);
2c17449b
EI
108uint64_t ldq_le_phys(AddressSpace *as, hwaddr addr);
109uint64_t ldq_be_phys(AddressSpace *as, hwaddr addr);
db3be60d 110void stb_phys(AddressSpace *as, hwaddr addr, uint32_t val);
5ce5944d
EI
111void stw_le_phys(AddressSpace *as, hwaddr addr, uint32_t val);
112void stw_be_phys(AddressSpace *as, hwaddr addr, uint32_t val);
ab1da857
EI
113void stl_le_phys(AddressSpace *as, hwaddr addr, uint32_t val);
114void stl_be_phys(AddressSpace *as, hwaddr addr, uint32_t val);
f606604f
EI
115void stq_le_phys(AddressSpace *as, hwaddr addr, uint64_t val);
116void stq_be_phys(AddressSpace *as, hwaddr addr, uint64_t val);
c227f099 117
21673cde 118#ifdef NEED_CPU_H
41701aa4 119uint32_t lduw_phys(AddressSpace *as, hwaddr addr);
fdfba1a2 120uint32_t ldl_phys(AddressSpace *as, hwaddr addr);
2c17449b 121uint64_t ldq_phys(AddressSpace *as, hwaddr addr);
2198a121 122void stl_phys_notdirty(AddressSpace *as, hwaddr addr, uint32_t val);
5ce5944d 123void stw_phys(AddressSpace *as, hwaddr addr, uint32_t val);
ab1da857 124void stl_phys(AddressSpace *as, hwaddr addr, uint32_t val);
f606604f 125void stq_phys(AddressSpace *as, hwaddr addr, uint64_t val);
21673cde
BS
126#endif
127
2a221651 128void cpu_physical_memory_write_rom(AddressSpace *as, hwaddr addr,
1ad2134f 129 const uint8_t *buf, int len);
582b55a9 130void cpu_flush_icache_range(hwaddr start, int len);
1ad2134f 131
0e0df1e2 132extern struct MemoryRegion io_mem_rom;
0e0df1e2 133extern struct MemoryRegion io_mem_notdirty;
1ad2134f 134
e3807054 135typedef int (RAMBlockIterFunc)(const char *block_name, void *host_addr,
bd2fa51f
MH
136 ram_addr_t offset, ram_addr_t length, void *opaque);
137
e3807054 138int qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque);
bd2fa51f 139
b3755a91
PB
140#endif
141
1ad2134f 142#endif /* !CPU_COMMON_H */
This page took 0.496325 seconds and 4 git commands to generate.