2 * ARMV7M System emulation.
4 * Copyright (c) 2006-2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licensed 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 access. */
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 const MemoryRegionOps bitband_ops
= {
111 .read
= { bitband_readb
, bitband_readw
, bitband_readl
, },
112 .write
= { bitband_writeb
, bitband_writew
, bitband_writel
, },
114 .endianness
= DEVICE_NATIVE_ENDIAN
,
123 static int bitband_init(SysBusDevice
*dev
)
125 BitBandState
*s
= FROM_SYSBUS(BitBandState
, dev
);
127 memory_region_init_io(&s
->iomem
, &bitband_ops
, &s
->base
, "bitband",
129 sysbus_init_mmio_region(dev
, &s
->iomem
);
133 static void armv7m_bitband_init(void)
137 dev
= qdev_create(NULL
, "ARM,bitband-memory");
138 qdev_prop_set_uint32(dev
, "base", 0x20000000);
139 qdev_init_nofail(dev
);
140 sysbus_mmio_map(sysbus_from_qdev(dev
), 0, 0x22000000);
142 dev
= qdev_create(NULL
, "ARM,bitband-memory");
143 qdev_prop_set_uint32(dev
, "base", 0x40000000);
144 qdev_init_nofail(dev
);
145 sysbus_mmio_map(sysbus_from_qdev(dev
), 0, 0x42000000);
150 static void armv7m_reset(void *opaque
)
152 cpu_reset((CPUState
*)opaque
);
155 /* Init CPU and memory for a v7-M based board.
156 flash_size and sram_size are in kb.
157 Returns the NVIC array. */
159 qemu_irq
*armv7m_init(int flash_size
, int sram_size
,
160 const char *kernel_filename
, const char *cpu_model
)
164 /* FIXME: make this local state. */
165 static qemu_irq pic
[64];
177 cpu_model
= "cortex-m3";
178 env
= cpu_init(cpu_model
);
180 fprintf(stderr
, "Unable to find CPU definition\n");
185 /* > 32Mb SRAM gets complicated because it overlaps the bitband area.
186 We don't have proper commandline options, so allocate half of memory
187 as SRAM, up to a maximum of 32Mb, and the rest as code. */
188 if (ram_size
> (512 + 32) * 1024 * 1024)
189 ram_size
= (512 + 32) * 1024 * 1024;
190 sram_size
= (ram_size
/ 2) & TARGET_PAGE_MASK
;
191 if (sram_size
> 32 * 1024 * 1024)
192 sram_size
= 32 * 1024 * 1024;
193 code_size
= ram_size
- sram_size
;
196 /* Flash programming is done via the SCU, so pretend it is ROM. */
197 cpu_register_physical_memory(0, flash_size
,
198 qemu_ram_alloc(NULL
, "armv7m.flash",
199 flash_size
) | IO_MEM_ROM
);
200 cpu_register_physical_memory(0x20000000, sram_size
,
201 qemu_ram_alloc(NULL
, "armv7m.sram",
202 sram_size
) | IO_MEM_RAM
);
203 armv7m_bitband_init();
205 nvic
= qdev_create(NULL
, "armv7m_nvic");
207 qdev_init_nofail(nvic
);
208 cpu_pic
= arm_pic_init_cpu(env
);
209 sysbus_connect_irq(sysbus_from_qdev(nvic
), 0, cpu_pic
[ARM_PIC_CPU_IRQ
]);
210 for (i
= 0; i
< 64; i
++) {
211 pic
[i
] = qdev_get_gpio_in(nvic
, i
);
214 #ifdef TARGET_WORDS_BIGENDIAN
220 image_size
= load_elf(kernel_filename
, NULL
, NULL
, &entry
, &lowaddr
,
221 NULL
, big_endian
, ELF_MACHINE
, 1);
222 if (image_size
< 0) {
223 image_size
= load_image_targphys(kernel_filename
, 0, flash_size
);
226 if (image_size
< 0) {
227 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
232 /* Hack to map an additional page of ram at the top of the address
233 space. This stops qemu complaining about executing code outside RAM
234 when returning from an exception. */
235 cpu_register_physical_memory(0xfffff000, 0x1000,
236 qemu_ram_alloc(NULL
, "armv7m.hack",
237 0x1000) | IO_MEM_RAM
);
239 qemu_register_reset(armv7m_reset
, env
);
243 static SysBusDeviceInfo bitband_info
= {
244 .init
= bitband_init
,
245 .qdev
.name
= "ARM,bitband-memory",
246 .qdev
.size
= sizeof(BitBandState
),
247 .qdev
.props
= (Property
[]) {
248 DEFINE_PROP_UINT32("base", BitBandState
, base
, 0),
249 DEFINE_PROP_END_OF_LIST(),
253 static void armv7m_register_devices(void)
255 sysbus_register_withprop(&bitband_info
);
258 device_init(armv7m_register_devices
)