mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
2eb5578b47
Model the ARM MPS2/MPS2+ FPGA based development board. The MPS2 and MPS2+ dev boards are FPGA based (the 2+ has a bigger FPGA but is otherwise the same as the 2). Since the CPU itself and most of the devices are in the FPGA, the details of the board as seen by the guest depend significantly on the FPGA image. We model the following FPGA images: "mps2_an385" -- Cortex-M3 as documented in ARM Application Note AN385 "mps2_an511" -- Cortex-M3 'DesignStart' as documented in AN511 They are fairly similar but differ in the details for some peripherals. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1500029487-14822-2-git-send-email-peter.maydell@linaro.org Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
21 lines
952 B
Text
21 lines
952 B
Text
obj-y += boot.o collie.o exynos4_boards.o gumstix.o highbank.o
|
|
obj-$(CONFIG_DIGIC) += digic_boards.o
|
|
obj-y += integratorcp.o mainstone.o musicpal.o nseries.o
|
|
obj-y += omap_sx1.o palm.o realview.o spitz.o stellaris.o
|
|
obj-y += tosa.o versatilepb.o vexpress.o virt.o xilinx_zynq.o z2.o
|
|
obj-$(CONFIG_ACPI) += virt-acpi-build.o
|
|
obj-y += netduino2.o
|
|
obj-y += sysbus-fdt.o
|
|
|
|
obj-y += armv7m.o exynos4210.o pxa2xx.o pxa2xx_gpio.o pxa2xx_pic.o
|
|
obj-$(CONFIG_DIGIC) += digic.o
|
|
obj-y += omap1.o omap2.o strongarm.o
|
|
obj-$(CONFIG_ALLWINNER_A10) += allwinner-a10.o cubieboard.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_peripherals.o bcm2836.o raspi.o
|
|
obj-$(CONFIG_STM32F205_SOC) += stm32f205_soc.o
|
|
obj-$(CONFIG_XLNX_ZYNQMP) += xlnx-zynqmp.o xlnx-ep108.o
|
|
obj-$(CONFIG_FSL_IMX25) += fsl-imx25.o imx25_pdk.o
|
|
obj-$(CONFIG_FSL_IMX31) += fsl-imx31.o kzm.o
|
|
obj-$(CONFIG_FSL_IMX6) += fsl-imx6.o sabrelite.o
|
|
obj-$(CONFIG_ASPEED_SOC) += aspeed_soc.o aspeed.o
|
|
obj-$(CONFIG_MPS2) += mps2.o
|