From: Greg Kurz <groug@kaod.org>
To: "Cédric Le Goater" <clg@kaod.org>
Cc: Andrew Jeffery <andrew@aj.id.au>,
Peter Maydell <peter.maydell@linaro.org>,
qemu-arm@nongnu.org, Joel Stanley <joel@jms.id.au>,
qemu-devel@nongnu.org
Subject: Re: [PATCH for-5.0 2/2] aspeed: change the "nic" property definition
Date: Mon, 18 Nov 2019 20:46:09 +0100 [thread overview]
Message-ID: <20191118204609.33f06000@bahia.lan> (raw)
In-Reply-To: <20191118161712.6712-3-clg@kaod.org>
On Mon, 18 Nov 2019 17:17:12 +0100
Cédric Le Goater <clg@kaod.org> wrote:
> The Aspeed MII model has a link pointing to its associated FTGMAC100
> NIC in the machine.
>
> Change the "nic" property definition so that it explicitly sets the
> pointer. The property isn't optional : not being able to set the link
> is a bug and QEMU should rather abort than exit in this case.
>
> Signed-off-by: Cédric Le Goater <clg@kaod.org>
> ---
Reviewed-by: Greg Kurz <groug@kaod.org>
> hw/arm/aspeed_ast2600.c | 5 ++---
> hw/net/ftgmac100.c | 19 +++++++++----------
> 2 files changed, 11 insertions(+), 13 deletions(-)
>
> diff --git a/hw/arm/aspeed_ast2600.c b/hw/arm/aspeed_ast2600.c
> index 810fd7de0c06..be88005dab8f 100644
> --- a/hw/arm/aspeed_ast2600.c
> +++ b/hw/arm/aspeed_ast2600.c
> @@ -183,9 +183,6 @@ static void aspeed_soc_ast2600_init(Object *obj)
>
> sysbus_init_child_obj(obj, "mii[*]", &s->mii[i], sizeof(s->mii[i]),
> TYPE_ASPEED_MII);
> - object_property_add_const_link(OBJECT(&s->mii[i]), "nic",
> - OBJECT(&s->ftgmac100[i]),
> - &error_abort);
> }
>
> sysbus_init_child_obj(obj, "xdma", OBJECT(&s->xdma), sizeof(s->xdma),
> @@ -441,6 +438,8 @@ static void aspeed_soc_ast2600_realize(DeviceState *dev, Error **errp)
> sysbus_connect_irq(SYS_BUS_DEVICE(&s->ftgmac100[i]), 0,
> aspeed_soc_get_irq(s, ASPEED_ETH1 + i));
>
> + object_property_set_link(OBJECT(&s->mii[i]), OBJECT(&s->ftgmac100[i]),
> + "nic", &error_abort);
> object_property_set_bool(OBJECT(&s->mii[i]), true, "realized",
> &err);
> if (err) {
> diff --git a/hw/net/ftgmac100.c b/hw/net/ftgmac100.c
> index eb8b441461a1..86ac25894a89 100644
> --- a/hw/net/ftgmac100.c
> +++ b/hw/net/ftgmac100.c
> @@ -1204,17 +1204,8 @@ static void aspeed_mii_realize(DeviceState *dev, Error **errp)
> {
> AspeedMiiState *s = ASPEED_MII(dev);
> SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
> - Object *obj;
> - Error *local_err = NULL;
>
> - obj = object_property_get_link(OBJECT(dev), "nic", &local_err);
> - if (!obj) {
> - error_propagate(errp, local_err);
> - error_prepend(errp, "required link 'nic' not found: ");
> - return;
> - }
> -
> - s->nic = FTGMAC100(obj);
> + assert(s->nic);
>
> memory_region_init_io(&s->iomem, OBJECT(dev), &aspeed_mii_ops, s,
> TYPE_ASPEED_MII, 0x8);
> @@ -1231,6 +1222,13 @@ static const VMStateDescription vmstate_aspeed_mii = {
> VMSTATE_END_OF_LIST()
> }
> };
> +
> +static Property aspeed_mii_properties[] = {
> + DEFINE_PROP_LINK("nic", AspeedMiiState, nic, TYPE_FTGMAC100,
> + FTGMAC100State *),
> + DEFINE_PROP_END_OF_LIST(),
> +};
> +
> static void aspeed_mii_class_init(ObjectClass *klass, void *data)
> {
> DeviceClass *dc = DEVICE_CLASS(klass);
> @@ -1239,6 +1237,7 @@ static void aspeed_mii_class_init(ObjectClass *klass, void *data)
> dc->reset = aspeed_mii_reset;
> dc->realize = aspeed_mii_realize;
> dc->desc = "Aspeed MII controller";
> + dc->props = aspeed_mii_properties;
> }
>
> static const TypeInfo aspeed_mii_info = {
next prev parent reply other threads:[~2019-11-18 19:48 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-18 16:17 [PATCH for-5.0 0/2] aspeed: rework inter model link properties Cédric Le Goater
2019-11-18 16:17 ` [PATCH for-5.0 1/2] aspeed: change the "scu" property definition Cédric Le Goater
2019-11-18 19:45 ` Greg Kurz
2019-11-18 22:39 ` Joel Stanley
2019-11-18 16:17 ` [PATCH for-5.0 2/2] aspeed: change the "nic" " Cédric Le Goater
2019-11-18 19:46 ` Greg Kurz [this message]
2019-11-18 22:39 ` Joel Stanley
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=20191118204609.33f06000@bahia.lan \
--to=groug@kaod.org \
--cc=andrew@aj.id.au \
--cc=clg@kaod.org \
--cc=joel@jms.id.au \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--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).