armv7m.c 6.6 KB
Newer Older
P
pbrook 已提交
1 2 3 4 5 6
/*
 * ARMV7M System emulation.
 *
 * Copyright (c) 2006-2007 CodeSourcery.
 * Written by Paul Brook
 *
7
 * This code is licensed under the GPL.
P
pbrook 已提交
8 9
 */

P
Peter Maydell 已提交
10
#include "qemu/osdep.h"
11
#include "qapi/error.h"
12
#include "hw/sysbus.h"
13
#include "hw/arm/arm.h"
14
#include "hw/loader.h"
B
Blue Swirl 已提交
15
#include "elf.h"
16 17
#include "sysemu/qtest.h"
#include "qemu/error-report.h"
P
pbrook 已提交
18 19 20

/* Bitbanded IO.  Each word corresponds to a single bit.  */

21
/* Get the byte address of the real memory for a bitband access.  */
22
static inline uint32_t bitband_addr(void * opaque, uint32_t addr)
P
pbrook 已提交
23 24 25
{
    uint32_t res;

26
    res = *(uint32_t *)opaque;
P
pbrook 已提交
27 28 29 30 31
    res |= (addr & 0x1ffffff) >> 5;
    return res;

}

A
Avi Kivity 已提交
32
static uint32_t bitband_readb(void *opaque, hwaddr offset)
P
pbrook 已提交
33 34
{
    uint8_t v;
35
    cpu_physical_memory_read(bitband_addr(opaque, offset), &v, 1);
P
pbrook 已提交
36 37 38
    return (v & (1 << ((offset >> 2) & 7))) != 0;
}

A
Avi Kivity 已提交
39
static void bitband_writeb(void *opaque, hwaddr offset,
P
pbrook 已提交
40 41 42 43 44
                           uint32_t value)
{
    uint32_t addr;
    uint8_t mask;
    uint8_t v;
45
    addr = bitband_addr(opaque, offset);
P
pbrook 已提交
46 47 48 49 50 51 52 53 54
    mask = (1 << ((offset >> 2) & 7));
    cpu_physical_memory_read(addr, &v, 1);
    if (value & 1)
        v |= mask;
    else
        v &= ~mask;
    cpu_physical_memory_write(addr, &v, 1);
}

A
Avi Kivity 已提交
55
static uint32_t bitband_readw(void *opaque, hwaddr offset)
P
pbrook 已提交
56 57 58 59
{
    uint32_t addr;
    uint16_t mask;
    uint16_t v;
60
    addr = bitband_addr(opaque, offset) & ~1;
P
pbrook 已提交
61 62
    mask = (1 << ((offset >> 2) & 15));
    mask = tswap16(mask);
S
Stefan Weil 已提交
63
    cpu_physical_memory_read(addr, &v, 2);
P
pbrook 已提交
64 65 66
    return (v & mask) != 0;
}

A
Avi Kivity 已提交
67
static void bitband_writew(void *opaque, hwaddr offset,
P
pbrook 已提交
68 69 70 71 72
                           uint32_t value)
{
    uint32_t addr;
    uint16_t mask;
    uint16_t v;
73
    addr = bitband_addr(opaque, offset) & ~1;
P
pbrook 已提交
74 75
    mask = (1 << ((offset >> 2) & 15));
    mask = tswap16(mask);
S
Stefan Weil 已提交
76
    cpu_physical_memory_read(addr, &v, 2);
P
pbrook 已提交
77 78 79 80
    if (value & 1)
        v |= mask;
    else
        v &= ~mask;
S
Stefan Weil 已提交
81
    cpu_physical_memory_write(addr, &v, 2);
P
pbrook 已提交
82 83
}

A
Avi Kivity 已提交
84
static uint32_t bitband_readl(void *opaque, hwaddr offset)
P
pbrook 已提交
85 86 87 88
{
    uint32_t addr;
    uint32_t mask;
    uint32_t v;
89
    addr = bitband_addr(opaque, offset) & ~3;
P
pbrook 已提交
90 91
    mask = (1 << ((offset >> 2) & 31));
    mask = tswap32(mask);
S
Stefan Weil 已提交
92
    cpu_physical_memory_read(addr, &v, 4);
P
pbrook 已提交
93 94 95
    return (v & mask) != 0;
}

A
Avi Kivity 已提交
96
static void bitband_writel(void *opaque, hwaddr offset,
P
pbrook 已提交
97 98 99 100 101
                           uint32_t value)
{
    uint32_t addr;
    uint32_t mask;
    uint32_t v;
102
    addr = bitband_addr(opaque, offset) & ~3;
P
pbrook 已提交
103 104
    mask = (1 << ((offset >> 2) & 31));
    mask = tswap32(mask);
S
Stefan Weil 已提交
105
    cpu_physical_memory_read(addr, &v, 4);
P
pbrook 已提交
106 107 108 109
    if (value & 1)
        v |= mask;
    else
        v &= ~mask;
S
Stefan Weil 已提交
110
    cpu_physical_memory_write(addr, &v, 4);
P
pbrook 已提交
111 112
}

A
Avi Kivity 已提交
113 114 115 116 117 118
static const MemoryRegionOps bitband_ops = {
    .old_mmio = {
        .read = { bitband_readb, bitband_readw, bitband_readl, },
        .write = { bitband_writeb, bitband_writew, bitband_writel, },
    },
    .endianness = DEVICE_NATIVE_ENDIAN,
P
pbrook 已提交
119 120
};

121 122 123
#define TYPE_BITBAND "ARM,bitband-memory"
#define BITBAND(obj) OBJECT_CHECK(BitBandState, (obj), TYPE_BITBAND)

P
Paul Brook 已提交
124
typedef struct {
125 126 127 128
    /*< private >*/
    SysBusDevice parent_obj;
    /*< public >*/

A
Avi Kivity 已提交
129
    MemoryRegion iomem;
P
Paul Brook 已提交
130 131 132
    uint32_t base;
} BitBandState;

133
static int bitband_init(SysBusDevice *dev)
P
pbrook 已提交
134
{
135
    BitBandState *s = BITBAND(dev);
P
pbrook 已提交
136

137 138
    memory_region_init_io(&s->iomem, OBJECT(s), &bitband_ops, &s->base,
                          "bitband", 0x02000000);
139
    sysbus_init_mmio(dev, &s->iomem);
140
    return 0;
P
Paul Brook 已提交
141 142 143 144 145 146
}

static void armv7m_bitband_init(void)
{
    DeviceState *dev;

147
    dev = qdev_create(NULL, TYPE_BITBAND);
G
Gerd Hoffmann 已提交
148
    qdev_prop_set_uint32(dev, "base", 0x20000000);
M
Markus Armbruster 已提交
149
    qdev_init_nofail(dev);
150
    sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, 0x22000000);
P
Paul Brook 已提交
151

152
    dev = qdev_create(NULL, TYPE_BITBAND);
G
Gerd Hoffmann 已提交
153
    qdev_prop_set_uint32(dev, "base", 0x40000000);
M
Markus Armbruster 已提交
154
    qdev_init_nofail(dev);
155
    sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, 0x42000000);
P
pbrook 已提交
156 157 158
}

/* Board init.  */
P
Paul Brook 已提交
159 160 161

static void armv7m_reset(void *opaque)
{
162 163 164
    ARMCPU *cpu = opaque;

    cpu_reset(CPU(cpu));
P
Paul Brook 已提交
165 166
}

P
pbrook 已提交
167
/* Init CPU and memory for a v7-M based board.
168
   mem_size is in bytes.
P
pbrook 已提交
169 170
   Returns the NVIC array.  */

171
DeviceState *armv7m_init(MemoryRegion *system_memory, int mem_size, int num_irq,
P
pbrook 已提交
172 173
                      const char *kernel_filename, const char *cpu_model)
{
174
    ARMCPU *cpu;
A
Andreas Färber 已提交
175
    CPUARMState *env;
P
Paul Brook 已提交
176
    DeviceState *nvic;
P
pbrook 已提交
177 178 179
    int image_size;
    uint64_t entry;
    uint64_t lowaddr;
B
Blue Swirl 已提交
180
    int big_endian;
A
Avi Kivity 已提交
181
    MemoryRegion *hack = g_new(MemoryRegion, 1);
P
pbrook 已提交
182

183
    if (cpu_model == NULL) {
P
pbrook 已提交
184
	cpu_model = "cortex-m3";
185 186 187
    }
    cpu = cpu_arm_init(cpu_model);
    if (cpu == NULL) {
P
pbrook 已提交
188 189 190
        fprintf(stderr, "Unable to find CPU definition\n");
        exit(1);
    }
191
    env = &cpu->env;
P
pbrook 已提交
192 193 194

    armv7m_bitband_init();

P
Paul Brook 已提交
195
    nvic = qdev_create(NULL, "armv7m_nvic");
196
    qdev_prop_set_uint32(nvic, "num-irq", num_irq);
P
Paul Brook 已提交
197
    env->nvic = nvic;
M
Markus Armbruster 已提交
198
    qdev_init_nofail(nvic);
199 200
    sysbus_connect_irq(SYS_BUS_DEVICE(nvic), 0,
                       qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_IRQ));
P
pbrook 已提交
201

B
Blue Swirl 已提交
202 203 204 205 206 207
#ifdef TARGET_WORDS_BIGENDIAN
    big_endian = 1;
#else
    big_endian = 0;
#endif

208
    if (!kernel_filename && !qtest_enabled()) {
209 210 211 212
        fprintf(stderr, "Guest image must be specified (using -kernel)\n");
        exit(1);
    }

213 214
    if (kernel_filename) {
        image_size = load_elf(kernel_filename, NULL, NULL, &entry, &lowaddr,
215
                              NULL, big_endian, EM_ARM, 1, 0);
216
        if (image_size < 0) {
217
            image_size = load_image_targphys(kernel_filename, 0, mem_size);
218 219 220 221 222 223
            lowaddr = 0;
        }
        if (image_size < 0) {
            error_report("Could not load kernel '%s'", kernel_filename);
            exit(1);
        }
P
pbrook 已提交
224 225 226 227 228
    }

    /* Hack to map an additional page of ram at the top of the address
       space.  This stops qemu complaining about executing code outside RAM
       when returning from an exception.  */
229
    memory_region_init_ram(hack, NULL, "armv7m.hack", 0x1000, &error_fatal);
230
    vmstate_register_ram_global(hack);
231
    memory_region_add_subregion(system_memory, 0xfffff000, hack);
P
pbrook 已提交
232

233
    qemu_register_reset(armv7m_reset, cpu);
234
    return nvic;
P
pbrook 已提交
235
}
P
Paul Brook 已提交
236

237 238 239 240 241 242 243
static Property bitband_properties[] = {
    DEFINE_PROP_UINT32("base", BitBandState, base, 0),
    DEFINE_PROP_END_OF_LIST(),
};

static void bitband_class_init(ObjectClass *klass, void *data)
{
244
    DeviceClass *dc = DEVICE_CLASS(klass);
245 246 247
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = bitband_init;
248
    dc->props = bitband_properties;
249 250
}

251
static const TypeInfo bitband_info = {
252
    .name          = TYPE_BITBAND,
253 254 255
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(BitBandState),
    .class_init    = bitband_class_init,
G
Gerd Hoffmann 已提交
256 257
};

A
Andreas Färber 已提交
258
static void armv7m_register_types(void)
P
Paul Brook 已提交
259
{
260
    type_register_static(&bitband_info);
P
Paul Brook 已提交
261 262
}

A
Andreas Färber 已提交
263
type_init(armv7m_register_types)