From: Jamin Lin <jamin_lin@aspeedtech.com>
To: "Cédric Le Goater" <clg@kaod.org>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Steven Lee" <steven_lee@aspeedtech.com>,
"Troy Lee" <leetroy@gmail.com>,
"Kane Chen" <kane_chen@aspeedtech.com>,
"Andrew Jeffery" <andrew@codeconstruct.com.au>,
"Joel Stanley" <joel@jms.id.au>,
"Alistair Francis" <alistair@alistair23.me>,
"Ninad Palsule" <ninad@linux.ibm.com>,
"Jason Wang" <jasowang@redhat.com>,
"open list:ASPEED BMCs" <qemu-arm@nongnu.org>,
"open list:All patches CC here" <qemu-devel@nongnu.org>
Cc: Jamin Lin <jamin_lin@aspeedtech.com>, Troy Lee <troy_lee@aspeedtech.com>
Subject: [PATCH v1 24/24] hw/ssi/aspeed_smc: Convert to DEFINE_TYPES() with inlined TypeInfo
Date: Mon, 1 Jun 2026 02:50:36 +0000 [thread overview]
Message-ID: <20260601024959.2347639-25-jamin_lin@aspeedtech.com> (raw)
In-Reply-To: <20260601024959.2347639-1-jamin_lin@aspeedtech.com>
Replace the legacy type_register_static()/type_init() registration
pattern with the modern DEFINE_TYPES() macro.
Inline 18 standalone TypeInfo variables (aspeed_smc_flash_info,
aspeed_smc_info as abstract base, aspeed_2400_smc_info,
aspeed_2400_fmc_info, aspeed_2400_spi1_info, aspeed_2500_fmc_info,
aspeed_2500_spi1_info, aspeed_2500_spi2_info, aspeed_2600_fmc_info,
aspeed_2600_spi1_info, aspeed_2600_spi2_info, aspeed_1030_fmc_info,
aspeed_1030_spi1_info, aspeed_1030_spi2_info, aspeed_2700_fmc_info,
aspeed_2700_spi0_info, aspeed_2700_spi1_info, aspeed_2700_spi2_info)
directly into the 'aspeed_smc_types[]' array, removing the need for
separate declarations.
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
---
hw/ssi/aspeed_smc.c | 228 +++++++++++++++++++-------------------------
1 file changed, 96 insertions(+), 132 deletions(-)
diff --git a/hw/ssi/aspeed_smc.c b/hw/ssi/aspeed_smc.c
index 3767ad0c7a..d87fbd798c 100644
--- a/hw/ssi/aspeed_smc.c
+++ b/hw/ssi/aspeed_smc.c
@@ -1312,16 +1312,6 @@ static void aspeed_smc_class_init(ObjectClass *klass, const void *data)
dc->vmsd = &vmstate_aspeed_smc;
}
-static const TypeInfo aspeed_smc_info = {
- .name = TYPE_ASPEED_SMC,
- .parent = TYPE_SYS_BUS_DEVICE,
- .instance_init = aspeed_smc_instance_init,
- .instance_size = sizeof(AspeedSMCState),
- .class_size = sizeof(AspeedSMCClass),
- .class_init = aspeed_smc_class_init,
- .abstract = true,
-};
-
static void aspeed_smc_flash_realize(DeviceState *dev, Error **errp)
{
AspeedSMCFlash *s = ASPEED_SMC_FLASH(dev);
@@ -1358,13 +1348,6 @@ static void aspeed_smc_flash_class_init(ObjectClass *klass, const void *data)
device_class_set_props(dc, aspeed_smc_flash_properties);
}
-static const TypeInfo aspeed_smc_flash_info = {
- .name = TYPE_ASPEED_SMC_FLASH,
- .parent = TYPE_SYS_BUS_DEVICE,
- .instance_size = sizeof(AspeedSMCFlash),
- .class_init = aspeed_smc_flash_class_init,
-};
-
/*
* The Segment Registers of the AST2400 and AST2500 have a 8MB
* unit. The address range of a flash SPI peripheral is encoded with
@@ -1415,12 +1398,6 @@ static void aspeed_2400_smc_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2400_smc_info = {
- .name = "aspeed.smc-ast2400",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2400_smc_class_init,
-};
-
static const uint32_t aspeed_2400_fmc_resets[ASPEED_SMC_R_MAX] = {
/*
* CE0 and CE1 types are HW strapped in SCU70. Do it here to
@@ -1466,12 +1443,6 @@ static void aspeed_2400_fmc_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2400_fmc_info = {
- .name = "aspeed.fmc-ast2400",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2400_fmc_class_init,
-};
-
static const AspeedSegments aspeed_2400_spi1_segments[] = {
{ 0x30000000, 64 * MiB },
};
@@ -1506,12 +1477,6 @@ static void aspeed_2400_spi1_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2400_spi1_info = {
- .name = "aspeed.spi1-ast2400",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2400_spi1_class_init,
-};
-
static const uint32_t aspeed_2500_fmc_resets[ASPEED_SMC_R_MAX] = {
[R_CONF] = (CONF_FLASH_TYPE_SPI << CONF_FLASH_TYPE0 |
CONF_FLASH_TYPE_SPI << CONF_FLASH_TYPE1),
@@ -1552,12 +1517,6 @@ static void aspeed_2500_fmc_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2500_fmc_info = {
- .name = "aspeed.fmc-ast2500",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2500_fmc_class_init,
-};
-
static const AspeedSegments aspeed_2500_spi1_segments[] = {
{ 0x30000000, 32 * MiB }, /* start address is readonly */
{ 0x32000000, 96 * MiB }, /* end address is readonly */
@@ -1588,12 +1547,6 @@ static void aspeed_2500_spi1_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2500_spi1_info = {
- .name = "aspeed.spi1-ast2500",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2500_spi1_class_init,
-};
-
static const AspeedSegments aspeed_2500_spi2_segments[] = {
{ 0x38000000, 32 * MiB }, /* start address is readonly */
{ 0x3A000000, 96 * MiB }, /* end address is readonly */
@@ -1624,12 +1577,6 @@ static void aspeed_2500_spi2_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2500_spi2_info = {
- .name = "aspeed.spi2-ast2500",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2500_spi2_class_init,
-};
-
/*
* The Segment Registers of the AST2600 have a 1MB unit. The address
* range of a flash SPI peripheral is encoded with offsets in the overall
@@ -1712,12 +1659,6 @@ static void aspeed_2600_fmc_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2600_fmc_info = {
- .name = "aspeed.fmc-ast2600",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2600_fmc_class_init,
-};
-
static const AspeedSegments aspeed_2600_spi1_segments[] = {
{ 0x0, 128 * MiB }, /* start address is readonly */
{ 0x0, 0 }, /* disabled */
@@ -1752,12 +1693,6 @@ static void aspeed_2600_spi1_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2600_spi1_info = {
- .name = "aspeed.spi1-ast2600",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2600_spi1_class_init,
-};
-
static const AspeedSegments aspeed_2600_spi2_segments[] = {
{ 0x0, 128 * MiB }, /* start address is readonly */
{ 0x0, 0 }, /* disabled */
@@ -1793,12 +1728,6 @@ static void aspeed_2600_spi2_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_2600_spi2_info = {
- .name = "aspeed.spi2-ast2600",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2600_spi2_class_init,
-};
-
/*
* The FMC Segment Registers of the AST1030 have a 512KB unit.
* Only bits [27:19] are used for decoding.
@@ -1877,12 +1806,6 @@ static void aspeed_1030_fmc_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_1030_fmc_info = {
- .name = "aspeed.fmc-ast1030",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_1030_fmc_class_init,
-};
-
static const AspeedSegments aspeed_1030_spi1_segments[] = {
{ 0x0, 128 * MiB }, /* start address is readonly */
{ 0x0, 0 }, /* disabled */
@@ -1916,11 +1839,6 @@ static void aspeed_1030_spi1_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_1030_spi1_info = {
- .name = "aspeed.spi1-ast1030",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_1030_spi1_class_init,
-};
static const AspeedSegments aspeed_1030_spi2_segments[] = {
{ 0x0, 128 * MiB }, /* start address is readonly */
{ 0x0, 0 }, /* disabled */
@@ -1954,12 +1872,6 @@ static void aspeed_1030_spi2_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_smc_flash_ops;
}
-static const TypeInfo aspeed_1030_spi2_info = {
- .name = "aspeed.spi2-ast1030",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_1030_spi2_class_init,
-};
-
/*
* The FMC Segment Registers of the AST2700 have a 64KB unit.
* Only bits [31:16] are used for decoding.
@@ -2061,12 +1973,6 @@ static void aspeed_2700_fmc_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_2700_smc_flash_ops;
}
-static const TypeInfo aspeed_2700_fmc_info = {
- .name = "aspeed.fmc-ast2700",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2700_fmc_class_init,
-};
-
static const AspeedSegments aspeed_2700_spi0_segments[] = {
{ 0x0, 128 * MiB }, /* start address is readonly */
{ 128 * MiB, 128 * MiB }, /* start address is readonly */
@@ -2102,12 +2008,6 @@ static void aspeed_2700_spi0_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_2700_smc_flash_ops;
}
-static const TypeInfo aspeed_2700_spi0_info = {
- .name = "aspeed.spi0-ast2700",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2700_spi0_class_init,
-};
-
static const AspeedSegments aspeed_2700_spi1_segments[] = {
{ 0x0, 128 * MiB }, /* start address is readonly */
{ 0x0, 0 }, /* disabled */
@@ -2142,12 +2042,6 @@ static void aspeed_2700_spi1_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_2700_smc_flash_ops;
}
-static const TypeInfo aspeed_2700_spi1_info = {
- .name = "aspeed.spi1-ast2700",
- .parent = TYPE_ASPEED_SMC,
- .class_init = aspeed_2700_spi1_class_init,
-};
-
static const AspeedSegments aspeed_2700_spi2_segments[] = {
{ 0x0, 128 * MiB }, /* start address is readonly */
{ 0x0, 0 }, /* disabled */
@@ -2182,32 +2076,102 @@ static void aspeed_2700_spi2_class_init(ObjectClass *klass, const void *data)
asc->reg_ops = &aspeed_2700_smc_flash_ops;
}
-static const TypeInfo aspeed_2700_spi2_info = {
- .name = "aspeed.spi2-ast2700",
- .parent = TYPE_ASPEED_SMC,
+static const TypeInfo aspeed_smc_types[] = {
+ {
+ .name = TYPE_ASPEED_SMC_FLASH,
+ .parent = TYPE_SYS_BUS_DEVICE,
+ .instance_size = sizeof(AspeedSMCFlash),
+ .class_init = aspeed_smc_flash_class_init,
+ },
+ {
+ .name = TYPE_ASPEED_SMC,
+ .parent = TYPE_SYS_BUS_DEVICE,
+ .instance_init = aspeed_smc_instance_init,
+ .instance_size = sizeof(AspeedSMCState),
+ .class_size = sizeof(AspeedSMCClass),
+ .class_init = aspeed_smc_class_init,
+ .abstract = true,
+ },
+ {
+ .name = "aspeed.fmc-ast1030",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_1030_fmc_class_init,
+ },
+ {
+ .name = "aspeed.spi1-ast1030",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_1030_spi1_class_init,
+ },
+ {
+ .name = "aspeed.spi2-ast1030",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_1030_spi2_class_init,
+ },
+ {
+ .name = "aspeed.smc-ast2400",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2400_smc_class_init,
+ },
+ {
+ .name = "aspeed.fmc-ast2400",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2400_fmc_class_init,
+ },
+ {
+ .name = "aspeed.spi1-ast2400",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2400_spi1_class_init,
+ },
+ {
+ .name = "aspeed.fmc-ast2500",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2500_fmc_class_init,
+ },
+ {
+ .name = "aspeed.spi1-ast2500",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2500_spi1_class_init,
+ },
+ {
+ .name = "aspeed.spi2-ast2500",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2500_spi2_class_init,
+ },
+ {
+ .name = "aspeed.fmc-ast2600",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2600_fmc_class_init,
+ },
+ {
+ .name = "aspeed.spi1-ast2600",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2600_spi1_class_init,
+ },
+ {
+ .name = "aspeed.spi2-ast2600",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2600_spi2_class_init,
+ },
+ {
+ .name = "aspeed.fmc-ast2700",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2700_fmc_class_init,
+ },
+ {
+ .name = "aspeed.spi0-ast2700",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2700_spi0_class_init,
+ },
+ {
+ .name = "aspeed.spi1-ast2700",
+ .parent = TYPE_ASPEED_SMC,
+ .class_init = aspeed_2700_spi1_class_init,
+ },
+ {
+ .name = "aspeed.spi2-ast2700",
+ .parent = TYPE_ASPEED_SMC,
.class_init = aspeed_2700_spi2_class_init,
+ }
};
-static void aspeed_smc_register_types(void)
-{
- type_register_static(&aspeed_smc_flash_info);
- type_register_static(&aspeed_smc_info);
- type_register_static(&aspeed_2400_smc_info);
- type_register_static(&aspeed_2400_fmc_info);
- type_register_static(&aspeed_2400_spi1_info);
- type_register_static(&aspeed_2500_fmc_info);
- type_register_static(&aspeed_2500_spi1_info);
- type_register_static(&aspeed_2500_spi2_info);
- type_register_static(&aspeed_2600_fmc_info);
- type_register_static(&aspeed_2600_spi1_info);
- type_register_static(&aspeed_2600_spi2_info);
- type_register_static(&aspeed_1030_fmc_info);
- type_register_static(&aspeed_1030_spi1_info);
- type_register_static(&aspeed_1030_spi2_info);
- type_register_static(&aspeed_2700_fmc_info);
- type_register_static(&aspeed_2700_spi0_info);
- type_register_static(&aspeed_2700_spi1_info);
- type_register_static(&aspeed_2700_spi2_info);
-}
-
-type_init(aspeed_smc_register_types)
+DEFINE_TYPES(aspeed_smc_types)
--
2.43.0
next prev parent reply other threads:[~2026-06-01 2:52 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-01 2:50 [PATCH v1 00/24] hw/aspeed: Convert all Aspeed devices to DEFINE_TYPES() with inlined TypeInfo Jamin Lin
2026-06-01 2:50 ` [PATCH v1 01/24] hw/misc/aspeed_hace: Convert " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 02/24] hw/misc/aspeed_lpc: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 03/24] hw/misc/aspeed_ltpi: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 04/24] hw/misc/aspeed_pwm: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 05/24] hw/misc/aspeed_sbc: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 06/24] hw/misc/aspeed_scu: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 07/24] hw/misc/aspeed_sdmc: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 08/24] hw/misc:aspeed_sli: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 09/24] hw/misc/aspeed_xdma: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 10/24] hw/adc/aspeed_adc: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 11/24] hw/arm/aspeed_ast1700: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 12/24] hw/gpio/aspeed_gpio: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 13/24] hw/gpio/aspeed_sgpio: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 14/24] hw/intc/aspeed_intc: convert " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 15/24] hw/intc/aspeed_vic: Convert " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 16/24] hw/rtc/aspeed_rtc: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 17/24] hw/watchdog/wdt_aspeed: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 18/24] hw/nvram/aspeed_otp: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 19/24] hw/timer/aspeed_timer: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 20/24] hw/fsi/aspeed_apb2opb: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 21/24] hw/pci-host/aspeed_pcie: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 22/24] hw/i2c/aspeed_i2c: " Jamin Lin
2026-06-01 2:50 ` [PATCH v1 23/24] hw/net/ftgmac100: " Jamin Lin
2026-06-01 2:50 ` Jamin Lin [this message]
2026-06-01 8:49 ` [PATCH v1 00/24] hw/aspeed: Convert all Aspeed devices " Cédric Le Goater
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=20260601024959.2347639-25-jamin_lin@aspeedtech.com \
--to=jamin_lin@aspeedtech.com \
--cc=alistair@alistair23.me \
--cc=andrew@codeconstruct.com.au \
--cc=clg@kaod.org \
--cc=jasowang@redhat.com \
--cc=joel@jms.id.au \
--cc=kane_chen@aspeedtech.com \
--cc=leetroy@gmail.com \
--cc=ninad@linux.ibm.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=steven_lee@aspeedtech.com \
--cc=troy_lee@aspeedtech.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 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.