[PATCH] hw/arm/Kconfig: Exclude imx8mp-evk machine from KVM-only build

Bernhard Beschow posted 1 patch 1 day, 14 hours ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20251118200752.39950-1-shentey@gmail.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Peter Maydell <peter.maydell@linaro.org>
There is a newer version of this series
hw/arm/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] hw/arm/Kconfig: Exclude imx8mp-evk machine from KVM-only build
Posted by Bernhard Beschow 1 day, 14 hours ago
Fixes make check failures on an aarch64 host:
  qemu-system-aarch64: unknown type 'arm-gicv3'

Reported-by: Cornelia Huck <cohuck@redhat.com>
Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
---
 hw/arm/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index 0cdeb60f1f..7877506384 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -623,7 +623,7 @@ config FSL_IMX8MP_EVK
     bool
     default y
     depends on AARCH64
-    depends on TCG || KVM
+    depends on TCG
     select FSL_IMX8MP
 
 config ARM_SMMUV3
-- 
2.52.0
Re: [PATCH] hw/arm/Kconfig: Exclude imx8mp-evk machine from KVM-only build
Posted by Cornelia Huck 1 day ago
On Tue, Nov 18 2025, Bernhard Beschow <shentey@gmail.com> wrote:

> Fixes make check failures on an aarch64 host:

...with TCG disabled (or what Phil suggested.)

>   qemu-system-aarch64: unknown type 'arm-gicv3'
>
> Reported-by: Cornelia Huck <cohuck@redhat.com>
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Bernhard Beschow <shentey@gmail.com>
> ---
>  hw/arm/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Tested-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Re: [PATCH] hw/arm/Kconfig: Exclude imx8mp-evk machine from KVM-only build
Posted by Philippe Mathieu-Daudé 1 day, 13 hours ago
On 18/11/25 21:07, Bernhard Beschow wrote:
> Fixes make check failures on an aarch64 host:

when QEMU is configured using '--enable-kvm --disable-tcg':

>    qemu-system-aarch64: unknown type 'arm-gicv3'
> 
> Reported-by: Cornelia Huck <cohuck@redhat.com>
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Bernhard Beschow <shentey@gmail.com>
> ---
>   hw/arm/Kconfig | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
> index 0cdeb60f1f..7877506384 100644
> --- a/hw/arm/Kconfig
> +++ b/hw/arm/Kconfig
> @@ -623,7 +623,7 @@ config FSL_IMX8MP_EVK
>       bool
>       default y
>       depends on AARCH64
> -    depends on TCG || KVM
> +    depends on TCG
>       select FSL_IMX8MP
>   
>   config ARM_SMMUV3