]> Git Repo - qemu.git/commitdiff
hw/arm: Express dependencies of the microbit / nrf51 machine with Kconfig
authorThomas Huth <[email protected]>
Fri, 8 Feb 2019 12:33:40 +0000 (13:33 +0100)
committerThomas Huth <[email protected]>
Mon, 13 May 2019 07:36:32 +0000 (09:36 +0200)
Add Kconfig dependencies for the NRF51 / microbit machine.

Reviewed-by: Alistair Francis <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Tested-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Thomas Huth <[email protected]>
default-configs/arm-softmmu.mak
hw/arm/Kconfig
hw/arm/Makefile.objs

index 6dc388c43e53918cd3db663dcc772939cc7919f1..233937f394d9b6084ca1686cc70315c204378dd6 100644 (file)
@@ -35,11 +35,10 @@ CONFIG_RASPI=y
 CONFIG_DIGIC=y
 CONFIG_SABRELITE=y
 CONFIG_EMCRAFT_SF2=y
+CONFIG_MICROBIT=y
 
 CONFIG_VGA=y
 
-CONFIG_NRF51_SOC=y
-
 CONFIG_FSL_IMX25=y
 CONFIG_FSL_IMX7=y
 CONFIG_FSL_IMX6UL=y
index 4a147497926d3b2c29eaa052826d1a103ac55c17..da091ac217640b3c0515db90e5b471c1c9edfb11 100644 (file)
@@ -350,8 +350,14 @@ config FSL_IMX6UL
     select IMX_I2C
     select SDHCI
 
+config MICROBIT
+    bool
+    select NRF51_SOC
+
 config NRF51_SOC
     bool
+    select I2C
+    select ARM_V7M
 
 config EMCRAFT_SF2
     bool
index eae9f6c4426005a8cb9db7c0b49296951dada670..994e67dd0da3de113ee8d04e030762bc83c57f6d 100644 (file)
@@ -8,6 +8,7 @@ obj-$(CONFIG_EMCRAFT_SF2) += msf2-som.o
 obj-$(CONFIG_HIGHBANK) += highbank.o
 obj-$(CONFIG_INTEGRATOR) += integratorcp.o
 obj-$(CONFIG_MAINSTONE) += mainstone.o
+obj-$(CONFIG_MICROBIT) += microbit.o
 obj-$(CONFIG_MUSICPAL) += musicpal.o
 obj-$(CONFIG_NETDUINO2) += netduino2.o
 obj-$(CONFIG_NSERIES) += nseries.o
@@ -48,4 +49,4 @@ obj-$(CONFIG_ARMSSE) += armsse.o
 obj-$(CONFIG_FSL_IMX7) += fsl-imx7.o mcimx7d-sabre.o
 obj-$(CONFIG_ARM_SMMUV3) += smmu-common.o smmuv3.o
 obj-$(CONFIG_FSL_IMX6UL) += fsl-imx6ul.o mcimx6ul-evk.o
-obj-$(CONFIG_NRF51_SOC) += nrf51_soc.o microbit.o
+obj-$(CONFIG_NRF51_SOC) += nrf51_soc.o
This page took 0.032939 seconds and 4 git commands to generate.