All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] qtest/machine-none: Add LoongArch support
@ 2022-07-13  2:02 Song Gao
  2022-07-13  6:06 ` Philippe Mathieu-Daudé via
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Song Gao @ 2022-07-13  2:02 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, yangxiaojuan, richard.henderson, gaosong

Update the cpu_maps[] to support the LoongArch target.

Signed-off-by: Song Gao <gaosong@loongson.cn>
---
 tests/qtest/machine-none-test.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/qtest/machine-none-test.c b/tests/qtest/machine-none-test.c
index d0f8cd9902..f92fab479f 100644
--- a/tests/qtest/machine-none-test.c
+++ b/tests/qtest/machine-none-test.c
@@ -54,6 +54,7 @@ static struct arch2cpu cpus_map[] = {
     { "riscv64", "rv64" },
     { "riscv32", "rv32" },
     { "rx", "rx62n" },
+    { "loongarch64", "la464"},
 };
 
 static const char *get_cpu_model_by_arch(const char *arch)
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] qtest/machine-none: Add LoongArch support
  2022-07-13  2:02 [PATCH] qtest/machine-none: Add LoongArch support Song Gao
@ 2022-07-13  6:06 ` Philippe Mathieu-Daudé via
  2022-07-14  1:45 ` Richard Henderson
  2022-07-19  7:36 ` Richard Henderson
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-07-13  6:06 UTC (permalink / raw)
  To: Song Gao; +Cc: qemu-devel, peter.maydell, yangxiaojuan, richard.henderson

On Wed, Jul 13, 2022 at 4:05 AM Song Gao <gaosong@loongson.cn> wrote:
>
> Update the cpu_maps[] to support the LoongArch target.
>

Reported-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

> Signed-off-by: Song Gao <gaosong@loongson.cn>
> ---
>  tests/qtest/machine-none-test.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/tests/qtest/machine-none-test.c b/tests/qtest/machine-none-test.c
> index d0f8cd9902..f92fab479f 100644
> --- a/tests/qtest/machine-none-test.c
> +++ b/tests/qtest/machine-none-test.c
> @@ -54,6 +54,7 @@ static struct arch2cpu cpus_map[] = {
>      { "riscv64", "rv64" },
>      { "riscv32", "rv32" },
>      { "rx", "rx62n" },
> +    { "loongarch64", "la464"},
>  };
>
>  static const char *get_cpu_model_by_arch(const char *arch)
> --
> 2.31.1
>
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] qtest/machine-none: Add LoongArch support
  2022-07-13  2:02 [PATCH] qtest/machine-none: Add LoongArch support Song Gao
  2022-07-13  6:06 ` Philippe Mathieu-Daudé via
@ 2022-07-14  1:45 ` Richard Henderson
  2022-07-19  7:36 ` Richard Henderson
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2022-07-14  1:45 UTC (permalink / raw)
  To: Song Gao, qemu-devel; +Cc: peter.maydell, yangxiaojuan

On 7/13/22 07:32, Song Gao wrote:
> Update the cpu_maps[] to support the LoongArch target.
> 
> Signed-off-by: Song Gao<gaosong@loongson.cn>
> ---
>   tests/qtest/machine-none-test.c | 1 +
>   1 file changed, 1 insertion(+)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] qtest/machine-none: Add LoongArch support
  2022-07-13  2:02 [PATCH] qtest/machine-none: Add LoongArch support Song Gao
  2022-07-13  6:06 ` Philippe Mathieu-Daudé via
  2022-07-14  1:45 ` Richard Henderson
@ 2022-07-19  7:36 ` Richard Henderson
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2022-07-19  7:36 UTC (permalink / raw)
  To: Song Gao, qemu-devel; +Cc: peter.maydell, yangxiaojuan

On 7/13/22 07:32, Song Gao wrote:
> Update the cpu_maps[] to support the LoongArch target.
> 
> Signed-off-by: Song Gao <gaosong@loongson.cn>
> ---
>   tests/qtest/machine-none-test.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/tests/qtest/machine-none-test.c b/tests/qtest/machine-none-test.c
> index d0f8cd9902..f92fab479f 100644
> --- a/tests/qtest/machine-none-test.c
> +++ b/tests/qtest/machine-none-test.c
> @@ -54,6 +54,7 @@ static struct arch2cpu cpus_map[] = {
>       { "riscv64", "rv64" },
>       { "riscv32", "rv32" },
>       { "rx", "rx62n" },
> +    { "loongarch64", "la464"},
>   };
>   
>   static const char *get_cpu_model_by_arch(const char *arch)

Queued.


r~


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-19  7:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-13  2:02 [PATCH] qtest/machine-none: Add LoongArch support Song Gao
2022-07-13  6:06 ` Philippe Mathieu-Daudé via
2022-07-14  1:45 ` Richard Henderson
2022-07-19  7:36 ` Richard Henderson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.