[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-arm] [PATCH 10/25] hw/arm: Express dependencies of xilinx-zynq wit
From: |
Thomas Huth |
Subject: |
[Qemu-arm] [PATCH 10/25] hw/arm: Express dependencies of xilinx-zynq with Kconfig |
Date: |
Sat, 9 Feb 2019 07:39:11 +0100 |
Add Kconfig dependencies for the xilinx-zynq-a9 board.
This patch is based on earlier work by Ákos Kovács (i.e.
his "hw/arm/Kconfig: Add ARM Kconfig" patch).
Signed-off-by: Thomas Huth <address@hidden>
---
default-configs/arm-softmmu.mak | 7 +------
hw/arm/Kconfig | 14 ++++++++++++++
2 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak
index 1db76f6..5c43bb3 100644
--- a/default-configs/arm-softmmu.mak
+++ b/default-configs/arm-softmmu.mak
@@ -15,6 +15,7 @@ CONFIG_STELLARIS=y
CONFIG_REALVIEW=y
CONFIG_VERSATILE=y
CONFIG_VEXPRESS=y
+CONFIG_ZYNQ=y
CONFIG_MAINSTONE=y
CONFIG_GUMSTIX=y
CONFIG_SPITZ=y
@@ -34,16 +35,11 @@ CONFIG_VIRTIO_MMIO=y
CONFIG_NETDUINO2=y
-CONFIG_PL330=y
-CONFIG_CADENCE=y
CONFIG_FRAMEBUFFER=y
-CONFIG_XILINX_SPIPS=y
-CONFIG_ZYNQ_DEVCFG=y
CONFIG_DIGIC=y
CONFIG_MPS2=y
CONFIG_RASPI=y
-CONFIG_ZYNQ=y
CONFIG_STM32F2XX_TIMER=y
CONFIG_STM32F2XX_USART=y
CONFIG_STM32F2XX_SYSCFG=y
@@ -98,7 +94,6 @@ CONFIG_SMBUS_EEPROM=y
CONFIG_GPIO_KEY=y
CONFIG_MSF2=y
CONFIG_FW_CFG_DMA=y
-CONFIG_XILINX_AXI=y
CONFIG_PCI_EXPRESS_DESIGNWARE=y
CONFIG_STRONGARM=y
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index 95f2713..67f1228 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -208,6 +208,20 @@ config VEXPRESS
config ZYNQ
bool
+ select A9MPCORE
+ select CADENCE # UART
+ select PCI
+ select PFLASH_CFI02
+ select PL330
+ select SDHCI
+ select SSI_M25P80
+ select USB_EHCI
+ select USB_EHCI_SYSBUS
+ select XILINX # UART
+ select XILINX_AXI
+ select XILINX_SPI
+ select XILINX_SPIPS
+ select ZYNQ_DEVCFG
config ARM_V7M
bool
--
1.8.3.1
- [Qemu-arm] [PATCH 00/25] Kconfig dependencies for ARM machines, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 06/25] hw/arm: Express dependencies of the OMAP machines with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 05/25] hw/arm: Express dependencies of musicpal with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 01/25] hw/arm: Express dependencies of the exynos machines with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 10/25] hw/arm: Express dependencies of xilinx-zynq with Kconfig,
Thomas Huth <=
- [Qemu-arm] [PATCH 12/25] hw/arm: Express dependencies of the aspeed boards with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 04/25] hw/arm: Express dependencies of the fsl-imx31 machine with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 02/25] hw/arm: Express dependencies of the highbank machines with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 07/25] hw/arm: Express dependencies of stellaris with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 09/25] hw/arm: Express dependencies of the PXA2xx machines with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 03/25] hw/arm: Express dependencies of integratorcp with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 08/25] hw/arm: Express dependencies of realview, versatile and vexpress with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 13/25] hw/arm: Express dependencies of the virt machine with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 14/25] hw/arm: Express dependencies of netduino / stm32f2xx with Kconfig, Thomas Huth, 2019/02/09
- [Qemu-arm] [PATCH 11/25] hw/arm: Express dependencies of collie with Kconfig, Thomas Huth, 2019/02/09