From: Thomas Huth <thuth@redhat.com>
To: Nicholas Piggin <npiggin@gmail.com>
Cc: Laurent Vivier <lvivier@redhat.com>,
linuxppc-dev@lists.ozlabs.org, kvm@vger.kernel.org,
Andrew Jones <andrew.jones@linux.dev>
Subject: Re: [kvm-unit-tests PATCH v9 21/31] powerpc: Add timebase tests
Date: Tue, 4 Jun 2024 08:12:37 +0200 [thread overview]
Message-ID: <014763b7-93d9-4725-acc0-b5436a5ea91a@redhat.com> (raw)
In-Reply-To: <20240504122841.1177683-22-npiggin@gmail.com>
On 04/05/2024 14.28, Nicholas Piggin wrote:
> This has a known failure on QEMU TCG machines where the decrementer
> interrupt is not lowered when the DEC wraps from -ve to +ve.
Would it then make sense to mark the test with accel = kvm to avoid the test
failure when running with TCG?
> diff --git a/powerpc/timebase.c b/powerpc/timebase.c
> new file mode 100644
> index 000000000..02a4e33c0
> --- /dev/null
> +++ b/powerpc/timebase.c
> @@ -0,0 +1,331 @@
> +/* SPDX-License-Identifier: LGPL-2.0-only */
> +/*
> + * Test Timebase
> + *
> + * Copyright 2024 Nicholas Piggin, IBM Corp.
> + *
> + * This contains tests of timebase facility, TB, DEC, etc.
> + */
> +#include <libcflat.h>
> +#include <util.h>
> +#include <migrate.h>
> +#include <alloc.h>
> +#include <asm/handlers.h>
> +#include <devicetree.h>
> +#include <asm/hcall.h>
> +#include <asm/processor.h>
> +#include <asm/time.h>
> +#include <asm/barrier.h>
> +
> +static int dec_bits = 0;
> +
> +static void cpu_dec_bits(int fdtnode, u64 regval __unused, void *arg __unused)
> +{
> + const struct fdt_property *prop;
> + int plen;
> +
> + prop = fdt_get_property(dt_fdt(), fdtnode, "ibm,dec-bits", &plen);
> + if (!prop) {
> + dec_bits = 32;
> + return;
> + }
> +
> + /* Sanity check for the property layout (first two bytes are header) */
> + assert(plen == 4);
> +
> + dec_bits = fdt32_to_cpu(*(uint32_t *)prop->data);
> +}
> +
> +/* Check amount of CPUs nodes that have the TM flag */
> +static int find_dec_bits(void)
> +{
> + int ret;
> +
> + ret = dt_for_each_cpu_node(cpu_dec_bits, NULL);
What sense does it make to run this for each CPU node if the cpu_dec_bits
function always overwrites the global dec_bits variable?
Wouldn't it be sufficient to run this for the first node only? Or should the
cpu_dec_bits function maybe check that all nodes have the same value?
> + if (ret < 0)
> + return ret;
> +
> + return dec_bits;
> +}
> +
> +
> +static bool do_migrate = false;
> +static volatile bool got_interrupt;
> +static volatile struct pt_regs recorded_regs;
> +
> +static uint64_t dec_max;
> +static uint64_t dec_min;
> +
> +static void test_tb(int argc, char **argv)
> +{
> + uint64_t tb;
> +
> + tb = get_tb();
> + if (do_migrate)
> + migrate();
> + report(get_tb() >= tb, "timebase is incrementing");
If you use >= for testing, it could also mean that the TB stays at the same
value, so "timebase is incrementing" sounds misleading. Maybe rather
"timebase is not decreasing" ? Or wait a little bit, then check with ">" only ?
> +}
> +
> +static void dec_stop_handler(struct pt_regs *regs, void *data)
> +{
> + mtspr(SPR_DEC, dec_max);
> +}
> +
> +static void dec_handler(struct pt_regs *regs, void *data)
> +{
> + got_interrupt = true;
> + memcpy((void *)&recorded_regs, regs, sizeof(struct pt_regs));
> + regs->msr &= ~MSR_EE;
> +}
> +
> +static void test_dec(int argc, char **argv)
> +{
> + uint64_t tb1, tb2, dec;
> + int i;
> +
> + handle_exception(0x900, &dec_handler, NULL);
> +
> + for (i = 0; i < 100; i++) {
> + tb1 = get_tb();
> + mtspr(SPR_DEC, dec_max);
> + dec = mfspr(SPR_DEC);
> + tb2 = get_tb();
> + if (tb2 - tb1 < dec_max - dec)
> + break;
> + }
> + /* POWER CPUs can have a slight (few ticks) variation here */
> + report_kfail(true, tb2 - tb1 >= dec_max - dec, "decrementer remains within TB after mtDEC");
> +
> + tb1 = get_tb();
> + mtspr(SPR_DEC, dec_max);
> + mdelay(1000);
> + dec = mfspr(SPR_DEC);
> + tb2 = get_tb();
> + report(tb2 - tb1 >= dec_max - dec, "decrementer remains within TB after 1s");
> +
> + mtspr(SPR_DEC, dec_max);
> + local_irq_enable();
> + local_irq_disable();
> + if (mfspr(SPR_DEC) <= dec_max) {
> + report(!got_interrupt, "no interrupt on decrementer positive");
> + }
> + got_interrupt = false;
> +
> + mtspr(SPR_DEC, 1);
> + mdelay(100); /* Give the timer a chance to run */
> + if (do_migrate)
> + migrate();
> + local_irq_enable();
> + local_irq_disable();
> + report(got_interrupt, "interrupt on decrementer underflow");
> + got_interrupt = false;
> +
> + if (do_migrate)
> + migrate();
> + local_irq_enable();
> + local_irq_disable();
> + report(got_interrupt, "interrupt on decrementer still underflown");
> + got_interrupt = false;
> +
> + mtspr(SPR_DEC, 0);
> + mdelay(100); /* Give the timer a chance to run */
> + if (do_migrate)
> + migrate();
> + local_irq_enable();
> + local_irq_disable();
> + report(got_interrupt, "DEC deal with set to 0");
> + got_interrupt = false;
> +
> + /* Test for level-triggered decrementer */
> + mtspr(SPR_DEC, -1ULL);
> + if (do_migrate)
> + migrate();
> + local_irq_enable();
> + local_irq_disable();
> + report(got_interrupt, "interrupt on decrementer write MSB");
> + got_interrupt = false;
> +
> + mtspr(SPR_DEC, dec_max);
> + local_irq_enable();
> + if (do_migrate)
> + migrate();
> + mtspr(SPR_DEC, -1);
> + local_irq_disable();
> + report(got_interrupt, "interrupt on decrementer write MSB with irqs on");
> + got_interrupt = false;
> +
> + mtspr(SPR_DEC, dec_min + 1);
> + mdelay(100);
> + local_irq_enable();
> + local_irq_disable();
> + /* TCG does not model this correctly */
> + report_kfail(true, !got_interrupt, "no interrupt after wrap to positive");
> + got_interrupt = false;
> +
> + handle_exception(0x900, NULL, NULL);
> +}
> +
> +static void test_hdec(int argc, char **argv)
> +{
> + uint64_t tb1, tb2, hdec;
> +
> + if (!machine_is_powernv()) {
> + report_skip("skipping on !powernv machine");
I'd rather say "not running on powernv machine"
> + return;
> + }
Thomas
next prev parent reply other threads:[~2024-06-04 6:13 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-04 12:28 [kvm-unit-tests PATCH v9 00/31] powerpc improvements Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 01/31] doc: update unittests doc Nicholas Piggin
2024-05-06 7:03 ` Thomas Huth
2024-05-07 3:57 ` Nicholas Piggin
2024-05-06 8:02 ` Andrew Jones
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 02/31] report: Add known failure reporting option Nicholas Piggin
2024-05-06 7:25 ` Thomas Huth
2024-05-06 8:01 ` Andrew Jones
2024-05-06 10:19 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 03/31] powerpc: Mark known failing tests as kfail Nicholas Piggin
2024-05-06 7:37 ` Thomas Huth
2024-05-07 4:07 ` Nicholas Piggin
2024-05-07 11:44 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 04/31] powerpc: Update unittests for latest QEMU version Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 05/31] powerpc/sprs: Specify SPRs with data rather than code Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 06/31] powerpc/sprs: Avoid taking PMU interrupts caused by register fuzzing Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 07/31] scripts: allow machine option to be specified in unittests.cfg Nicholas Piggin
2024-05-07 15:08 ` Thomas Huth
2024-05-08 12:27 ` Nicholas Piggin
2024-05-08 12:55 ` Thomas Huth
2024-05-08 12:58 ` Thomas Huth
2024-05-08 13:36 ` Thomas Huth
2024-05-09 5:44 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 08/31] scripts: Accommodate powerpc powernv machine differences Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 09/31] powerpc: Support powernv machine with QEMU TCG Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 10/31] powerpc: Fix emulator illegal instruction test for powernv Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 11/31] powerpc/sprs: Test hypervisor registers on powernv machine Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 12/31] powerpc: general interrupt tests Nicholas Piggin
2024-05-07 12:12 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 13/31] powerpc: Add rtas stop-self support Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 14/31] powerpc: Remove broken SMP exception stack setup Nicholas Piggin
2024-06-03 9:30 ` Thomas Huth
2024-06-04 5:13 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 15/31] powerpc: Enable page alloc operations Nicholas Piggin
2024-06-03 9:34 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 16/31] powerpc: add SMP and IPI support Nicholas Piggin
2024-06-04 5:14 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 17/31] powerpc: Add cpu_relax Nicholas Piggin
2024-05-07 13:44 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 18/31] powerpc: Permit ACCEL=tcg,thread=single Nicholas Piggin
2024-06-04 5:17 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 19/31] powerpc: Avoid using larx/stcx. in spinlocks when only one CPU is running Nicholas Piggin
2024-06-04 5:27 ` Thomas Huth
2024-06-05 0:56 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 20/31] powerpc: Add atomics tests Nicholas Piggin
2024-06-04 5:29 ` Thomas Huth
2024-06-05 0:56 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 21/31] powerpc: Add timebase tests Nicholas Piggin
2024-06-04 6:12 ` Thomas Huth [this message]
2024-06-05 1:04 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 22/31] powerpc: Add MMU support Nicholas Piggin
2024-06-04 7:30 ` Thomas Huth
2024-06-05 1:06 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 23/31] common/sieve: Use vmalloc.h for setup_mmu definition Nicholas Piggin
2024-06-04 7:53 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 24/31] common/sieve: Support machines without MMU Nicholas Piggin
2024-06-04 9:30 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 25/31] powerpc: Add sieve.c common test Nicholas Piggin
2024-06-04 9:30 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 26/31] powerpc: add usermode support Nicholas Piggin
2024-06-04 10:26 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 27/31] powerpc: add pmu tests Nicholas Piggin
2024-06-04 10:38 ` Thomas Huth
2024-06-05 1:12 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 28/31] configure: Make arch_libdir a first-class entity Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 29/31] powerpc: Remove remnants of ppc64 directory and build structure Nicholas Piggin
2024-06-04 10:49 ` Thomas Huth
2024-06-04 13:36 ` Andrew Jones
2024-06-05 7:52 ` Nicholas Piggin
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 30/31] powerpc: Add facility to query TCG or KVM host Nicholas Piggin
2024-06-04 10:53 ` Thomas Huth
2024-05-04 12:28 ` [kvm-unit-tests PATCH v9 31/31] powerpc: gitlab CI update Nicholas Piggin
2024-06-04 11:01 ` Thomas Huth
2024-06-05 1:16 ` Nicholas Piggin
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=014763b7-93d9-4725-acc0-b5436a5ea91a@redhat.com \
--to=thuth@redhat.com \
--cc=andrew.jones@linux.dev \
--cc=kvm@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=lvivier@redhat.com \
--cc=npiggin@gmail.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).