Statistics
| Branch: | Revision:

root / cpu-common.h @ 3f7132d1

History | View | Annotate | Download (5.1 kB)

1 1ad2134f Paul Brook
#ifndef CPU_COMMON_H
2 1ad2134f Paul Brook
#define CPU_COMMON_H 1
3 1ad2134f Paul Brook
4 1ad2134f Paul Brook
/* CPU interfaces that are target indpendent.  */
5 1ad2134f Paul Brook
6 477ba620 Aurelien Jarno
#if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
7 1ad2134f Paul Brook
#define WORDS_ALIGNED
8 1ad2134f Paul Brook
#endif
9 1ad2134f Paul Brook
10 37b76cfd Paolo Bonzini
#ifdef TARGET_PHYS_ADDR_BITS
11 37b76cfd Paolo Bonzini
#include "targphys.h"
12 37b76cfd Paolo Bonzini
#endif
13 37b76cfd Paolo Bonzini
14 37b76cfd Paolo Bonzini
#ifndef NEED_CPU_H
15 37b76cfd Paolo Bonzini
#include "poison.h"
16 37b76cfd Paolo Bonzini
#endif
17 37b76cfd Paolo Bonzini
18 1ad2134f Paul Brook
#include "bswap.h"
19 f6f3fbca Michael S. Tsirkin
#include "qemu-queue.h"
20 1ad2134f Paul Brook
21 b3755a91 Paul Brook
#if !defined(CONFIG_USER_ONLY)
22 b3755a91 Paul Brook
23 1ad2134f Paul Brook
/* address in the RAM (different from a physical address) */
24 c227f099 Anthony Liguori
typedef unsigned long ram_addr_t;
25 1ad2134f Paul Brook
26 1ad2134f Paul Brook
/* memory API */
27 1ad2134f Paul Brook
28 c227f099 Anthony Liguori
typedef void CPUWriteMemoryFunc(void *opaque, target_phys_addr_t addr, uint32_t value);
29 c227f099 Anthony Liguori
typedef uint32_t CPUReadMemoryFunc(void *opaque, target_phys_addr_t addr);
30 1ad2134f Paul Brook
31 c227f099 Anthony Liguori
void cpu_register_physical_memory_offset(target_phys_addr_t start_addr,
32 c227f099 Anthony Liguori
                                         ram_addr_t size,
33 c227f099 Anthony Liguori
                                         ram_addr_t phys_offset,
34 c227f099 Anthony Liguori
                                         ram_addr_t region_offset);
35 c227f099 Anthony Liguori
static inline void cpu_register_physical_memory(target_phys_addr_t start_addr,
36 c227f099 Anthony Liguori
                                                ram_addr_t size,
37 c227f099 Anthony Liguori
                                                ram_addr_t phys_offset)
38 1ad2134f Paul Brook
{
39 1ad2134f Paul Brook
    cpu_register_physical_memory_offset(start_addr, size, phys_offset, 0);
40 1ad2134f Paul Brook
}
41 1ad2134f Paul Brook
42 c227f099 Anthony Liguori
ram_addr_t cpu_get_physical_page_desc(target_phys_addr_t addr);
43 84b89d78 Cam Macdonell
ram_addr_t qemu_ram_alloc_from_ptr(DeviceState *dev, const char *name,
44 84b89d78 Cam Macdonell
                        ram_addr_t size, void *host);
45 1724f049 Alex Williamson
ram_addr_t qemu_ram_alloc(DeviceState *dev, const char *name, ram_addr_t size);
46 c227f099 Anthony Liguori
void qemu_ram_free(ram_addr_t addr);
47 1ad2134f Paul Brook
/* This should only be used for ram local to a device.  */
48 c227f099 Anthony Liguori
void *qemu_get_ram_ptr(ram_addr_t addr);
49 1ad2134f Paul Brook
/* This should not be used by devices.  */
50 c227f099 Anthony Liguori
ram_addr_t qemu_ram_addr_from_host(void *ptr);
51 1ad2134f Paul Brook
52 d60efc6b Blue Swirl
int cpu_register_io_memory(CPUReadMemoryFunc * const *mem_read,
53 d60efc6b Blue Swirl
                           CPUWriteMemoryFunc * const *mem_write,
54 1ad2134f Paul Brook
                           void *opaque);
55 1ad2134f Paul Brook
void cpu_unregister_io_memory(int table_address);
56 1ad2134f Paul Brook
57 c227f099 Anthony Liguori
void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf,
58 1ad2134f Paul Brook
                            int len, int is_write);
59 c227f099 Anthony Liguori
static inline void cpu_physical_memory_read(target_phys_addr_t addr,
60 1ad2134f Paul Brook
                                            uint8_t *buf, int len)
61 1ad2134f Paul Brook
{
62 1ad2134f Paul Brook
    cpu_physical_memory_rw(addr, buf, len, 0);
63 1ad2134f Paul Brook
}
64 c227f099 Anthony Liguori
static inline void cpu_physical_memory_write(target_phys_addr_t addr,
65 1ad2134f Paul Brook
                                             const uint8_t *buf, int len)
66 1ad2134f Paul Brook
{
67 1ad2134f Paul Brook
    cpu_physical_memory_rw(addr, (uint8_t *)buf, len, 1);
68 1ad2134f Paul Brook
}
69 c227f099 Anthony Liguori
void *cpu_physical_memory_map(target_phys_addr_t addr,
70 c227f099 Anthony Liguori
                              target_phys_addr_t *plen,
71 1ad2134f Paul Brook
                              int is_write);
72 c227f099 Anthony Liguori
void cpu_physical_memory_unmap(void *buffer, target_phys_addr_t len,
73 c227f099 Anthony Liguori
                               int is_write, target_phys_addr_t access_len);
74 1ad2134f Paul Brook
void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque));
75 1ad2134f Paul Brook
void cpu_unregister_map_client(void *cookie);
76 1ad2134f Paul Brook
77 f6f3fbca Michael S. Tsirkin
struct CPUPhysMemoryClient;
78 f6f3fbca Michael S. Tsirkin
typedef struct CPUPhysMemoryClient CPUPhysMemoryClient;
79 f6f3fbca Michael S. Tsirkin
struct CPUPhysMemoryClient {
80 f6f3fbca Michael S. Tsirkin
    void (*set_memory)(struct CPUPhysMemoryClient *client,
81 f6f3fbca Michael S. Tsirkin
                       target_phys_addr_t start_addr,
82 f6f3fbca Michael S. Tsirkin
                       ram_addr_t size,
83 f6f3fbca Michael S. Tsirkin
                       ram_addr_t phys_offset);
84 f6f3fbca Michael S. Tsirkin
    int (*sync_dirty_bitmap)(struct CPUPhysMemoryClient *client,
85 f6f3fbca Michael S. Tsirkin
                             target_phys_addr_t start_addr,
86 f6f3fbca Michael S. Tsirkin
                             target_phys_addr_t end_addr);
87 f6f3fbca Michael S. Tsirkin
    int (*migration_log)(struct CPUPhysMemoryClient *client,
88 f6f3fbca Michael S. Tsirkin
                         int enable);
89 f6f3fbca Michael S. Tsirkin
    QLIST_ENTRY(CPUPhysMemoryClient) list;
90 f6f3fbca Michael S. Tsirkin
};
91 f6f3fbca Michael S. Tsirkin
92 f6f3fbca Michael S. Tsirkin
void cpu_register_phys_memory_client(CPUPhysMemoryClient *);
93 f6f3fbca Michael S. Tsirkin
void cpu_unregister_phys_memory_client(CPUPhysMemoryClient *);
94 f6f3fbca Michael S. Tsirkin
95 6842a08e Blue Swirl
/* Coalesced MMIO regions are areas where write operations can be reordered.
96 6842a08e Blue Swirl
 * This usually implies that write operations are side-effect free.  This allows
97 6842a08e Blue Swirl
 * batching which can make a major impact on performance when using
98 6842a08e Blue Swirl
 * virtualization.
99 6842a08e Blue Swirl
 */
100 6842a08e Blue Swirl
void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size);
101 6842a08e Blue Swirl
102 6842a08e Blue Swirl
void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size);
103 6842a08e Blue Swirl
104 6842a08e Blue Swirl
void qemu_flush_coalesced_mmio_buffer(void);
105 6842a08e Blue Swirl
106 c227f099 Anthony Liguori
uint32_t ldub_phys(target_phys_addr_t addr);
107 c227f099 Anthony Liguori
uint32_t lduw_phys(target_phys_addr_t addr);
108 c227f099 Anthony Liguori
uint32_t ldl_phys(target_phys_addr_t addr);
109 c227f099 Anthony Liguori
uint64_t ldq_phys(target_phys_addr_t addr);
110 c227f099 Anthony Liguori
void stl_phys_notdirty(target_phys_addr_t addr, uint32_t val);
111 c227f099 Anthony Liguori
void stq_phys_notdirty(target_phys_addr_t addr, uint64_t val);
112 c227f099 Anthony Liguori
void stb_phys(target_phys_addr_t addr, uint32_t val);
113 c227f099 Anthony Liguori
void stw_phys(target_phys_addr_t addr, uint32_t val);
114 c227f099 Anthony Liguori
void stl_phys(target_phys_addr_t addr, uint32_t val);
115 c227f099 Anthony Liguori
void stq_phys(target_phys_addr_t addr, uint64_t val);
116 c227f099 Anthony Liguori
117 c227f099 Anthony Liguori
void cpu_physical_memory_write_rom(target_phys_addr_t addr,
118 1ad2134f Paul Brook
                                   const uint8_t *buf, int len);
119 1ad2134f Paul Brook
120 1ad2134f Paul Brook
#define IO_MEM_SHIFT       3
121 1ad2134f Paul Brook
122 1ad2134f Paul Brook
#define IO_MEM_RAM         (0 << IO_MEM_SHIFT) /* hardcoded offset */
123 1ad2134f Paul Brook
#define IO_MEM_ROM         (1 << IO_MEM_SHIFT) /* hardcoded offset */
124 1ad2134f Paul Brook
#define IO_MEM_UNASSIGNED  (2 << IO_MEM_SHIFT)
125 1ad2134f Paul Brook
#define IO_MEM_NOTDIRTY    (3 << IO_MEM_SHIFT)
126 1ad2134f Paul Brook
127 1ad2134f Paul Brook
/* Acts like a ROM when read and like a device when written.  */
128 1ad2134f Paul Brook
#define IO_MEM_ROMD        (1)
129 1ad2134f Paul Brook
#define IO_MEM_SUBPAGE     (2)
130 1ad2134f Paul Brook
131 b3755a91 Paul Brook
#endif
132 b3755a91 Paul Brook
133 1ad2134f Paul Brook
#endif /* !CPU_COMMON_H */