From: Alistair Francis <alistair23@gmail.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: "Damien Hedde" <damien.hedde@greensocs.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Eduardo Habkost" <ehabkost@redhat.com>,
"Alistair Francis" <alistair@alistair23.me>,
"qemu-devel@nongnu.org Developers" <qemu-devel@nongnu.org>,
qemu-arm <qemu-arm@nongnu.org>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Edgar E. Iglesias" <edgar.iglesias@gmail.com>
Subject: Re: [PATCH-for-5.1? 2/4] hw/arm/xilinx_zynq: Call qdev_connect_clock_in() before DeviceRealize
Date: Mon, 10 Aug 2020 07:57:24 -0700 [thread overview]
Message-ID: <CAKmqyKMUp03sZ0_Dt5hvpp14gWfza7BOSTtQ8JuHWHi7Mqo1dw@mail.gmail.com> (raw)
In-Reply-To: <20200803105647.22223-3-f4bug@amsat.org>
On Mon, Aug 3, 2020 at 3:57 AM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> Clock canonical name is set in device_set_realized (see the block
> added to hw/core/qdev.c in commit 0e6934f264).
> If we connect a clock after the device is realized, this code is
> not executed. This is currently not a problem as this name is only
> used for trace events, however this disrupt tracing.
>
> Fix by calling qdev_connect_clock_in() before realizing.
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Alistair
> ---
> hw/arm/xilinx_zynq.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/hw/arm/xilinx_zynq.c b/hw/arm/xilinx_zynq.c
> index cf6d9757b5..969ef0727c 100644
> --- a/hw/arm/xilinx_zynq.c
> +++ b/hw/arm/xilinx_zynq.c
> @@ -222,18 +222,18 @@ static void zynq_init(MachineState *machine)
> 1, 0x0066, 0x0022, 0x0000, 0x0000, 0x0555, 0x2aa,
> 0);
>
> - /* Create slcr, keep a pointer to connect clocks */
> - slcr = qdev_new("xilinx,zynq_slcr");
> - sysbus_realize_and_unref(SYS_BUS_DEVICE(slcr), &error_fatal);
> - sysbus_mmio_map(SYS_BUS_DEVICE(slcr), 0, 0xF8000000);
> -
> /* Create the main clock source, and feed slcr with it */
> zynq_machine->ps_clk = CLOCK(object_new(TYPE_CLOCK));
> object_property_add_child(OBJECT(zynq_machine), "ps_clk",
> OBJECT(zynq_machine->ps_clk));
> object_unref(OBJECT(zynq_machine->ps_clk));
> clock_set_hz(zynq_machine->ps_clk, PS_CLK_FREQUENCY);
> +
> + /* Create slcr, keep a pointer to connect clocks */
> + slcr = qdev_new("xilinx,zynq_slcr");
> qdev_connect_clock_in(slcr, "ps_clk", zynq_machine->ps_clk);
> + sysbus_realize_and_unref(SYS_BUS_DEVICE(slcr), &error_fatal);
> + sysbus_mmio_map(SYS_BUS_DEVICE(slcr), 0, 0xF8000000);
>
> dev = qdev_new(TYPE_A9MPCORE_PRIV);
> qdev_prop_set_uint32(dev, "num-cpu", 1);
> @@ -257,19 +257,19 @@ static void zynq_init(MachineState *machine)
> dev = qdev_new(TYPE_CADENCE_UART);
> busdev = SYS_BUS_DEVICE(dev);
> qdev_prop_set_chr(dev, "chardev", serial_hd(0));
> + qdev_connect_clock_in(dev, "refclk",
> + qdev_get_clock_out(slcr, "uart0_ref_clk"));
> sysbus_realize_and_unref(busdev, &error_fatal);
> sysbus_mmio_map(busdev, 0, 0xE0000000);
> sysbus_connect_irq(busdev, 0, pic[59 - IRQ_OFFSET]);
> - qdev_connect_clock_in(dev, "refclk",
> - qdev_get_clock_out(slcr, "uart0_ref_clk"));
> dev = qdev_new(TYPE_CADENCE_UART);
> busdev = SYS_BUS_DEVICE(dev);
> qdev_prop_set_chr(dev, "chardev", serial_hd(1));
> + qdev_connect_clock_in(dev, "refclk",
> + qdev_get_clock_out(slcr, "uart1_ref_clk"));
> sysbus_realize_and_unref(busdev, &error_fatal);
> sysbus_mmio_map(busdev, 0, 0xE0001000);
> sysbus_connect_irq(busdev, 0, pic[82 - IRQ_OFFSET]);
> - qdev_connect_clock_in(dev, "refclk",
> - qdev_get_clock_out(slcr, "uart1_ref_clk"));
>
> sysbus_create_varargs("cadence_ttc", 0xF8001000,
> pic[42-IRQ_OFFSET], pic[43-IRQ_OFFSET], pic[44-IRQ_OFFSET], NULL);
> --
> 2.21.3
>
>
next prev parent reply other threads:[~2020-08-10 15:08 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-03 10:56 [PATCH-for-5.1? 0/4] hw/arm/xilinx_zynq: Call qdev_connect_clock_in() before DeviceRealize Philippe Mathieu-Daudé
2020-08-03 10:56 ` [PATCH-for-5.1? 1/4] hw/arm/xilinx_zynq: Uninline cadence_uart_create() Philippe Mathieu-Daudé
2020-08-10 14:55 ` Alistair Francis
2020-08-03 10:56 ` [PATCH-for-5.1? 2/4] hw/arm/xilinx_zynq: Call qdev_connect_clock_in() before DeviceRealize Philippe Mathieu-Daudé
2020-08-10 14:57 ` Alistair Francis [this message]
2020-08-03 10:56 ` [PATCH-for-5.1? 3/4] hw/qdev-clock: Uninline qdev_connect_clock_in() Philippe Mathieu-Daudé
2020-08-10 14:59 ` Alistair Francis
2020-08-03 10:56 ` [PATCH-for-5.1? 4/4] hw/qdev-clock: Avoid calling qdev_connect_clock_in after DeviceRealize Philippe Mathieu-Daudé
2020-08-10 14:58 ` Alistair Francis
2020-08-22 20:11 ` [PATCH-for-5.1? 0/4] hw/arm/xilinx_zynq: Call qdev_connect_clock_in() before DeviceRealize Philippe Mathieu-Daudé
2020-08-24 16:39 ` Peter Maydell
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=CAKmqyKMUp03sZ0_Dt5hvpp14gWfza7BOSTtQ8JuHWHi7Mqo1dw@mail.gmail.com \
--to=alistair23@gmail.com \
--cc=alistair@alistair23.me \
--cc=berrange@redhat.com \
--cc=damien.hedde@greensocs.com \
--cc=edgar.iglesias@gmail.com \
--cc=ehabkost@redhat.com \
--cc=f4bug@amsat.org \
--cc=pbonzini@redhat.com \
--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).