* [PATCH 2/2] sbsa-ref: add 'max' to list of allowed cpus
2021-02-11 12:36 ` [PATCH 1/2] " Marcin Juszkiewicz
@ 2021-02-11 12:36 ` Marcin Juszkiewicz
2021-02-11 14:16 ` Leif Lindholm
2021-02-11 13:44 ` [PATCH 1/2] sbsa-ref: remove cortex-a53 from list of supported cpus Philippe Mathieu-Daudé
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Marcin Juszkiewicz @ 2021-02-11 12:36 UTC (permalink / raw)
To: qemu-arm
Cc: Marcin Juszkiewicz, Peter Maydell, Leif Lindholm,
Radosław Biernacki, qemu-devel
Let add 'max' cpu while work goes on adding newer CPU types than
Cortex-A72. This allows us to check SVE etc support.
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
---
hw/arm/sbsa-ref.c | 1 +
1 file changed, 1 insertion(+)
diff --git hw/arm/sbsa-ref.c hw/arm/sbsa-ref.c
index 276243d122..88dfb2284c 100644
--- hw/arm/sbsa-ref.c
+++ hw/arm/sbsa-ref.c
@@ -147,6 +147,7 @@ static const int sbsa_ref_irqmap[] = {
static const char * const valid_cpus[] = {
ARM_CPU_TYPE_NAME("cortex-a57"),
ARM_CPU_TYPE_NAME("cortex-a72"),
+ ARM_CPU_TYPE_NAME("max"),
};
static bool cpu_type_valid(const char *cpu)
--
2.29.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] sbsa-ref: add 'max' to list of allowed cpus
2021-02-11 12:36 ` [PATCH 2/2] sbsa-ref: add 'max' to list of allowed cpus Marcin Juszkiewicz
@ 2021-02-11 14:16 ` Leif Lindholm
0 siblings, 0 replies; 8+ messages in thread
From: Leif Lindholm @ 2021-02-11 14:16 UTC (permalink / raw)
To: Marcin Juszkiewicz
Cc: Peter Maydell, qemu-arm, qemu-devel, Radosław Biernacki
On Thu, Feb 11, 2021 at 13:36:38 +0100, Marcin Juszkiewicz wrote:
> Let add 'max' cpu while work goes on adding newer CPU types than
> Cortex-A72. This allows us to check SVE etc support.
>
> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Acked-by: Leif Lindholm <leif@nuviainc.com>
> ---
> hw/arm/sbsa-ref.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git hw/arm/sbsa-ref.c hw/arm/sbsa-ref.c
> index 276243d122..88dfb2284c 100644
> --- hw/arm/sbsa-ref.c
> +++ hw/arm/sbsa-ref.c
> @@ -147,6 +147,7 @@ static const int sbsa_ref_irqmap[] = {
> static const char * const valid_cpus[] = {
> ARM_CPU_TYPE_NAME("cortex-a57"),
> ARM_CPU_TYPE_NAME("cortex-a72"),
> + ARM_CPU_TYPE_NAME("max"),
> };
>
> static bool cpu_type_valid(const char *cpu)
> --
> 2.29.2
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] sbsa-ref: remove cortex-a53 from list of supported cpus
2021-02-11 12:36 ` [PATCH 1/2] " Marcin Juszkiewicz
2021-02-11 12:36 ` [PATCH 2/2] sbsa-ref: add 'max' to list of allowed cpus Marcin Juszkiewicz
@ 2021-02-11 13:44 ` Philippe Mathieu-Daudé
2021-02-11 14:16 ` Leif Lindholm
2021-02-16 14:23 ` Peter Maydell
3 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-02-11 13:44 UTC (permalink / raw)
To: Marcin Juszkiewicz, qemu-arm
Cc: Peter Maydell, Leif Lindholm, qemu-devel, Radosław Biernacki
Hi Marcin,
This is v2.
Please don't post new patch series as subthread in another one.
On 2/11/21 1:36 PM, Marcin Juszkiewicz wrote:
> Cortex-A53 supports 40bits of address space. sbsa-ref's memory starts
> above this limit.
>
> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
> ---
> hw/arm/sbsa-ref.c | 1 -
> 1 file changed, 1 deletion(-)
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] sbsa-ref: remove cortex-a53 from list of supported cpus
2021-02-11 12:36 ` [PATCH 1/2] " Marcin Juszkiewicz
2021-02-11 12:36 ` [PATCH 2/2] sbsa-ref: add 'max' to list of allowed cpus Marcin Juszkiewicz
2021-02-11 13:44 ` [PATCH 1/2] sbsa-ref: remove cortex-a53 from list of supported cpus Philippe Mathieu-Daudé
@ 2021-02-11 14:16 ` Leif Lindholm
2021-02-16 14:23 ` Peter Maydell
3 siblings, 0 replies; 8+ messages in thread
From: Leif Lindholm @ 2021-02-11 14:16 UTC (permalink / raw)
To: Marcin Juszkiewicz
Cc: Peter Maydell, qemu-arm, qemu-devel, Radosław Biernacki
On Thu, Feb 11, 2021 at 13:36:37 +0100, Marcin Juszkiewicz wrote:
> Cortex-A53 supports 40bits of address space. sbsa-ref's memory starts
> above this limit.
>
> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Acked-by: Leif Lindholm <leif@nuviainc.com>
> ---
> hw/arm/sbsa-ref.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git hw/arm/sbsa-ref.c hw/arm/sbsa-ref.c
> index 9f70735153..276243d122 100644
> --- hw/arm/sbsa-ref.c
> +++ hw/arm/sbsa-ref.c
> @@ -145,7 +145,6 @@ static const int sbsa_ref_irqmap[] = {
> };
>
> static const char * const valid_cpus[] = {
> - ARM_CPU_TYPE_NAME("cortex-a53"),
> ARM_CPU_TYPE_NAME("cortex-a57"),
> ARM_CPU_TYPE_NAME("cortex-a72"),
> };
> --
> 2.29.2
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] sbsa-ref: remove cortex-a53 from list of supported cpus
2021-02-11 12:36 ` [PATCH 1/2] " Marcin Juszkiewicz
` (2 preceding siblings ...)
2021-02-11 14:16 ` Leif Lindholm
@ 2021-02-16 14:23 ` Peter Maydell
3 siblings, 0 replies; 8+ messages in thread
From: Peter Maydell @ 2021-02-16 14:23 UTC (permalink / raw)
To: Marcin Juszkiewicz
Cc: Leif Lindholm, qemu-arm, QEMU Developers, Radosław Biernacki
On Thu, 11 Feb 2021 at 12:36, Marcin Juszkiewicz
<marcin.juszkiewicz@linaro.org> wrote:
>
> Cortex-A53 supports 40bits of address space. sbsa-ref's memory starts
> above this limit.
>
> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Hi; could you resend your patches in the right format, please?
* with a cover letter if it's a multi-patch series
* with the cover letter not a reply-to or follow-up to any
existing email
* with each patch in the series being a follow-up to its cover letter
* with a suitable '[PATCH v3]' in the subject if this is v3 of
a patch(series), etc
* with any accumulated reviewed-by, acked-by, etc tags
Otherwise it's pretty confusing to try to fish the right version
out of the mailing list; in particular the automated patch handling
tools and scripts have got confused by your patches here.
https://wiki.qemu.org/Contribute/SubmitAPatch has some notes.
thanks
-- PMM
^ permalink raw reply [flat|nested] 8+ messages in thread