[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-arm] [PATCH v3 07/30] hw/arm: Express dependencies of integratorcp
From: |
Thomas Huth |
Subject: |
[Qemu-arm] [PATCH v3 07/30] hw/arm: Express dependencies of integratorcp with Kconfig |
Date: |
Sat, 23 Feb 2019 08:48:59 +0100 |
This patch is slightly 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 | 8 +-------
hw/arm/Kconfig | 9 +++++++++
hw/display/Kconfig | 1 +
3 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak
index c91f526..74382cc 100644
--- a/default-configs/arm-softmmu.mak
+++ b/default-configs/arm-softmmu.mak
@@ -7,6 +7,7 @@ CONFIG_PCI_DEVICES=y
CONFIG_EXYNOS4=y
CONFIG_HIGHBANK=y
+CONFIG_INTEGRATOR=y
CONFIG_VGA=y
CONFIG_NAND=y
@@ -31,7 +32,6 @@ CONFIG_ADS7846=y
CONFIG_MAX111X=y
CONFIG_SSI_SD=y
CONFIG_SSI_M25P80=y
-CONFIG_SMC91C111=y
CONFIG_ALLWINNER_EMAC=y
CONFIG_IMX_FEC=y
CONFIG_FTGMAC100=y
@@ -48,10 +48,7 @@ CONFIG_ARM11MPCORE=y
CONFIG_NETDUINO2=y
CONFIG_PL041=y
-CONFIG_PL050=y
CONFIG_PL080=y
-CONFIG_PL110=y
-CONFIG_PL181=y
CONFIG_PL190=y
CONFIG_PL330=y
CONFIG_CADENCE=y
@@ -113,9 +110,6 @@ CONFIG_VFIO_PLATFORM=y
CONFIG_VFIO_XGMAC=y
CONFIG_VFIO_AMD_XGBE=y
-CONFIG_INTEGRATOR=y
-CONFIG_INTEGRATOR_DEBUG=y
-
CONFIG_ALLWINNER_A10_PIT=y
CONFIG_ALLWINNER_A10_PIC=y
CONFIG_ALLWINNER_A10=y
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index aea7301..6a34ce1 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -33,6 +33,15 @@ config HIGHBANK
config INTEGRATOR
bool
+ select ARM_TIMER
+ select INTEGRATOR_DEBUG
+ select PL011 # UART
+ select PL031 # RTC
+ select PL050 # keyboard/mouse
+ select PL110 # pl111 LCD controller
+ select PL181 # display
+ select PCI
+ select SMC91C111
config MAINSTONE
bool
diff --git a/hw/display/Kconfig b/hw/display/Kconfig
index ee3acd9..34c8c12 100644
--- a/hw/display/Kconfig
+++ b/hw/display/Kconfig
@@ -21,6 +21,7 @@ config JAZZ_LED
config PL110
bool
+ select FRAMEBUFFER
config SII9022
bool
--
1.8.3.1
- [Qemu-arm] [PATCH v3 00/30] Kconfig dependencies for ARM machines, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 01/30] hw/arm/Kconfig: Add a config switch for MUSCA, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 05/30] hw/arm: Express dependencies of the exynos machines with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 04/30] hw/sd/sdhci: Move PCI-related code into a separate file, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 07/30] hw/arm: Express dependencies of integratorcp with Kconfig,
Thomas Huth <=
- [Qemu-arm] [PATCH v3 08/30] hw/arm: Express dependencies of the fsl-imx31 machine with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 02/30] hw/pci/pci-stub: Add msi_enabled() and msi_notify() to the pci stubs, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 03/30] hw/ide/ahci: Add a Kconfig switch for the AHDI-ICH9 device, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 06/30] hw/arm: Express dependencies of the highbank machines with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 09/30] hw/arm: Express dependencies of musicpal with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 10/30] hw/arm: Express dependencies of the OMAP machines with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 11/30] hw/arm: Express dependencies of stellaris with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 12/30] hw/arm: Express dependencies of realview, versatile and vexpress with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 15/30] hw/arm: Express dependencies of collie with Kconfig, Thomas Huth, 2019/02/23
- [Qemu-arm] [PATCH v3 16/30] hw/arm: Express dependencies of the aspeed boards with Kconfig, Thomas Huth, 2019/02/23