2 * ARMV7M System emulation.
4 * Copyright (c) 2006-2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licenced under the GPL.
15 /* Bitbanded IO. Each word corresponds to a single bit. */
17 /* Get the byte address of the real memory for a bitband acess. */
18 static inline uint32_t bitband_addr(void * opaque
, uint32_t addr
)
22 res
= *(uint32_t *)opaque
;
23 res
|= (addr
& 0x1ffffff) >> 5;
28 static uint32_t bitband_readb(void *opaque
, target_phys_addr_t offset
)
31 cpu_physical_memory_read(bitband_addr(opaque
, offset
), &v
, 1);
32 return (v
& (1 << ((offset
>> 2) & 7))) != 0;
35 static void bitband_writeb(void *opaque
, target_phys_addr_t offset
,
41 addr
= bitband_addr(opaque
, offset
);
42 mask
= (1 << ((offset
>> 2) & 7));
43 cpu_physical_memory_read(addr
, &v
, 1);
48 cpu_physical_memory_write(addr
, &v
, 1);
51 static uint32_t bitband_readw(void *opaque
, target_phys_addr_t offset
)
56 addr
= bitband_addr(opaque
, offset
) & ~1;
57 mask
= (1 << ((offset
>> 2) & 15));
59 cpu_physical_memory_read(addr
, (uint8_t *)&v
, 2);
60 return (v
& mask
) != 0;
63 static void bitband_writew(void *opaque
, target_phys_addr_t offset
,
69 addr
= bitband_addr(opaque
, offset
) & ~1;
70 mask
= (1 << ((offset
>> 2) & 15));
72 cpu_physical_memory_read(addr
, (uint8_t *)&v
, 2);
77 cpu_physical_memory_write(addr
, (uint8_t *)&v
, 2);
80 static uint32_t bitband_readl(void *opaque
, target_phys_addr_t offset
)
85 addr
= bitband_addr(opaque
, offset
) & ~3;
86 mask
= (1 << ((offset
>> 2) & 31));
88 cpu_physical_memory_read(addr
, (uint8_t *)&v
, 4);
89 return (v
& mask
) != 0;
92 static void bitband_writel(void *opaque
, target_phys_addr_t offset
,
98 addr
= bitband_addr(opaque
, offset
) & ~3;
99 mask
= (1 << ((offset
>> 2) & 31));
100 mask
= tswap32(mask
);
101 cpu_physical_memory_read(addr
, (uint8_t *)&v
, 4);
106 cpu_physical_memory_write(addr
, (uint8_t *)&v
, 4);
109 static CPUReadMemoryFunc
* const bitband_readfn
[] = {
115 static CPUWriteMemoryFunc
* const bitband_writefn
[] = {
126 static int bitband_init(SysBusDevice
*dev
)
128 BitBandState
*s
= FROM_SYSBUS(BitBandState
, dev
);
131 iomemtype
= cpu_register_io_memory(bitband_readfn
, bitband_writefn
,
132 &s
->base
, DEVICE_NATIVE_ENDIAN
);
133 sysbus_init_mmio(dev
, 0x02000000, iomemtype
);
137 static void armv7m_bitband_init(void)
141 dev
= qdev_create(NULL
, "ARM,bitband-memory");
142 qdev_prop_set_uint32(dev
, "base", 0x20000000);
143 qdev_init_nofail(dev
);
144 sysbus_mmio_map(sysbus_from_qdev(dev
), 0, 0x22000000);
146 dev
= qdev_create(NULL
, "ARM,bitband-memory");
147 qdev_prop_set_uint32(dev
, "base", 0x40000000);
148 qdev_init_nofail(dev
);
149 sysbus_mmio_map(sysbus_from_qdev(dev
), 0, 0x42000000);
154 static void armv7m_reset(void *opaque
)
156 cpu_reset((CPUState
*)opaque
);
159 /* Init CPU and memory for a v7-M based board.
160 flash_size and sram_size are in kb.
161 Returns the NVIC array. */
163 qemu_irq
*armv7m_init(int flash_size
, int sram_size
,
164 const char *kernel_filename
, const char *cpu_model
)
168 /* FIXME: make this local state. */
169 static qemu_irq pic
[64];
181 cpu_model
= "cortex-m3";
182 env
= cpu_init(cpu_model
);
184 fprintf(stderr
, "Unable to find CPU definition\n");
189 /* > 32Mb SRAM gets complicated because it overlaps the bitband area.
190 We don't have proper commandline options, so allocate half of memory
191 as SRAM, up to a maximum of 32Mb, and the rest as code. */
192 if (ram_size
> (512 + 32) * 1024 * 1024)
193 ram_size
= (512 + 32) * 1024 * 1024;
194 sram_size
= (ram_size
/ 2) & TARGET_PAGE_MASK
;
195 if (sram_size
> 32 * 1024 * 1024)
196 sram_size
= 32 * 1024 * 1024;
197 code_size
= ram_size
- sram_size
;
200 /* Flash programming is done via the SCU, so pretend it is ROM. */
201 cpu_register_physical_memory(0, flash_size
,
202 qemu_ram_alloc(NULL
, "armv7m.flash",
203 flash_size
) | IO_MEM_ROM
);
204 cpu_register_physical_memory(0x20000000, sram_size
,
205 qemu_ram_alloc(NULL
, "armv7m.sram",
206 sram_size
) | IO_MEM_RAM
);
207 armv7m_bitband_init();
209 nvic
= qdev_create(NULL
, "armv7m_nvic");
211 qdev_init_nofail(nvic
);
212 cpu_pic
= arm_pic_init_cpu(env
);
213 sysbus_connect_irq(sysbus_from_qdev(nvic
), 0, cpu_pic
[ARM_PIC_CPU_IRQ
]);
214 for (i
= 0; i
< 64; i
++) {
215 pic
[i
] = qdev_get_gpio_in(nvic
, i
);
218 #ifdef TARGET_WORDS_BIGENDIAN
224 image_size
= load_elf(kernel_filename
, NULL
, NULL
, &entry
, &lowaddr
,
225 NULL
, big_endian
, ELF_MACHINE
, 1);
226 if (image_size
< 0) {
227 image_size
= load_image_targphys(kernel_filename
, 0, flash_size
);
230 if (image_size
< 0) {
231 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
236 /* Hack to map an additional page of ram at the top of the address
237 space. This stops qemu complaining about executing code outside RAM
238 when returning from an exception. */
239 cpu_register_physical_memory(0xfffff000, 0x1000,
240 qemu_ram_alloc(NULL
, "armv7m.hack",
241 0x1000) | IO_MEM_RAM
);
243 qemu_register_reset(armv7m_reset
, env
);
247 static SysBusDeviceInfo bitband_info
= {
248 .init
= bitband_init
,
249 .qdev
.name
= "ARM,bitband-memory",
250 .qdev
.size
= sizeof(BitBandState
),
251 .qdev
.props
= (Property
[]) {
252 DEFINE_PROP_UINT32("base", BitBandState
, base
, 0),
253 DEFINE_PROP_END_OF_LIST(),
257 static void armv7m_register_devices(void)
259 sysbus_register_withprop(&bitband_info
);
262 device_init(armv7m_register_devices
)