From: Alistair Francis <alistair23@gmail.com>
To: Tyler Ng <tkng@rivosinc.com>
Cc: "open list:RISC-V" <qemu-riscv@nongnu.org>,
"qemu-devel@nongnu.org Developers" <qemu-devel@nongnu.org>,
Alistair Francis <Alistair.Francis@wdc.com>,
Bin Meng <bin.meng@windriver.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Thomas Huth <thuth@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Laurent Vivier <lvivier@redhat.com>
Subject: Re: [PATCH 4/4] hw/timer: ibex_timer.c: Add support for writes to mtime
Date: Thu, 8 Sep 2022 14:20:14 +0200 [thread overview]
Message-ID: <CAKmqyKOSGGENYYq4XTUNQq51A2Eroubm1YWERyzrWE3HfFADyg@mail.gmail.com> (raw)
In-Reply-To: <CAB88-qOuU=4dhQQdamqsXXwZF1kWO15SS48DK3Q7sXQ7JtWmMA@mail.gmail.com>
On Fri, Sep 2, 2022 at 3:28 AM Tyler Ng <tkng@rivosinc.com> wrote:
>
> 1. Adds fields to hold the value of mtime in timer_upper0 and timer_lower0.
>
> 2. Changes the read and write functions to use the mtime fields.
>
> 3. Updates the value of mtime in update_mtime() by extrapolating the
> time elapsed. This will need to change if/when the prescalar is
> implemented.
>
> Signed-off-by: Tyler Ng <tkng@rivosinc.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Alistair
> ---
> hw/timer/ibex_timer.c | 94 +++++++++++++++++++++++++----------
> include/hw/timer/ibex_timer.h | 5 ++
> 2 files changed, 73 insertions(+), 26 deletions(-)
>
> diff --git a/hw/timer/ibex_timer.c b/hw/timer/ibex_timer.c
> index 9ffd4821e8..7d0ea2db1e 100644
> --- a/hw/timer/ibex_timer.c
> +++ b/hw/timer/ibex_timer.c
> @@ -52,30 +52,59 @@ REG32(UPPER0, 0x114)
> REG32(COMPARE_LOWER0, 0x118)
> REG32(COMPARE_UPPER0, 0x11C)
>
> -static uint64_t cpu_riscv_read_rtc(uint32_t timebase_freq)
> +
> +/*
> + * The goal of this function is to:
> + * 1. Check if the timer is enabled. If not, return false,
> + * 2. Calculate the amount of time that has passed since.
> + * 3. Extrapolate the number of ticks that have passed, and add it to `mtime`.
> + * 4. Return true.
> + */
> +static bool update_mtime(IbexTimerState *s)
> +{
> + if (!(R_CTRL & R_CTRL_ACTIVE_MASK)) {
> + return false;
> + }
> + /* Get the time then extrapolate the number of ticks that have elapsed */
> + uint64_t mtime = (s->timer_lower0) | ((uint64_t) s->timer_upper0 << 32);
> + int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
> + int64_t elapsed = now - s->timer_last_update;
> + if (elapsed < 0) {
> + /* We jumped back in time. */
> + mtime -= muldiv64((uint64_t)(-elapsed), s->timebase_freq,
> + NANOSECONDS_PER_SECOND);
> + } else {
> + mtime += muldiv64(elapsed, s->timebase_freq, NANOSECONDS_PER_SECOND);
> + }
> + s->timer_lower0 = mtime & 0xffffffff;
> + s->timer_upper0 = (mtime >> 32) & 0xffffffff;
> + /* update last-checkpoint timestamp */
> + s->timer_last_update = now;
> + return true;
> +}
> +
> +static inline uint64_t cpu_riscv_read_rtc(void *opaque)
> {
> - return muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
> - timebase_freq, NANOSECONDS_PER_SECOND);
> + IbexTimerState *s = opaque;
> + return (s->timer_lower0) | ((uint64_t) s->timer_upper0 << 32);
> }
>
> static void ibex_timer_update_irqs(IbexTimerState *s)
> {
> CPUState *cs = qemu_get_cpu(0);
> RISCVCPU *cpu = RISCV_CPU(cs);
> - uint64_t value = s->timer_compare_lower0 |
> + uint64_t mtimecmp = s->timer_compare_lower0 |
> ((uint64_t)s->timer_compare_upper0 << 32);
> - uint64_t next, diff;
> - uint64_t now = cpu_riscv_read_rtc(s->timebase_freq);
> -
> - if (!(s->timer_ctrl & R_CTRL_ACTIVE_MASK)) {
> - /* Timer isn't active */
> + if (!update_mtime(s)) {
> + /* Timer is not enabled? */
> return;
> }
> + uint64_t mtime = cpu_riscv_read_rtc(s);
>
> /* Update the CPUs mtimecmp */
> - cpu->env.timecmp = value;
> + cpu->env.timecmp = mtimecmp;
>
> - if (cpu->env.timecmp <= now) {
> + if (cpu->env.timecmp <= mtime) {
> /*
> * If the mtimecmp was in the past raise the interrupt now.
> */
> @@ -86,18 +115,18 @@ static void ibex_timer_update_irqs(IbexTimerState *s)
> }
> return;
> }
> -
> + /* Update timers */
> + int64_t next;
> + uint64_t diff;
> /* Setup a timer to trigger the interrupt in the future */
> qemu_irq_lower(s->m_timer_irq);
> qemu_set_irq(s->irq, false);
> -
> - diff = cpu->env.timecmp - now;
> - next = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
> - muldiv64(diff,
> - NANOSECONDS_PER_SECOND,
> - s->timebase_freq);
> -
> - if (next < qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)) {
> + /* Compute the difference, and set a timer for the next update. */
> + diff = mtimecmp - mtime;
> + const uint64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
> + const uint64_t towait = muldiv64(diff, NANOSECONDS_PER_SECOND,
> s->timebase_freq);
> + next = now + towait;
> + if (next < now) {
> /* We overflowed the timer, just set it as large as we can */
> timer_mod(cpu->env.timer, 0x7FFFFFFFFFFFFFFF);
> } else {
> @@ -128,11 +157,13 @@ static void ibex_timer_reset(DeviceState *dev)
>
> s->timer_ctrl = 0x00000000;
> s->timer_cfg0 = 0x00010000;
> + s->timer_lower0 = 0x00000000;
> + s->timer_upper0 = 0x00000000;
> s->timer_compare_lower0 = 0xFFFFFFFF;
> s->timer_compare_upper0 = 0xFFFFFFFF;
> s->timer_intr_enable = 0x00000000;
> s->timer_intr_state = 0x00000000;
> -
> + s->timer_last_update = 0x00000000;
> ibex_timer_update_irqs(s);
> }
>
> @@ -140,7 +171,6 @@ static uint64_t ibex_timer_read(void *opaque, hwaddr addr,
> unsigned int size)
> {
> IbexTimerState *s = opaque;
> - uint64_t now = cpu_riscv_read_rtc(s->timebase_freq);
> uint64_t retvalue = 0;
>
> switch (addr >> 2) {
> @@ -155,10 +185,12 @@ static uint64_t ibex_timer_read(void *opaque, hwaddr addr,
> retvalue = s->timer_cfg0;
> break;
> case R_LOWER0:
> - retvalue = now;
> + update_mtime(s);
> + retvalue = cpu_riscv_read_rtc(s);
> break;
> case R_UPPER0:
> - retvalue = now >> 32;
> + update_mtime(s);
> + retvalue = cpu_riscv_read_rtc(s) >> 32;
> break;
> case R_COMPARE_LOWER0:
> retvalue = s->timer_compare_lower0;
> @@ -197,16 +229,22 @@ static void ibex_timer_write(void *opaque, hwaddr addr,
> break;
> case R_CTRL:
> s->timer_ctrl = val;
> + /* We must update IRQs, because the QEMU timer gets updated here. */
> + ibex_timer_update_irqs(s);
> break;
> case R_CFG0:
> qemu_log_mask(LOG_UNIMP, "Changing prescale or step not supported");
> s->timer_cfg0 = val;
> break;
> case R_LOWER0:
> - qemu_log_mask(LOG_UNIMP, "Changing timer value is not supported");
> + s->timer_lower0 = val;
> + s->timer_last_update = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
> + ibex_timer_update_irqs(s);
> break;
> case R_UPPER0:
> - qemu_log_mask(LOG_UNIMP, "Changing timer value is not supported");
> + s->timer_upper0 = val;
> + s->timer_last_update = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
> + ibex_timer_update_irqs(s);
> break;
> case R_COMPARE_LOWER0:
> s->timer_compare_lower0 = val;
> @@ -263,6 +301,9 @@ static const VMStateDescription vmstate_ibex_timer = {
> VMSTATE_UINT32(timer_compare_upper0, IbexTimerState),
> VMSTATE_UINT32(timer_intr_enable, IbexTimerState),
> VMSTATE_UINT32(timer_intr_state, IbexTimerState),
> + VMSTATE_INT64(timer_last_update, IbexTimerState),
> + VMSTATE_UINT32(timer_lower0, IbexTimerState),
> + VMSTATE_UINT32(timer_upper0, IbexTimerState),
> VMSTATE_END_OF_LIST()
> }
> };
> @@ -281,6 +322,7 @@ static void ibex_timer_init(Object *obj)
> memory_region_init_io(&s->mmio, obj, &ibex_timer_ops, s,
> TYPE_IBEX_TIMER, 0x400);
> sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);
> +
> }
>
> static void ibex_timer_realize(DeviceState *dev, Error **errp)
> diff --git a/include/hw/timer/ibex_timer.h b/include/hw/timer/ibex_timer.h
> index 1a0a28d5fa..a6a1aa279a 100644
> --- a/include/hw/timer/ibex_timer.h
> +++ b/include/hw/timer/ibex_timer.h
> @@ -39,6 +39,11 @@ struct IbexTimerState {
>
> uint32_t timer_ctrl;
> uint32_t timer_cfg0;
> +
> + int64_t timer_last_update;
> +
> + uint32_t timer_lower0;
> + uint32_t timer_upper0;
> uint32_t timer_compare_lower0;
> uint32_t timer_compare_upper0;
> uint32_t timer_intr_enable;
> --
> 2.30.2
>
prev parent reply other threads:[~2022-09-08 12:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-01 22:50 [PATCH 4/4] hw/timer: ibex_timer.c: Add support for writes to mtime Tyler Ng
2022-09-08 12:20 ` Alistair Francis [this message]
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=CAKmqyKOSGGENYYq4XTUNQq51A2Eroubm1YWERyzrWE3HfFADyg@mail.gmail.com \
--to=alistair23@gmail.com \
--cc=Alistair.Francis@wdc.com \
--cc=bin.meng@windriver.com \
--cc=lvivier@redhat.com \
--cc=palmer@dabbelt.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=thuth@redhat.com \
--cc=tkng@rivosinc.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).