xref: /kvm-unit-tests/arm/timer.c (revision a41100276a89128703db61361f6be878c6473005)
1 /*
2  * Timer tests for the ARM virt machine.
3  *
4  * Copyright (C) 2017, Alexander Graf <agraf@suse.de>
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2.
7  */
8 #include <libcflat.h>
9 #include <devicetree.h>
10 #include <errata.h>
11 #include <asm/timer.h>
12 #include <asm/delay.h>
13 #include <asm/processor.h>
14 #include <asm/gic.h>
15 #include <asm/io.h>
16 
17 static void *gic_isenabler;
18 static void *gic_icenabler;
19 
20 static bool ptimer_unsupported;
21 
22 static void ptimer_unsupported_handler(struct pt_regs *regs, unsigned int esr)
23 {
24 	ptimer_unsupported = true;
25 	regs->pc += 4;
26 }
27 
28 static u64 read_vtimer_counter(void)
29 {
30 	isb();
31 	return read_sysreg(cntvct_el0);
32 }
33 
34 static u64 read_vtimer_cval(void)
35 {
36 	return read_sysreg(cntv_cval_el0);
37 }
38 
39 static void write_vtimer_cval(u64 val)
40 {
41 	write_sysreg(val, cntv_cval_el0);
42 	isb();
43 }
44 
45 static s32 read_vtimer_tval(void)
46 {
47 	return read_sysreg(cntv_tval_el0);
48 }
49 
50 static void write_vtimer_tval(s32 val)
51 {
52 	write_sysreg(val, cntv_tval_el0);
53 	isb();
54 }
55 
56 static u64 read_vtimer_ctl(void)
57 {
58 	return read_sysreg(cntv_ctl_el0);
59 }
60 
61 static void write_vtimer_ctl(u64 val)
62 {
63 	write_sysreg(val, cntv_ctl_el0);
64 	isb();
65 }
66 
67 static u64 read_ptimer_counter(void)
68 {
69 	isb();
70 	return read_sysreg(cntpct_el0);
71 }
72 
73 static u64 read_ptimer_cval(void)
74 {
75 	return read_sysreg(cntp_cval_el0);
76 }
77 
78 static void write_ptimer_cval(u64 val)
79 {
80 	write_sysreg(val, cntp_cval_el0);
81 	isb();
82 }
83 
84 static s32 read_ptimer_tval(void)
85 {
86 	return read_sysreg(cntp_tval_el0);
87 }
88 
89 static void write_ptimer_tval(s32 val)
90 {
91 	write_sysreg(val, cntp_tval_el0);
92 	isb();
93 }
94 
95 static u64 read_ptimer_ctl(void)
96 {
97 	return read_sysreg(cntp_ctl_el0);
98 }
99 
100 static void write_ptimer_ctl(u64 val)
101 {
102 	write_sysreg(val, cntp_ctl_el0);
103 	isb();
104 }
105 
106 struct timer_info {
107 	u32 irq;
108 	volatile bool irq_received;
109 	u64 (*read_counter)(void);
110 	u64 (*read_cval)(void);
111 	void (*write_cval)(u64);
112 	s32 (*read_tval)(void);
113 	void (*write_tval)(s32);
114 	u64 (*read_ctl)(void);
115 	void (*write_ctl)(u64);
116 };
117 
118 static struct timer_info vtimer_info = {
119 	.irq_received = false,
120 	.read_counter = read_vtimer_counter,
121 	.read_cval = read_vtimer_cval,
122 	.write_cval = write_vtimer_cval,
123 	.read_tval = read_vtimer_tval,
124 	.write_tval = write_vtimer_tval,
125 	.read_ctl = read_vtimer_ctl,
126 	.write_ctl = write_vtimer_ctl,
127 };
128 
129 static struct timer_info ptimer_info = {
130 	.irq_received = false,
131 	.read_counter = read_ptimer_counter,
132 	.read_cval = read_ptimer_cval,
133 	.write_cval = write_ptimer_cval,
134 	.read_tval = read_ptimer_tval,
135 	.write_tval = write_ptimer_tval,
136 	.read_ctl = read_ptimer_ctl,
137 	.write_ctl = write_ptimer_ctl,
138 };
139 
140 static void set_timer_irq_enabled(struct timer_info *info, bool enabled)
141 {
142 	u32 val = 1 << PPI(info->irq);
143 
144 	if (enabled)
145 		writel(val, gic_isenabler);
146 	else
147 		writel(val, gic_icenabler);
148 }
149 
150 static void irq_handler(struct pt_regs *regs)
151 {
152 	struct timer_info *info;
153 	u32 irqstat = gic_read_iar();
154 	u32 irqnr = gic_iar_irqnr(irqstat);
155 
156 	if (irqnr == PPI(vtimer_info.irq)) {
157 		info = &vtimer_info;
158 	} else if (irqnr == PPI(ptimer_info.irq)) {
159 		info = &ptimer_info;
160 	} else {
161 		if (irqnr != GICC_INT_SPURIOUS)
162 			gic_write_eoir(irqstat);
163 		report_info("Unexpected interrupt: %d\n", irqnr);
164 		return;
165 	}
166 
167 	info->write_ctl(ARCH_TIMER_CTL_IMASK | ARCH_TIMER_CTL_ENABLE);
168 	gic_write_eoir(irqstat);
169 
170 	info->irq_received = true;
171 }
172 
173 /* Check that the timer condition is met. */
174 static bool timer_pending(struct timer_info *info)
175 {
176 	return (info->read_ctl() & ARCH_TIMER_CTL_ENABLE) &&
177 		(info->read_ctl() & ARCH_TIMER_CTL_ISTATUS);
178 }
179 
180 static bool gic_timer_check_state(struct timer_info *info,
181 				  enum gic_irq_state expected_state)
182 {
183 	int i;
184 
185 	/* Wait for up to 1s for the GIC to sample the interrupt. */
186 	for (i = 0; i < 10; i++) {
187 		mdelay(100);
188 		if (gic_irq_state(PPI(info->irq)) == expected_state) {
189 			mdelay(100);
190 			if (gic_irq_state(PPI(info->irq)) == expected_state)
191 				return true;
192 		}
193 	}
194 
195 	return false;
196 }
197 
198 static bool test_cval_10msec(struct timer_info *info)
199 {
200 	u64 time_10ms = read_sysreg(cntfrq_el0) / 100;
201 	u64 time_1us = time_10ms / 10000;
202 	u64 before_timer, after_timer;
203 	s64 difference;
204 
205 	/* Program timer to fire in 10 ms */
206 	before_timer = info->read_counter();
207 	info->write_cval(before_timer + time_10ms);
208 	info->write_ctl(ARCH_TIMER_CTL_ENABLE);
209 
210 	/* Wait for the timer to fire */
211 	while (!timer_pending(info))
212 		;
213 
214 	/* It fired, check how long it took */
215 	after_timer = info->read_counter();
216 	difference = after_timer - (before_timer + time_10ms);
217 
218 	report_info("After timer: 0x%016lx", after_timer);
219 	report_info("Expected   : 0x%016lx", before_timer + time_10ms);
220 	report_info("Difference : %ld us", difference / time_1us);
221 
222 	if (difference < 0) {
223 		printf("ISTATUS set too early\n");
224 		return false;
225 	}
226 	return difference < time_10ms;
227 }
228 
229 static void test_timer(struct timer_info *info)
230 {
231 	u64 now = info->read_counter();
232 	u64 time_10s = read_sysreg(cntfrq_el0) * 10;
233 	u64 later = now + time_10s;
234 	s32 left;
235 
236 	/* We don't want the irq handler to fire because that will change the
237 	 * timer state and we want to test the timer output signal.  We can
238 	 * still read the pending state even if it's disabled. */
239 	set_timer_irq_enabled(info, false);
240 
241 	/* Enable the timer, but schedule it for much later */
242 	info->write_cval(later);
243 	info->write_ctl(ARCH_TIMER_CTL_ENABLE);
244 	report(!timer_pending(info) && gic_timer_check_state(info, GIC_IRQ_STATE_INACTIVE),
245 			"not pending before");
246 
247 	info->write_cval(now - 1);
248 	report(timer_pending(info) && gic_timer_check_state(info, GIC_IRQ_STATE_PENDING),
249 			"interrupt signal pending");
250 
251 	/* Disable the timer again and prepare to take interrupts */
252 	info->write_ctl(0);
253 	info->irq_received = false;
254 	set_timer_irq_enabled(info, true);
255 	report(!info->irq_received, "no interrupt when timer is disabled");
256 	report(!timer_pending(info) && gic_timer_check_state(info, GIC_IRQ_STATE_INACTIVE),
257 			"interrupt signal no longer pending");
258 
259 	info->write_cval(now - 1);
260 	info->write_ctl(ARCH_TIMER_CTL_ENABLE | ARCH_TIMER_CTL_IMASK);
261 	report(timer_pending(info) && gic_timer_check_state(info, GIC_IRQ_STATE_INACTIVE),
262 			"interrupt signal not pending");
263 
264 	report(test_cval_10msec(info), "latency within 10 ms");
265 	report(info->irq_received, "interrupt received");
266 
267 	/* Disable the timer again */
268 	info->write_ctl(0);
269 
270 	/* Test TVAL and IRQ trigger */
271 	info->irq_received = false;
272 	info->write_tval(read_sysreg(cntfrq_el0) / 100);	/* 10 ms */
273 	local_irq_disable();
274 	info->write_ctl(ARCH_TIMER_CTL_ENABLE);
275 	report_info("waiting for interrupt...");
276 	wfi();
277 	local_irq_enable();
278 	left = info->read_tval();
279 	report(info->irq_received, "interrupt received after TVAL/WFI");
280 	report(left < 0, "timer has expired");
281 	report_info("TVAL is %d ticks", left);
282 }
283 
284 static void test_vtimer(void)
285 {
286 	report_prefix_push("vtimer-busy-loop");
287 	test_timer(&vtimer_info);
288 	report_prefix_pop();
289 }
290 
291 static void test_ptimer(void)
292 {
293 	if (ptimer_unsupported)
294 		return;
295 
296 	report_prefix_push("ptimer-busy-loop");
297 	test_timer(&ptimer_info);
298 	report_prefix_pop();
299 }
300 
301 static void test_init(void)
302 {
303 	assert(TIMER_PTIMER_IRQ != -1 && TIMER_VTIMER_IRQ != -1);
304 	ptimer_info.irq = TIMER_PTIMER_IRQ;
305 	vtimer_info.irq = TIMER_VTIMER_IRQ;
306 
307 	install_exception_handler(EL1H_SYNC, ESR_EL1_EC_UNKNOWN, ptimer_unsupported_handler);
308 	ptimer_info.read_ctl();
309 	install_exception_handler(EL1H_SYNC, ESR_EL1_EC_UNKNOWN, NULL);
310 
311 	if (ptimer_unsupported && !ERRATA(7b6b46311a85)) {
312 		report_skip("Skipping ptimer tests. Set ERRATA_7b6b46311a85=y to enable.");
313 	} else if (ptimer_unsupported) {
314 		report(false, "ptimer: read CNTP_CTL_EL0");
315 		report_info("ptimer: skipping remaining tests");
316 	}
317 
318 	gic_enable_defaults();
319 
320 	switch (gic_version()) {
321 	case 2:
322 		gic_isenabler = gicv2_dist_base() + GICD_ISENABLER;
323 		gic_icenabler = gicv2_dist_base() + GICD_ICENABLER;
324 		break;
325 	case 3:
326 		gic_isenabler = gicv3_sgi_base() + GICR_ISENABLER0;
327 		gic_icenabler = gicv3_sgi_base() + GICR_ICENABLER0;
328 		break;
329 	}
330 
331 	install_irq_handler(EL1H_IRQ, irq_handler);
332 	local_irq_enable();
333 }
334 
335 static void print_timer_info(void)
336 {
337 	printf("CNTFRQ_EL0   : 0x%016lx\n", read_sysreg(cntfrq_el0));
338 
339 	if (!ptimer_unsupported) {
340 		printf("CNTPCT_EL0   : 0x%016lx\n", ptimer_info.read_counter());
341 		printf("CNTP_CTL_EL0 : 0x%016lx\n", ptimer_info.read_ctl());
342 		printf("CNTP_CVAL_EL0: 0x%016lx\n", ptimer_info.read_cval());
343 	}
344 
345 	printf("CNTVCT_EL0   : 0x%016lx\n", vtimer_info.read_counter());
346 	printf("CNTV_CTL_EL0 : 0x%016lx\n", vtimer_info.read_ctl());
347 	printf("CNTV_CVAL_EL0: 0x%016lx\n", vtimer_info.read_cval());
348 }
349 
350 int main(int argc, char **argv)
351 {
352 	int i;
353 
354 	test_init();
355 
356 	print_timer_info();
357 
358 	if (argc == 1) {
359 		test_vtimer();
360 		test_ptimer();
361 	}
362 
363 	for (i = 1; i < argc; ++i) {
364 		if (strcmp(argv[i], "vtimer") == 0)
365 			test_vtimer();
366 		if (strcmp(argv[i], "ptimer") == 0)
367 			test_ptimer();
368 	}
369 
370 	return report_summary();
371 }
372