Fri Jul 24 05:19:14 2015 UTC ()
- fix sc_ev_missing_ticks over-counting.
- don't use 64bit division, because it has expensive cost on gcc/arm
  whether it is a constant or not.

'delta' is usually taken a value around sc_autoinc depending on timing
of read. therefore 'delta / sc->sc_autoinc' would be count too much.


(ryo)
diff -r1.12 -r1.13 src/sys/arch/arm/cortex/a9tmr.c

cvs diff -r1.12 -r1.13 src/sys/arch/arm/cortex/a9tmr.c (expand / switch to unified diff)

--- src/sys/arch/arm/cortex/a9tmr.c 2015/03/04 23:18:21 1.12
+++ src/sys/arch/arm/cortex/a9tmr.c 2015/07/24 05:19:13 1.13
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: a9tmr.c,v 1.12 2015/03/04 23:18:21 jmcneill Exp $ */ 1/* $NetBSD: a9tmr.c,v 1.13 2015/07/24 05:19:13 ryo Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2012 The NetBSD Foundation, Inc. 4 * Copyright (c) 2012 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Matt Thomas 8 * by Matt Thomas
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -20,27 +20,27 @@ @@ -20,27 +20,27 @@
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33__KERNEL_RCSID(0, "$NetBSD: a9tmr.c,v 1.12 2015/03/04 23:18:21 jmcneill Exp $"); 33__KERNEL_RCSID(0, "$NetBSD: a9tmr.c,v 1.13 2015/07/24 05:19:13 ryo Exp $");
34 34
35#include <sys/param.h> 35#include <sys/param.h>
36#include <sys/bus.h> 36#include <sys/bus.h>
37#include <sys/device.h> 37#include <sys/device.h>
38#include <sys/intr.h> 38#include <sys/intr.h>
39#include <sys/kernel.h> 39#include <sys/kernel.h>
40#include <sys/proc.h> 40#include <sys/proc.h>
41#include <sys/systm.h> 41#include <sys/systm.h>
42#include <sys/timetc.h> 42#include <sys/timetc.h>
43#include <sys/xcall.h> 43#include <sys/xcall.h>
44 44
45#include <prop/proplib.h> 45#include <prop/proplib.h>
46 46
@@ -319,48 +319,50 @@ clockhandler(void *arg) @@ -319,48 +319,50 @@ clockhandler(void *arg)
319 struct clockframe * const cf = arg; 319 struct clockframe * const cf = arg;
320 struct a9tmr_softc * const sc = &a9tmr_sc; 320 struct a9tmr_softc * const sc = &a9tmr_sc;
321 struct cpu_info * const ci = curcpu(); 321 struct cpu_info * const ci = curcpu();
322  322
323 const uint64_t now = a9tmr_gettime(sc); 323 const uint64_t now = a9tmr_gettime(sc);
324 uint64_t delta = now - ci->ci_lastintr; 324 uint64_t delta = now - ci->ci_lastintr;
325 325
326 a9tmr_global_write(sc, TMR_GBL_INT, 1); // Ack the interrupt 326 a9tmr_global_write(sc, TMR_GBL_INT, 1); // Ack the interrupt
327 327
328#if 0 328#if 0
329 printf("%s(%p): %s: now %#"PRIx64" delta %"PRIu64"\n",  329 printf("%s(%p): %s: now %#"PRIx64" delta %"PRIu64"\n",
330 __func__, cf, ci->ci_data.cpu_name, now, delta); 330 __func__, cf, ci->ci_data.cpu_name, now, delta);
331#endif 331#endif
332 KASSERTMSG(delta > sc->sc_autoinc / 100, 332 KASSERTMSG(delta > sc->sc_autoinc / 64,
333 "%s: interrupting too quickly (delta=%"PRIu64")", 333 "%s: interrupting too quickly (delta=%"PRIu64")",
334 ci->ci_data.cpu_name, delta); 334 ci->ci_data.cpu_name, delta);
335 335
336 ci->ci_lastintr = now; 336 ci->ci_lastintr = now;
337 337
338 hardclock(cf); 338 hardclock(cf);
339 339
 340 if (delta > sc->sc_autoinc) {
 341 u_int ticks = hz;
 342 for (delta -= sc->sc_autoinc;
 343 delta >= sc->sc_autoinc && ticks > 0;
 344 delta -= sc->sc_autoinc, ticks--) {
340#if 0 345#if 0
341 /* 346 /*
342 * Try to make up up to a seconds amount of missed clock interrupts 347 * Try to make up up to a seconds amount of
343 */ 348 * missed clock interrupts
344 u_int ticks = hz; 349 */
345 for (delta -= sc->sc_autoinc; 350 hardclock(cf);
346 ticks > 0 && delta >= sc->sc_autoinc; 
347 delta -= sc->sc_autoinc, ticks--) { 
348 hardclock(cf); 
349 } 
350#else 351#else
351 if (delta > sc->sc_autoinc) 352 sc->sc_ev_missing_ticks.ev_count++;
352 sc->sc_ev_missing_ticks.ev_count += delta / sc->sc_autoinc; 
353#endif 353#endif
 354 }
 355 }
354 356
355 return 1; 357 return 1;
356} 358}
357 359
358void 360void
359setstatclockrate(int newhz) 361setstatclockrate(int newhz)
360{ 362{
361} 363}
362 364
363static u_int 365static u_int
364a9tmr_get_timecount(struct timecounter *tc) 366a9tmr_get_timecount(struct timecounter *tc)
365{ 367{
366 struct a9tmr_softc * const sc = tc->tc_priv; 368 struct a9tmr_softc * const sc = tc->tc_priv;