armv7m.c 7.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
 */

10
#include "hw/sysbus.h"
11
#include "hw/arm/arm.h"
12
#include "hw/loader.h"
B
Blue Swirl 已提交
13
#include "elf.h"
P
pbrook 已提交
14 15 16

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

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

22
    res = *(uint32_t *)opaque;
P
pbrook 已提交
23 24 25 26 27
    res |= (addr & 0x1ffffff) >> 5;
    return res;

}

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

A
Avi Kivity 已提交
35
static void bitband_writeb(void *opaque, hwaddr offset,
P
pbrook 已提交
36 37 38 39 40
                           uint32_t value)
{
    uint32_t addr;
    uint8_t mask;
    uint8_t v;
41
    addr = bitband_addr(opaque, offset);
P
pbrook 已提交
42 43 44 45 46 47 48 49 50
    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 已提交
51
static uint32_t bitband_readw(void *opaque, hwaddr offset)
P
pbrook 已提交
52 53 54 55
{
    uint32_t addr;
    uint16_t mask;
    uint16_t v;
56
    addr = bitband_addr(opaque, offset) & ~1;
P
pbrook 已提交
57 58
    mask = (1 << ((offset >> 2) & 15));
    mask = tswap16(mask);
S
Stefan Weil 已提交
59
    cpu_physical_memory_read(addr, &v, 2);
P
pbrook 已提交
60 61 62
    return (v & mask) != 0;
}

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

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

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

A
Avi Kivity 已提交
109 110 111 112 113 114
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 已提交
115 116
};

117 118 119
#define TYPE_BITBAND "ARM,bitband-memory"
#define BITBAND(obj) OBJECT_CHECK(BitBandState, (obj), TYPE_BITBAND)

P
Paul Brook 已提交
120
typedef struct {
121 122 123 124
    /*< private >*/
    SysBusDevice parent_obj;
    /*< public >*/

A
Avi Kivity 已提交
125
    MemoryRegion iomem;
P
Paul Brook 已提交
126 127 128
    uint32_t base;
} BitBandState;

129
static int bitband_init(SysBusDevice *dev)
P
pbrook 已提交
130
{
131
    BitBandState *s = BITBAND(dev);
P
pbrook 已提交
132

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

static void armv7m_bitband_init(void)
{
    DeviceState *dev;

143
    dev = qdev_create(NULL, TYPE_BITBAND);
G
Gerd Hoffmann 已提交
144
    qdev_prop_set_uint32(dev, "base", 0x20000000);
M
Markus Armbruster 已提交
145
    qdev_init_nofail(dev);
146
    sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, 0x22000000);
P
Paul Brook 已提交
147

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

/* Board init.  */
P
Paul Brook 已提交
155 156 157

static void armv7m_reset(void *opaque)
{
158 159 160
    ARMCPU *cpu = opaque;

    cpu_reset(CPU(cpu));
P
Paul Brook 已提交
161 162
}

P
pbrook 已提交
163 164 165 166
/* Init CPU and memory for a v7-M based board.
   flash_size and sram_size are in kb.
   Returns the NVIC array.  */

A
Avi Kivity 已提交
167 168
qemu_irq *armv7m_init(MemoryRegion *address_space_mem,
                      int flash_size, int sram_size,
P
pbrook 已提交
169 170
                      const char *kernel_filename, const char *cpu_model)
{
171
    ARMCPU *cpu;
A
Andreas Färber 已提交
172
    CPUARMState *env;
P
Paul Brook 已提交
173 174 175
    DeviceState *nvic;
    /* FIXME: make this local state.  */
    static qemu_irq pic[64];
P
pbrook 已提交
176 177 178
    int image_size;
    uint64_t entry;
    uint64_t lowaddr;
P
Paul Brook 已提交
179
    int i;
B
Blue Swirl 已提交
180
    int big_endian;
A
Avi Kivity 已提交
181 182 183
    MemoryRegion *sram = g_new(MemoryRegion, 1);
    MemoryRegion *flash = g_new(MemoryRegion, 1);
    MemoryRegion *hack = g_new(MemoryRegion, 1);
P
pbrook 已提交
184 185 186 187

    flash_size *= 1024;
    sram_size *= 1024;

188
    if (cpu_model == NULL) {
P
pbrook 已提交
189
	cpu_model = "cortex-m3";
190 191 192
    }
    cpu = cpu_arm_init(cpu_model);
    if (cpu == NULL) {
P
pbrook 已提交
193 194 195
        fprintf(stderr, "Unable to find CPU definition\n");
        exit(1);
    }
196
    env = &cpu->env;
P
pbrook 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210

#if 0
    /* > 32Mb SRAM gets complicated because it overlaps the bitband area.
       We don't have proper commandline options, so allocate half of memory
       as SRAM, up to a maximum of 32Mb, and the rest as code.  */
    if (ram_size > (512 + 32) * 1024 * 1024)
        ram_size = (512 + 32) * 1024 * 1024;
    sram_size = (ram_size / 2) & TARGET_PAGE_MASK;
    if (sram_size > 32 * 1024 * 1024)
        sram_size = 32 * 1024 * 1024;
    code_size = ram_size - sram_size;
#endif

    /* Flash programming is done via the SCU, so pretend it is ROM.  */
211
    memory_region_init_ram(flash, NULL, "armv7m.flash", flash_size);
212
    vmstate_register_ram_global(flash);
A
Avi Kivity 已提交
213 214
    memory_region_set_readonly(flash, true);
    memory_region_add_subregion(address_space_mem, 0, flash);
215
    memory_region_init_ram(sram, NULL, "armv7m.sram", sram_size);
216
    vmstate_register_ram_global(sram);
A
Avi Kivity 已提交
217
    memory_region_add_subregion(address_space_mem, 0x20000000, sram);
P
pbrook 已提交
218 219
    armv7m_bitband_init();

P
Paul Brook 已提交
220
    nvic = qdev_create(NULL, "armv7m_nvic");
P
Paul Brook 已提交
221
    env->nvic = nvic;
M
Markus Armbruster 已提交
222
    qdev_init_nofail(nvic);
223 224
    sysbus_connect_irq(SYS_BUS_DEVICE(nvic), 0,
                       qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_IRQ));
P
Paul Brook 已提交
225
    for (i = 0; i < 64; i++) {
P
Paul Brook 已提交
226
        pic[i] = qdev_get_gpio_in(nvic, i);
P
Paul Brook 已提交
227
    }
P
pbrook 已提交
228

B
Blue Swirl 已提交
229 230 231 232 233 234
#ifdef TARGET_WORDS_BIGENDIAN
    big_endian = 1;
#else
    big_endian = 0;
#endif

235 236 237 238 239
    if (!kernel_filename) {
        fprintf(stderr, "Guest image must be specified (using -kernel)\n");
        exit(1);
    }

240 241
    image_size = load_elf(kernel_filename, NULL, NULL, &entry, &lowaddr,
                          NULL, big_endian, ELF_MACHINE, 1);
P
pbrook 已提交
242
    if (image_size < 0) {
243
        image_size = load_image_targphys(kernel_filename, 0, flash_size);
P
pbrook 已提交
244 245 246 247 248 249 250 251 252 253 254
	lowaddr = 0;
    }
    if (image_size < 0) {
        fprintf(stderr, "qemu: could not load kernel '%s'\n",
                kernel_filename);
        exit(1);
    }

    /* 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.  */
255
    memory_region_init_ram(hack, NULL, "armv7m.hack", 0x1000);
256
    vmstate_register_ram_global(hack);
A
Avi Kivity 已提交
257
    memory_region_add_subregion(address_space_mem, 0xfffff000, hack);
P
pbrook 已提交
258

259
    qemu_register_reset(armv7m_reset, cpu);
P
pbrook 已提交
260 261
    return pic;
}
P
Paul Brook 已提交
262

263 264 265 266 267 268 269
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)
{
270
    DeviceClass *dc = DEVICE_CLASS(klass);
271 272 273
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = bitband_init;
274
    dc->props = bitband_properties;
275 276
}

277
static const TypeInfo bitband_info = {
278
    .name          = TYPE_BITBAND,
279 280 281
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(BitBandState),
    .class_init    = bitband_class_init,
G
Gerd Hoffmann 已提交
282 283
};

A
Andreas Färber 已提交
284
static void armv7m_register_types(void)
P
Paul Brook 已提交
285
{
286
    type_register_static(&bitband_info);
P
Paul Brook 已提交
287 288
}

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