From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>,
qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: Radoslaw Biernacki <rad@semihalf.com>,
Leif Lindholm <quic_llindhol@quicinc.com>,
Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Subject: Re: [PATCH v2 3/4] hw/watchdog/sbsa_gwdt: Make watchdog timer frequency a QOM property
Date: Fri, 26 Apr 2024 14:46:50 +0200 [thread overview]
Message-ID: <36b9a714-44ff-4b60-a23d-89672a98f46e@linaro.org> (raw)
In-Reply-To: <20240426122913.3427983-4-peter.maydell@linaro.org>
Hi Peter,
On 26/4/24 14:29, Peter Maydell wrote:
> Currently the sbsa_gdwt watchdog device hardcodes its frequency at
> 62.5MHz. In real hardware, this watchdog is supposed to be driven
> from the system counter, which also drives the CPU generic timers.
> Newer CPU types (in particular from Armv8.6) should have a CPU
> generic timer frequency of 1GHz, so we can't leave the watchdog
> on the old QEMU default of 62.5GHz.
>
> Make the frequency a QOM property so it can be set by the board,
> and have our only board that uses this device set that frequency
> to the same value it sets the CPU frequency.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> include/hw/watchdog/sbsa_gwdt.h | 3 +--
> hw/arm/sbsa-ref.c | 1 +
> hw/watchdog/sbsa_gwdt.c | 15 ++++++++++++++-
> 3 files changed, 16 insertions(+), 3 deletions(-)
> diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c
> index 36f6f717b4b..57c337fd92a 100644
> --- a/hw/arm/sbsa-ref.c
> +++ b/hw/arm/sbsa-ref.c
> @@ -543,6 +543,7 @@ static void create_wdt(const SBSAMachineState *sms)
> SysBusDevice *s = SYS_BUS_DEVICE(dev);
> int irq = sbsa_ref_irqmap[SBSA_GWDT_WS0];
>
> + qdev_prop_set_uint64(dev, "clock-frequency", SBSA_GTIMER_HZ);
Since we have access to the CPU and its generic timer, what about
just keep the wdg in sync, as smth like:
qdev_prop_set_uint64(dev, "clock-frequency",
object_property_get_uint(OBJECT(some_cpu),
"cntfrq", errp));
> sysbus_realize_and_unref(s, &error_fatal);
> sysbus_mmio_map(s, 0, rbase);
> sysbus_mmio_map(s, 1, cbase);
next prev parent reply other threads:[~2024-04-26 12:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-26 12:29 [PATCH v2 0/4] target/arm: Make the counter frequency default 1GHz for new CPUs, machines Peter Maydell
2024-04-26 12:29 ` [PATCH v2 1/4] target/arm: Refactor default generic timer frequency handling Peter Maydell
2024-04-26 12:29 ` [PATCH v2 2/4] hw/arm/sbsa-ref: Force CPU generic timer to 62.5MHz Peter Maydell
2024-04-26 13:41 ` Philippe Mathieu-Daudé
2024-04-29 6:37 ` Marcin Juszkiewicz
2024-04-26 12:29 ` [PATCH v2 3/4] hw/watchdog/sbsa_gwdt: Make watchdog timer frequency a QOM property Peter Maydell
2024-04-26 12:46 ` Philippe Mathieu-Daudé [this message]
2024-04-26 13:28 ` Peter Maydell
2024-04-26 13:41 ` Philippe Mathieu-Daudé
2024-04-26 12:29 ` [PATCH v2 4/4] target/arm: Default to 1GHz cntfrq for 'max' and new CPUs 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=36b9a714-44ff-4b60-a23d-89672a98f46e@linaro.org \
--to=philmd@linaro.org \
--cc=marcin.juszkiewicz@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=quic_llindhol@quicinc.com \
--cc=rad@semihalf.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).