From: cov@codeaurora.org
To: Andrew Jones <drjones@redhat.com>
Cc: Wei Huang <wei@redhat.com>,
alindsay@codeaurora.org, kvm@vger.kernel.org,
croberts@codeaurora.org, qemu-devel@nongnu.org,
alistair.francis@xilinx.com, shannon.zhao@linaro.org,
kvmarm@lists.cs.columbia.edu
Subject: Re: [Qemu-devel] [kvm-unit-tests PATCHv7 2/3] arm: pmu: Check cycle count increases
Date: Thu, 03 Nov 2016 08:25:05 -0600 [thread overview]
Message-ID: <17b56cf125cf91f0effe8aacbc8df4d1@codeaurora.org> (raw)
In-Reply-To: <20161103103507.qg65rruprmm6drzk@kamzik.brq.redhat.com>
On 2016-11-03 04:35, Andrew Jones wrote:
>> +/*
>> + * Ensure that the cycle counter progresses between back-to-back
>> reads.
>> + */
>> +static bool check_cycles_increase(void)
>> +{
>> + struct pmu_data pmu = {{0}};
>> +
>> + enable_counter(ARMV8_PMU_CYCLE_IDX);
>> + set_pmccfiltr(0); /* count cycles in EL0, EL1, but not EL2 */
>> +
>> + pmu.enable = 1;
>> + set_pmcr(pmu.pmcr_el0);
>> +
>> + for (int i = 0; i < NR_SAMPLES; i++) {
>> + unsigned long a, b;
>> +
>> + a = get_pmccntr();
>> + b = get_pmccntr();
>> +
>> + if (a >= b) {
>> + printf("Read %ld then %ld.\n", a, b);
>> + return false;
>> + }
>> + }
>> +
>> + pmu.enable = 0;
>> + set_pmcr(pmu.pmcr_el0);
>> +
>> + return true;
>> +}
>> +
>> int main(void)
>> {
>> report_prefix_push("pmu");
>>
>> report("Control register", check_pmcr());
>> + report("Monotonically increasing cycle count",
>> check_cycles_increase());
>>
>> return report_summary();
>> }
>
> What happens with this test running on tcg? Do we just fail? Does it
> explode? Is there a register we can probe and when it indicates things
> won't work we can invoke a report_skip?
A monotonically increasing value (but not any attempt at approximating
actual cycle
values) in cycle counter is pretty much the only piece of the PMU it's
had implemented
for the past while. We'll have to check whether TCG can handle the
filter and enable set
registers, but if it doesn't yet, that's something we can improve :).
Thanks,
Cov
next prev parent reply other threads:[~2016-11-03 14:25 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-02 22:22 [Qemu-devel] [kvm-unit-tests PATCHv7 0/3] ARM PMU tests Wei Huang
2016-11-02 22:22 ` [Qemu-devel] [kvm-unit-tests PATCHv7 1/3] arm: Add PMU test Wei Huang
2016-11-03 10:14 ` Andrew Jones
2016-11-03 14:29 ` cov
2016-11-03 15:04 ` Andrew Jones
2016-11-03 15:31 ` cov
2016-11-02 22:22 ` [Qemu-devel] [kvm-unit-tests PATCHv7 2/3] arm: pmu: Check cycle count increases Wei Huang
2016-11-03 4:51 ` cov
2016-11-03 10:35 ` Andrew Jones
2016-11-03 14:25 ` cov [this message]
2016-11-02 22:22 ` [Qemu-devel] [kvm-unit-tests PATCHv7 3/3] arm: pmu: Add CPI checking Wei Huang
2016-11-03 10:58 ` Andrew Jones
2016-11-03 11:01 ` [Qemu-devel] [kvm-unit-tests PATCHv7 0/3] ARM PMU tests Andrew Jones
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=17b56cf125cf91f0effe8aacbc8df4d1@codeaurora.org \
--to=cov@codeaurora.org \
--cc=alindsay@codeaurora.org \
--cc=alistair.francis@xilinx.com \
--cc=croberts@codeaurora.org \
--cc=drjones@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=qemu-devel@nongnu.org \
--cc=shannon.zhao@linaro.org \
--cc=wei@redhat.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).