From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Daniel P . Berrangé" <berrange@redhat.com>,
"BALATON Zoltan" <balaton@eik.bme.hu>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Laurent Vivier" <lvivier@redhat.com>,
"Ovchinnikov Vitalii" <vitalii.ovchinnikov@auriga.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Jared Mauch" <jared+home@puck.nether.net>,
"Fabiano Rosas" <farosas@suse.de>,
"Paolo Bonzini" <pbonzini@redhat.com>,
qemu-arm@nongnu.org, "Alex Bennée" <alex.bennee@linaro.org>,
devel@lists.libvirt.org
Subject: [PATCH v2 08/12] hw/arm/raspi: Introduce generic Raspberry Pi machine
Date: Tue, 4 Feb 2025 01:22:36 +0100 [thread overview]
Message-ID: <20250204002240.97830-9-philmd@linaro.org> (raw)
In-Reply-To: <20250204002240.97830-1-philmd@linaro.org>
The generic 'raspi' machine takes a 'model' argument and
create the machine associated with the model, with the
RAM size requested (or default to the minimum of 256MB
if not precised).
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2797
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
include/hw/arm/raspi_platform.h | 3 +-
hw/arm/raspi.c | 127 ++++++++++++++++++++++++++++----
2 files changed, 115 insertions(+), 15 deletions(-)
diff --git a/include/hw/arm/raspi_platform.h b/include/hw/arm/raspi_platform.h
index defb786153b..14cb91e153c 100644
--- a/include/hw/arm/raspi_platform.h
+++ b/include/hw/arm/raspi_platform.h
@@ -41,7 +41,8 @@ OBJECT_DECLARE_TYPE(RaspiBaseMachineState, RaspiBaseMachineClass,
struct RaspiBaseMachineState {
/*< private >*/
MachineState parent_obj;
- /*< public >*/
+
+ uint32_t board_rev;
struct arm_boot_info binfo;
};
diff --git a/hw/arm/raspi.c b/hw/arm/raspi.c
index d44277001ee..1dc41701efe 100644
--- a/hw/arm/raspi.c
+++ b/hw/arm/raspi.c
@@ -300,20 +300,6 @@ void raspi_base_machine_init(MachineState *machine,
BlockBackend *blk;
BusState *bus;
DeviceState *carddev;
- uint64_t max_ramsize;
-
- if (machine->ram_size != ram_size) {
- char *size_str = size_to_str(ram_size);
- error_report("Invalid RAM size, should be %s", size_str);
- g_free(size_str);
- exit(1);
- }
- max_ramsize = ramsize_max(board_rev);
- if (ram_size > max_ramsize) {
- g_autofree char *max_ramsize_str = size_to_str(max_ramsize);
- error_report("At most %s of RAM can be used", max_ramsize_str);
- exit(1);
- }
/* FIXME: Remove when we have custom CPU address space support */
memory_region_add_subregion_overlap(get_system_memory(), 0,
@@ -448,6 +434,115 @@ void raspi_machine_init(MachineState *machine)
raspi_base_machine_init(machine, BCM283X_BASE(soc), mc->board_rev);
}
+static void raspi_generic_machine_init(MachineState *ms)
+{
+ RaspiMachineState *s = RASPI_MACHINE(ms);
+ RaspiBaseMachineState *s_base = RASPI_BASE_MACHINE(ms);
+ uint32_t board_rev = s_base->board_rev;
+ const char *soc_type = board_soc_type(board_rev);
+ BCM283XBaseState *bsoc;
+ uint64_t ram_size;
+ uint64_t max_ramsize;
+
+ if (!board_rev) {
+ error_report("Missing model");
+ exit(1);
+ }
+
+ ram_size = ROUND_UP(ms->ram_size, 256 * MiB);
+ if (ram_size != ms->ram_size) {
+ g_autofree char *ram_size_str = size_to_str(ms->ram_size);
+ g_autofree char *rounded_size_str = size_to_str(ram_size);
+ warn_report("Invalid RAM size %s, rounding to %s",
+ ram_size_str, rounded_size_str);
+ }
+ max_ramsize = ramsize_max(board_rev);
+ if (ram_size > max_ramsize) {
+ g_autofree char *max_ramsize_str = size_to_str(max_ramsize);
+ error_report("At most %s of RAM can be used with BCM%s",
+ max_ramsize_str, soc_type + 3);
+ exit(1);
+ }
+ board_rev = FIELD_DP32(board_rev, REV_CODE, MEMORY_SIZE,
+ ctz64(ms->ram_size) - 28);
+
+ ms->ram = g_new(MemoryRegion, 1);
+ memory_region_init(ms->ram, OBJECT(ms), "DRAM", ram_size);
+
+ if (board_processor_id(board_rev) == PROCESSOR_ID_BCM2838) {
+ BCM2838State *soc = &s->soc4;
+ bsoc = BCM283X_BASE(soc);
+ object_initialize_child(OBJECT(ms), "soc", soc, soc_type);
+ } else {
+ BCM283XState *soc = &s->soc;
+ bsoc = BCM283X_BASE(soc);
+ object_initialize_child(OBJECT(ms), "soc", soc, soc_type);
+ }
+ raspi_base_machine_init(ms, bsoc, board_rev);
+}
+
+static void raspi_update_board_rev(RaspiBaseMachineState *s)
+{
+ MachineState *ms = MACHINE(s);
+ RaspiProcessorId proc;
+ unsigned model_index;
+
+ s->board_rev = FIELD_DP32(s->board_rev, REV_CODE, STYLE, 1);
+
+ model_index = FIELD_EX32(s->board_rev, REV_CODE, TYPE);
+ proc = types[model_index].proc_id;
+ s->board_rev = FIELD_DP32(s->board_rev, REV_CODE, PROCESSOR, proc);
+
+ ms->smp.max_cpus = soc_property[proc].cores_count;
+}
+
+static void raspi_set_machine_model(Object *obj, const char *value, Error **errp)
+{
+ for (unsigned i = 0; i < ARRAY_SIZE(types); i++) {
+ if (types[i].model && !strcmp(value, types[i].model)) {
+ RaspiBaseMachineState *s = RASPI_BASE_MACHINE(obj);
+
+ s->board_rev = FIELD_DP32(s->board_rev, REV_CODE, TYPE, i);
+
+ return raspi_update_board_rev(s);
+ }
+ }
+ error_setg(errp, "Invalid model");
+}
+
+static char *raspi_get_machine_model(Object *obj, Error **errp)
+{
+ RaspiBaseMachineState *s = RASPI_BASE_MACHINE(obj);
+
+ return g_strdup(types[FIELD_EX32(s->board_rev, REV_CODE, TYPE)].model);
+}
+
+static void raspi_generic_machine_class_init(ObjectClass *oc, void *data)
+{
+ MachineClass *mc = MACHINE_CLASS(oc);
+ RaspiBaseMachineClass *rmc = RASPI_BASE_MACHINE_CLASS(oc);
+
+ rmc->board_rev = FIELD_DP32(0, REV_CODE, STYLE, 1);
+
+ mc->desc = "Raspberry Pi";
+ mc->block_default_type = IF_SD;
+ mc->no_parallel = 1;
+ mc->no_floppy = 1;
+ mc->no_cdrom = 1;
+ mc->default_cpus = 1;
+ mc->min_cpus = 1;
+ mc->max_cpus = 4;
+ mc->default_ram_size = 0;
+ mc->default_ram_id = "DRAM";
+ mc->init = raspi_generic_machine_init;
+
+ object_class_property_add_str(oc, "model",
+ raspi_get_machine_model,
+ raspi_set_machine_model);
+ object_class_property_set_description(oc, "model", "Set machine model.");
+};
+
+
void raspi_machine_class_common_init(MachineClass *mc,
uint32_t board_rev)
{
@@ -533,6 +628,10 @@ static void raspi4b_machine_class_init(ObjectClass *oc, void *data)
static const TypeInfo raspi_machine_types[] = {
{
+ .name = MACHINE_TYPE_NAME("raspi"),
+ .parent = TYPE_RASPI_MACHINE,
+ .class_init = raspi_generic_machine_class_init,
+ }, {
.name = MACHINE_TYPE_NAME("raspi0"),
.parent = TYPE_RASPI_MACHINE,
.class_init = raspi0_machine_class_init,
--
2.47.1
next prev parent reply other threads:[~2025-02-04 0:24 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-04 0:22 [PATCH v2 00/12] hw/arm/raspi: Allow creating any Raspberry Pi machine Philippe Mathieu-Daudé
2025-02-04 0:22 ` [PATCH v2 01/12] hw/arm/raspi: Access SoC parent object using BCM283X_BASE() macro Philippe Mathieu-Daudé
2025-02-04 15:01 ` Peter Maydell
2025-02-04 0:22 ` [PATCH v2 02/12] hw/arm/raspi: Merge model 4B with other models Philippe Mathieu-Daudé
2025-02-04 15:02 ` Peter Maydell
2025-02-04 0:22 ` [PATCH v2 03/12] hw/arm/raspi: Unify RASPI_MACHINE types Philippe Mathieu-Daudé
2025-02-04 15:06 ` Peter Maydell
2025-02-04 0:22 ` [PATCH v2 04/12] hw/arm/raspi: Pass board_rev as argument to raspi_base_machine_init() Philippe Mathieu-Daudé
2025-02-04 0:22 ` [PATCH v2 05/12] hw/arm/raspi: Consider processor id in types[] array Philippe Mathieu-Daudé
2025-02-04 15:08 ` Peter Maydell
2025-02-04 0:22 ` [PATCH v2 06/12] hw/arm/raspi: Consider network interface for B models Philippe Mathieu-Daudé
2025-02-04 15:09 ` Peter Maydell
2025-02-04 0:22 ` [PATCH v2 07/12] hw/arm/raspi: Check ramsize is within chipset aperture Philippe Mathieu-Daudé
2025-02-04 15:10 ` Peter Maydell
2025-02-04 0:22 ` Philippe Mathieu-Daudé [this message]
2025-02-04 0:22 ` [PATCH v2 09/12] hw/arm/raspi: Have the generic machine take a 'revision' property Philippe Mathieu-Daudé
2025-02-04 0:22 ` [PATCH v2 10/12] hw/arm/raspi: List models creatable by the generic 'raspi' machine Philippe Mathieu-Daudé
2025-02-04 0:22 ` [PATCH v2 11/12] hw/arm/raspi: Deprecate old raspiX machine names Philippe Mathieu-Daudé
2025-02-04 9:22 ` Peter Maydell
2025-02-04 9:51 ` Philippe Mathieu-Daudé
2025-02-04 9:57 ` Daniel P. Berrangé
2025-02-04 10:48 ` Philippe Mathieu-Daudé
2025-02-04 10:51 ` Daniel P. Berrangé
2025-02-04 11:13 ` Peter Maydell
2025-02-04 13:40 ` Philippe Mathieu-Daudé
2025-02-04 13:52 ` Peter Maydell
2025-02-04 14:59 ` Philippe Mathieu-Daudé
2025-02-04 9:58 ` BALATON Zoltan
2025-02-22 21:57 ` Jared Mauch
2025-02-04 0:22 ` [PATCH v2 12/12] hw/arm/raspi: Support more models Philippe Mathieu-Daudé
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=20250204002240.97830-9-philmd@linaro.org \
--to=philmd@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=balaton@eik.bme.hu \
--cc=berrange@redhat.com \
--cc=devel@lists.libvirt.org \
--cc=farosas@suse.de \
--cc=jared+home@puck.nether.net \
--cc=lvivier@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=vitalii.ovchinnikov@auriga.com \
/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).