Re: [PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-28 Thread Zhang Chen
On Mon, Apr 28, 2025 at 8:47 PM Peter Maydell wrote: > > On Thu, 24 Apr 2025 at 09:57, Zhang Chen wrote: > > > > On Thu, Apr 3, 2025 at 10:23 AM Zhang Chen wrote: > > > > > > On Thu, Apr 3, 2025 at 2:43 AM Richard Henderson > > > wrote: > > > > > > > > On 4/2/25 06:54, Zhang Chen wrote: > > > >

Re: [PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-28 Thread Peter Maydell
On Thu, 24 Apr 2025 at 09:57, Zhang Chen wrote: > > On Thu, Apr 3, 2025 at 10:23 AM Zhang Chen wrote: > > > > On Thu, Apr 3, 2025 at 2:43 AM Richard Henderson > > wrote: > > > > > > On 4/2/25 06:54, Zhang Chen wrote: > > > > Because of the CONFIG_TCG auto enabled, the cpu type "cortex-a15" > > >

Re: [PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-27 Thread Zhang Chen
On Thu, Apr 24, 2025 at 5:58 PM Philippe Mathieu-Daudé wrote: > > On 24/4/25 10:56, Zhang Chen wrote: > > On Thu, Apr 3, 2025 at 10:23 AM Zhang Chen wrote: > >> > >> On Thu, Apr 3, 2025 at 2:43 AM Richard Henderson > >> wrote: > >>> > >>> On 4/2/25 06:54, Zhang Chen wrote: > Because of the

Re: [PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-24 Thread Philippe Mathieu-Daudé
On 24/4/25 10:56, Zhang Chen wrote: On Thu, Apr 3, 2025 at 10:23 AM Zhang Chen wrote: On Thu, Apr 3, 2025 at 2:43 AM Richard Henderson wrote: On 4/2/25 06:54, Zhang Chen wrote: Because of the CONFIG_TCG auto enabled, the cpu type "cortex-a15" is mistakenly set to the default AARCH64 target

Re: [PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-24 Thread Zhang Chen
On Thu, Apr 3, 2025 at 10:23 AM Zhang Chen wrote: > > On Thu, Apr 3, 2025 at 2:43 AM Richard Henderson > wrote: > > > > On 4/2/25 06:54, Zhang Chen wrote: > > > Because of the CONFIG_TCG auto enabled, the cpu type "cortex-a15" > > > is mistakenly set to the default AARCH64 target. > > > > This is

Re: [PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-05 Thread Richard Henderson
On 4/2/25 06:54, Zhang Chen wrote: Because of the CONFIG_TCG auto enabled, the cpu type "cortex-a15" is mistakenly set to the default AARCH64 target. This is the correct backward compatible setting. In essence, it means that you *must* supply a -cpu argument. r~ Signed-off-by: Zhang Chen

Re: [PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-02 Thread Zhang Chen
On Thu, Apr 3, 2025 at 2:43 AM Richard Henderson wrote: > > On 4/2/25 06:54, Zhang Chen wrote: > > Because of the CONFIG_TCG auto enabled, the cpu type "cortex-a15" > > is mistakenly set to the default AARCH64 target. > > This is the correct backward compatible setting. > In essence, it means that

[PATCH] hw/arm/virt.c: Fix wrong default cpu type in AARCH64

2025-04-02 Thread Zhang Chen
Because of the CONFIG_TCG auto enabled, the cpu type "cortex-a15" is mistakenly set to the default AARCH64 target. Signed-off-by: Zhang Chen --- hw/arm/virt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/arm/virt.c b/hw/arm/virt.c index a96452f17a..63649e9543 10064