The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/i386/tsc.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1998-2003 Poul-Henning Kamp
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   24  * SUCH DAMAGE.
   25  *
   26  * $FreeBSD: releng/5.1/sys/i386/i386/tsc.c 113348 2003-04-10 23:07:24Z des $
   27  */
   28 
   29 #include "opt_clock.h"
   30 
   31 #include <sys/param.h>
   32 #include <sys/systm.h>
   33 #include <sys/sysctl.h>
   34 #include <sys/time.h>
   35 #include <sys/timetc.h>
   36 #include <sys/kernel.h>
   37 #include <sys/power.h>
   38 #include <sys/smp.h>
   39 #include <machine/clock.h>
   40 #include <machine/md_var.h>
   41 #include <machine/specialreg.h>
   42 
   43 uint64_t        tsc_freq;
   44 int             tsc_is_broken;
   45 u_int           tsc_present;
   46 
   47 #ifdef SMP
   48 static int      smp_tsc;
   49 SYSCTL_INT(_kern_timecounter, OID_AUTO, smp_tsc, CTLFLAG_RD, &smp_tsc, 0,
   50     "Indicates whether the TSC is safe to use in SMP mode");
   51 TUNABLE_INT("kern.timecounter.smp_tsc", &smp_tsc);
   52 #endif
   53 
   54 static  unsigned tsc_get_timecount(struct timecounter *tc);
   55 
   56 static struct timecounter tsc_timecounter = {
   57         tsc_get_timecount,      /* get_timecount */
   58         0,                      /* no poll_pps */
   59         ~0u,                    /* counter_mask */
   60         0,                      /* frequency */
   61          "TSC"                  /* name */
   62 };
   63 
   64 void
   65 init_TSC(void)
   66 {
   67         u_int64_t tscval[2];
   68 
   69         if (cpu_feature & CPUID_TSC)
   70                 tsc_present = 1;
   71         else
   72                 tsc_present = 0;
   73 
   74         if (!tsc_present) 
   75                 return;
   76 
   77         if (bootverbose)
   78                 printf("Calibrating TSC clock ... ");
   79 
   80         tscval[0] = rdtsc();
   81         DELAY(1000000);
   82         tscval[1] = rdtsc();
   83 
   84         tsc_freq = tscval[1] - tscval[0];
   85         if (bootverbose)
   86                 printf("TSC clock: %ju Hz\n", (intmax_t)tsc_freq);
   87 
   88 #ifdef SMP
   89         /*
   90          * We can not use the TSC in SMP mode unless the TSCs on all CPUs
   91          * are somehow synchronized.  Some hardware configurations do
   92          * this, but we have no way of determining whether this is the
   93          * case, so we do not use the TSC in multi-processor systems
   94          * unless the user indicated (by setting kern.timecounter.smp_tsc
   95          * to 1) that he believes that his TSCs are synchronized.
   96          */
   97         if (mp_ncpus > 1 && !smp_tsc)
   98                 return;
   99 #endif
  100 
  101         /*
  102          * We can not use the TSC if we support APM. Precise timekeeping
  103          * on an APM'ed machine is at best a fools pursuit, since 
  104          * any and all of the time spent in various SMM code can't 
  105          * be reliably accounted for.  Reading the RTC is your only
  106          * source of reliable time info.  The i8254 looses too of course
  107          * but we need to have some kind of time...
  108          * We don't know at this point whether APM is going to be used
  109          * or not, nor when it might be activated.  Play it safe.
  110          */
  111         if (power_pm_get_type() == POWER_PM_TYPE_APM) {
  112                 if (bootverbose)
  113                         printf("TSC timecounter disabled: APM enabled.\n");
  114                 return;
  115         }
  116 
  117         if (tsc_present && tsc_freq != 0 && !tsc_is_broken) {
  118                 tsc_timecounter.tc_frequency = tsc_freq;
  119                 tc_init(&tsc_timecounter);
  120         }
  121 
  122         return;
  123 }
  124 
  125 static int
  126 sysctl_machdep_tsc_freq(SYSCTL_HANDLER_ARGS)
  127 {
  128         int error;
  129         uint64_t freq;
  130 
  131         if (tsc_timecounter.tc_frequency == 0)
  132                 return (EOPNOTSUPP);
  133         freq = tsc_freq;
  134         error = sysctl_handle_int(oidp, &freq, sizeof(freq), req);
  135         if (error == 0 && req->newptr != NULL) {
  136                 tsc_freq = freq;
  137                 tsc_timecounter.tc_frequency = tsc_freq;
  138         }
  139         return (error);
  140 }
  141 
  142 SYSCTL_PROC(_machdep, OID_AUTO, tsc_freq, CTLTYPE_QUAD | CTLFLAG_RW,
  143     0, sizeof(u_int), sysctl_machdep_tsc_freq, "IU", "");
  144 
  145 static unsigned
  146 tsc_get_timecount(struct timecounter *tc)
  147 {
  148         return (rdtsc());
  149 }

Cache object: 25f0f560137e024ffdfdbd462cb89955


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.