From: Eduardo Habkost <ehabkost@redhat.com>
To: Alistair Francis <alistair.francis@xilinx.com>
Cc: qemu-devel@nongnu.org, alistair23@gmail.com, marcel@redhat.com,
imammedo@redhat.com, f4bug@amsat.org
Subject: Re: [Qemu-devel] [PATCH v3 4/5] xlnx-zcu102: Specify the valid CPUs
Date: Fri, 20 Oct 2017 17:16:38 -0200 [thread overview]
Message-ID: <20171020191638.GR2942@localhost.localdomain> (raw)
In-Reply-To: <7d590a446dfe29a1815c3cad2a93f7d6b0d8a214.1508279421.git.alistair.francis@xilinx.com>
On Tue, Oct 17, 2017 at 03:31:19PM -0700, Alistair Francis wrote:
> List all possible valid CPU options.
>
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
>
> An implementation for single CPU machines is still being discussed. A
> solution proposed by Eduardo is this:
>
> 1) Change the default on TYPE_MACHINE to:
> mc->valid_cpu_types = { TYPE_CPU, NULL };
>
> This will keep the existing behavior for all boards.
>
> 2) mc->valid_cpu_types=NULL be interpreted as "no CPU model
> except the default is accepted" or "-cpu is not accepted" in
> machine_run_board_init() (I prefer the former, but both
> options would be correct)
>
> 3) Boards like xlnx_zynqmp could then just do this:
>
> static void xxx_class_init(...) {
> mc->default_cpu_type = MY_CPU_TYPE;
> /* Reason: XXX_init() is hardcoded to MY_CPU_TYPE */
> mc->valid_cpu_types = NULL;
> }
>
> V3:
> - Make variable static
> V2:
> - Don't use the users -cpu
> - Fixup allignment
>
> hw/arm/xlnx-zcu102.c | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
>
> diff --git a/hw/arm/xlnx-zcu102.c b/hw/arm/xlnx-zcu102.c
> index 519a16ed98..d5a5425356 100644
> --- a/hw/arm/xlnx-zcu102.c
> +++ b/hw/arm/xlnx-zcu102.c
> @@ -160,6 +160,11 @@ static void xlnx_zynqmp_init(XlnxZCU102 *s, MachineState *machine)
> arm_load_kernel(s->soc.boot_cpu_ptr, &xlnx_zcu102_binfo);
> }
>
> +static const char *xlnx_zynqmp_valid_cpus[] = {
> + ARM_CPU_TYPE_NAME("cortex-a53"),
> + NULL
> + };
> +
> static void xlnx_ep108_init(MachineState *machine)
> {
> XlnxZCU102 *s = EP108_MACHINE(machine);
> @@ -185,6 +190,12 @@ static void xlnx_ep108_machine_class_init(ObjectClass *oc, void *data)
> mc->block_default_type = IF_IDE;
> mc->units_per_default_bus = 1;
> mc->ignore_memory_transaction_failures = true;
> + mc->default_cpu_type = ARM_CPU_TYPE_NAME("cortex-a53");
> + /* The ZynqMP SoC is always a Cortex-A53. We add this here to give
> + * users a sane error if they specify a different CPU, but we never
> + * use their CPU choice.
> + */
> + mc->valid_cpu_types = xlnx_zynqmp_valid_cpus;
> }
>
> static const TypeInfo xlnx_ep108_machine_init_typeinfo = {
> @@ -240,6 +251,12 @@ static void xlnx_zcu102_machine_class_init(ObjectClass *oc, void *data)
> mc->block_default_type = IF_IDE;
> mc->units_per_default_bus = 1;
> mc->ignore_memory_transaction_failures = true;
> + mc->default_cpu_type = ARM_CPU_TYPE_NAME("cortex-a53");
> + /* The ZynqMP SoC is always a Cortex-A53. We add this here to give
> + * users a sane error if they specify a different CPU, but we never
> + * use their CPU choice.
> + */
> + mc->valid_cpu_types = xlnx_zynqmp_valid_cpus;
> }
>
> static const TypeInfo xlnx_zcu102_machine_init_typeinfo = {
> --
> 2.11.0
>
--
Eduardo
next prev parent reply other threads:[~2017-10-20 19:16 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-17 22:31 [Qemu-devel] [PATCH v3 0/5] Add a valid_cpu_types property Alistair Francis
2017-10-17 22:31 ` [Qemu-devel] [PATCH v3 1/5] netduino2: Specify the valid CPUs Alistair Francis
2017-10-17 22:31 ` [Qemu-devel] [PATCH v3 2/5] bcm2836: Use the Cortex-A7 instead of Cortex-A15 Alistair Francis
2017-10-17 23:36 ` Philippe Mathieu-Daudé
2017-10-18 7:48 ` Igor Mammedov
2017-10-17 22:31 ` [Qemu-devel] [PATCH v3 3/5] raspi: Specify the valid CPUs Alistair Francis
2017-10-17 22:31 ` [Qemu-devel] [PATCH v3 4/5] xlnx-zcu102: " Alistair Francis
2017-10-20 19:16 ` Eduardo Habkost [this message]
2017-10-23 11:14 ` Philippe Mathieu-Daudé
2017-10-26 9:59 ` Alistair Francis
2017-11-29 9:09 ` Igor Mammedov
2017-10-17 22:31 ` [Qemu-devel] [PATCH v3 5/5] xilinx_zynq: " Alistair Francis
2017-10-23 7:26 ` [Qemu-devel] [PATCH v3 0/5] Add a valid_cpu_types property Alistair Francis
2017-11-07 23:30 ` Alistair Francis
2017-11-28 23:26 ` Alistair Francis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171020191638.GR2942@localhost.localdomain \
--to=ehabkost@redhat.com \
--cc=alistair.francis@xilinx.com \
--cc=alistair23@gmail.com \
--cc=f4bug@amsat.org \
--cc=imammedo@redhat.com \
--cc=marcel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).