Home | History | Annotate | Line # | Download | only in acpi
acpi_timer.c revision 1.17
      1  1.17    jruoho /* $NetBSD: acpi_timer.c,v 1.17 2010/07/10 13:08:09 jruoho Exp $ */
      2  1.16    jruoho 
      3  1.16    jruoho /*-
      4  1.16    jruoho  * Copyright (c) 2006 Matthias Drochner <drochner (at) NetBSD.org>
      5  1.16    jruoho  * All rights reserved.
      6  1.16    jruoho  *
      7  1.16    jruoho  * Redistribution and use in source and binary forms, with or without
      8  1.16    jruoho  * modification, are permitted provided that the following conditions
      9  1.16    jruoho  * are met:
     10  1.16    jruoho  * 1. Redistributions of source code must retain the above copyright
     11  1.16    jruoho  *    notice, this list of conditions and the following disclaimer.
     12  1.16    jruoho  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.16    jruoho  *    notice, this list of conditions and the following disclaimer in the
     14  1.16    jruoho  *    documentation and/or other materials provided with the distribution.
     15  1.16    jruoho  *
     16  1.16    jruoho  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  1.16    jruoho  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  1.16    jruoho  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  1.16    jruoho  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  1.16    jruoho  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  1.16    jruoho  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  1.16    jruoho  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  1.16    jruoho  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  1.16    jruoho  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  1.16    jruoho  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  1.16    jruoho  * POSSIBILITY OF SUCH DAMAGE.
     27  1.16    jruoho  */
     28   1.4   xtraeme 
     29   1.4   xtraeme #include <sys/cdefs.h>
     30  1.17    jruoho __KERNEL_RCSID(0, "$NetBSD: acpi_timer.c,v 1.17 2010/07/10 13:08:09 jruoho Exp $");
     31   1.1  drochner 
     32   1.1  drochner #include <sys/types.h>
     33   1.1  drochner #include <sys/systm.h>
     34   1.1  drochner #include <sys/time.h>
     35   1.1  drochner #include <sys/timetc.h>
     36  1.15    jruoho 
     37  1.15    jruoho #include <dev/acpi/acpivar.h>
     38  1.10     joerg #include <dev/acpi/acpi_timer.h>
     39  1.15    jruoho 
     40  1.12  jmcneill #include <machine/acpi_machdep.h>
     41   1.1  drochner 
     42  1.17    jruoho static int	acpitimer_test(void);
     43  1.17    jruoho static uint32_t	acpitimer_delta(uint32_t, uint32_t);
     44   1.1  drochner 
     45   1.1  drochner static struct timecounter acpi_timecounter = {
     46   1.2  drochner 	acpitimer_read_safe,
     47   1.1  drochner 	0,
     48   1.1  drochner 	0x00ffffff,
     49   1.1  drochner 	PM_TIMER_FREQUENCY,
     50   1.2  drochner 	"ACPI-Safe",
     51   1.6  christos 	900,
     52   1.6  christos 	NULL,
     53   1.6  christos 	NULL,
     54   1.1  drochner };
     55   1.1  drochner 
     56   1.1  drochner int
     57  1.17    jruoho acpitimer_init(struct acpi_softc *sc)
     58   1.1  drochner {
     59  1.17    jruoho 	ACPI_STATUS res;
     60   1.1  drochner 	uint32_t bits;
     61   1.2  drochner 	int i, j;
     62   1.1  drochner 
     63   1.1  drochner 	res = AcpiGetTimerResolution(&bits);
     64  1.17    jruoho 
     65   1.1  drochner 	if (res != AE_OK)
     66   1.1  drochner 		return (-1);
     67   1.1  drochner 
     68   1.1  drochner 	if (bits == 32)
     69   1.1  drochner 		acpi_timecounter.tc_counter_mask = 0xffffffff;
     70   1.2  drochner 
     71  1.17    jruoho 	for (i = j = 0; i < 10; i++)
     72   1.2  drochner 		j += acpitimer_test();
     73   1.3   xtraeme 
     74   1.2  drochner 	if (j >= 10) {
     75   1.2  drochner 		acpi_timecounter.tc_name = "ACPI-Fast";
     76   1.2  drochner 		acpi_timecounter.tc_get_timecount = acpitimer_read_fast;
     77   1.2  drochner 		acpi_timecounter.tc_quality = 1000;
     78   1.2  drochner 	}
     79  1.17    jruoho 
     80   1.1  drochner 	tc_init(&acpi_timecounter);
     81   1.1  drochner 
     82  1.17    jruoho 	aprint_debug_dev(sc->sc_dev,
     83  1.17    jruoho 	    "%s %d-bit timer\n", acpi_timecounter.tc_name, bits);
     84  1.17    jruoho 
     85  1.17    jruoho 	return 0;
     86   1.2  drochner }
     87   1.1  drochner 
     88  1.14    dyoung int
     89  1.14    dyoung acpitimer_detach(void)
     90  1.14    dyoung {
     91  1.17    jruoho 
     92  1.14    dyoung 	return tc_detach(&acpi_timecounter);
     93  1.14    dyoung }
     94  1.14    dyoung 
     95  1.17    jruoho u_int
     96   1.8  christos acpitimer_read_fast(struct timecounter *tc)
     97   1.2  drochner {
     98   1.2  drochner 	uint32_t t;
     99   1.2  drochner 
    100  1.17    jruoho 	(void)AcpiGetTimer(&t);
    101  1.17    jruoho 
    102  1.17    jruoho 	return t;
    103   1.1  drochner }
    104   1.1  drochner 
    105   1.1  drochner /*
    106   1.1  drochner  * Some chipsets (PIIX4 variants) do not latch correctly; there
    107   1.1  drochner  * is a chance that a transition is hit.
    108   1.1  drochner  */
    109  1.17    jruoho u_int
    110   1.8  christos acpitimer_read_safe(struct timecounter *tc)
    111   1.1  drochner {
    112   1.1  drochner 	uint32_t t1, t2, t3;
    113   1.1  drochner 
    114  1.17    jruoho 	(void)AcpiGetTimer(&t2);
    115  1.17    jruoho 	(void)AcpiGetTimer(&t3);
    116  1.17    jruoho 
    117   1.1  drochner 	do {
    118   1.1  drochner 		t1 = t2;
    119   1.1  drochner 		t2 = t3;
    120  1.17    jruoho 
    121  1.17    jruoho 		(void)AcpiGetTimer(&t3);
    122  1.17    jruoho 
    123   1.1  drochner 	} while ((t1 > t2) || (t2 > t3));
    124  1.17    jruoho 
    125  1.17    jruoho 	return t2;
    126   1.1  drochner }
    127   1.1  drochner 
    128   1.2  drochner static uint32_t
    129   1.2  drochner acpitimer_delta(uint32_t end, uint32_t start)
    130   1.2  drochner {
    131  1.17    jruoho 	const u_int mask = acpi_timecounter.tc_counter_mask;
    132   1.2  drochner 	uint32_t delta;
    133   1.2  drochner 
    134   1.2  drochner 	if (end >= start)
    135   1.2  drochner 		delta = end - start;
    136   1.2  drochner 	else
    137   1.2  drochner 		delta = ((mask - start) + end + 1) & mask;
    138   1.2  drochner 
    139  1.17    jruoho 	return delta;
    140   1.2  drochner }
    141   1.2  drochner 
    142   1.2  drochner #define N 2000
    143  1.17    jruoho 
    144   1.2  drochner static int
    145  1.13    cegger acpitimer_test(void)
    146   1.2  drochner {
    147   1.2  drochner 	uint32_t last, this, delta;
    148   1.2  drochner 	int minl, maxl, n;
    149   1.2  drochner 
    150   1.2  drochner 	minl = 10000000;
    151   1.2  drochner 	maxl = 0;
    152   1.2  drochner 
    153  1.12  jmcneill 	acpi_md_OsDisableInterrupt();
    154  1.17    jruoho 
    155  1.17    jruoho 	(void)AcpiGetTimer(&last);
    156  1.17    jruoho 
    157   1.2  drochner 	for (n = 0; n < N; n++) {
    158  1.17    jruoho 
    159  1.17    jruoho 		(void)AcpiGetTimer(&this);
    160  1.17    jruoho 
    161   1.2  drochner 		delta = acpitimer_delta(this, last);
    162  1.17    jruoho 
    163   1.2  drochner 		if (delta > maxl)
    164   1.2  drochner 			maxl = delta;
    165   1.2  drochner 		else if (delta < minl)
    166   1.2  drochner 			minl = delta;
    167  1.17    jruoho 
    168   1.2  drochner 		last = this;
    169   1.2  drochner 	}
    170  1.17    jruoho 
    171  1.12  jmcneill 	acpi_md_OsEnableInterrupt();
    172   1.2  drochner 
    173   1.2  drochner 	if (maxl - minl > 2 )
    174   1.2  drochner 		n = 0;
    175   1.2  drochner 	else if (minl < 0 || maxl == 0)
    176   1.2  drochner 		n = 0;
    177   1.2  drochner 	else
    178   1.2  drochner 		n = 1;
    179   1.2  drochner 
    180  1.17    jruoho 	return n;
    181   1.2  drochner }
    182