diff mbox

[v2,19/22] target-arm/machine.c: Allow user to request GICv3 emulation

Message ID 1464274540-19693-20-git-send-email-peter.maydell@linaro.org (mailing list archive)
State New, archived
Headers show

Commit Message

Peter Maydell May 26, 2016, 2:55 p.m. UTC
Now we have an emulated GICv3, remove the restriction in
gicv3_class_name() so that the user can request a GICv3 with
-machine gic-version=3 even when not using KVM.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 target-arm/machine.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Shannon Zhao June 13, 2016, 11:38 a.m. UTC | #1
On 2016/5/26 22:55, Peter Maydell wrote:
> Now we have an emulated GICv3, remove the restriction in
> gicv3_class_name() so that the user can request a GICv3 with
> -machine gic-version=3 even when not using KVM.
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Shannon Zhao <shannon.zhao@linaro.org>

> ---
>  target-arm/machine.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/target-arm/machine.c b/target-arm/machine.c
> index 2f45260..2dbeb82 100644
> --- a/target-arm/machine.c
> +++ b/target-arm/machine.c
> @@ -342,8 +342,7 @@ const char *gicv3_class_name(void)
>                       "platform");
>  #endif
>      } else {
> -        /* TODO: Software emulation is not implemented yet */
> -        error_report("KVM is currently required for GICv3 emulation");
> +        return "arm-gicv3";
>      }
>  
>      exit(1);
>
diff mbox

Patch

diff --git a/target-arm/machine.c b/target-arm/machine.c
index 2f45260..2dbeb82 100644
--- a/target-arm/machine.c
+++ b/target-arm/machine.c
@@ -342,8 +342,7 @@  const char *gicv3_class_name(void)
                      "platform");
 #endif
     } else {
-        /* TODO: Software emulation is not implemented yet */
-        error_report("KVM is currently required for GICv3 emulation");
+        return "arm-gicv3";
     }
 
     exit(1);