4 * Copyright (c) 2017 Linaro Ltd
5 * Written by Peter Maydell <peter.maydell@linaro.org>
7 * This code is licensed under the GPL version 2 or later.
10 #ifndef HW_ARM_ARMV7M_H
11 #define HW_ARM_ARMV7M_H
13 #include "hw/sysbus.h"
14 #include "hw/intc/armv7m_nvic.h"
15 #include "target/arm/idau.h"
16 #include "qom/object.h"
18 #define TYPE_BITBAND "ARM,bitband-memory"
19 OBJECT_DECLARE_SIMPLE_TYPE(BitBandState
, BITBAND
)
23 SysBusDevice parent_obj
;
26 AddressSpace source_as
;
29 MemoryRegion
*source_memory
;
32 #define TYPE_ARMV7M "armv7m"
33 OBJECT_DECLARE_SIMPLE_TYPE(ARMv7MState
, ARMV7M
)
35 #define ARMV7M_NUM_BITBANDS 2
37 /* ARMv7M container object.
38 * + Unnamed GPIO input lines: external IRQ lines for the NVIC
39 * + Named GPIO output SYSRESETREQ: signalled for guest AIRCR.SYSRESETREQ.
40 * If this GPIO is not wired up then the NVIC will default to performing
41 * a qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET).
42 * + Property "cpu-type": CPU type to instantiate
43 * + Property "num-irq": number of external IRQ lines
44 * + Property "memory": MemoryRegion defining the physical address space
45 * that CPU accesses see. (The NVIC, bitbanding and other CPU-internal
46 * devices will be automatically layered on top of this view.)
47 * + Property "idau": IDAU interface (forwarded to CPU object)
48 * + Property "init-svtor": secure VTOR reset value (forwarded to CPU object)
49 * + Property "vfp": enable VFP (forwarded to CPU object)
50 * + Property "dsp": enable DSP (forwarded to CPU object)
51 * + Property "enable-bitband": expose bitbanded IO
55 SysBusDevice parent_obj
;
58 BitBandState bitband
[ARMV7M_NUM_BITBANDS
];
61 /* MemoryRegion we pass to the CPU, with our devices layered on
62 * top of the ones the board provides in board_memory.
64 MemoryRegion container
;
68 /* MemoryRegion the board provides to us (with its devices, RAM, etc) */
69 MemoryRegion
*board_memory
;
73 bool start_powered_off
;