[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 07/10] target/arm: Move V7M feature to target Kconfig
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 07/10] target/arm: Move V7M feature to target Kconfig |
Date: |
Sun, 31 Jan 2021 12:13:13 +0100 |
V7M is an architecture feature, move its declaration to target/arm/.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
hw/arm/Kconfig | 4 ----
target/arm/Kconfig | 4 ++++
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index 09298881f2f..f3ecb73a3d8 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -292,10 +292,6 @@ config ZYNQ
select XILINX_SPIPS
select ZYNQ_DEVCFG
-config ARM_V7M
- bool
- select PTIMER
-
config ALLWINNER_A10
bool
select AHCI
diff --git a/target/arm/Kconfig b/target/arm/Kconfig
index 3f3394a22b2..1f05de47ca6 100644
--- a/target/arm/Kconfig
+++ b/target/arm/Kconfig
@@ -4,3 +4,7 @@ config ARM
config AARCH64
bool
select ARM
+
+config ARM_V7M
+ bool
+ select PTIMER
--
2.26.2
- [PATCH 00/10] target: Provide target-specific Kconfig, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 01/10] hw/sh4/Kconfig: Rename CONFIG_SH4 -> CONFIG_SH4_PERIPHERALS, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 02/10] hw/lm32/Kconfig: Introduce CONFIG_LM32_EVR for lm32-evr/uclinux boards, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 03/10] hw/sh4/Kconfig: Rename CONFIG_LM32 -> CONFIG_LM32_PERIPHERALS, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 04/10] hw/lm32/Kconfig: Have MILKYMIST select LM32_PERIPHERALS, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 05/10] meson: Introduce target-specific Kconfig, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 06/10] target/i386: Move SEV feature to target Kconfig, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 07/10] target/arm: Move V7M feature to target Kconfig,
Philippe Mathieu-Daudé <=
- [PATCH 08/10] default-configs: Remove unnecessary SEMIHOSTING selection, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 09/10] target: Move ARM_COMPATIBLE_SEMIHOSTING feature to target Kconfig, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH 10/10] target: Move SEMIHOSTING feature to target Kconfig, Philippe Mathieu-Daudé, 2021/01/31