Home | History | Annotate | Line # | Download | only in alchemy
au_timer.c revision 1.4
      1 /* $NetBSD: au_timer.c,v 1.4 2005/11/25 13:55:14 simonb Exp $ */
      2 
      3 /*
      4  * Copyright 2002 Wasabi Systems, Inc.
      5  * All rights reserved.
      6  *
      7  * Written by Simon Burge for Wasabi Systems, Inc.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *      This product includes software developed for the NetBSD Project by
     20  *      Wasabi Systems, Inc.
     21  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  *    or promote products derived from this software without specific prior
     23  *    written permission.
     24  *
     25  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  * POSSIBILITY OF SUCH DAMAGE.
     36  */
     37 
     38 #include <sys/cdefs.h>
     39 __KERNEL_RCSID(0, "$NetBSD: au_timer.c,v 1.4 2005/11/25 13:55:14 simonb Exp $");
     40 
     41 #include <sys/param.h>
     42 #include <sys/kernel.h>
     43 #include <sys/systm.h>
     44 
     45 #include <machine/bus.h>
     46 #include <mips/locore.h>
     47 
     48 #include <evbmips/evbmips/clockvar.h>
     49 #include <mips/alchemy/include/aureg.h>
     50 #include <mips/alchemy/include/auvar.h>
     51 
     52 /*
     53  * Set a programmable clock register.
     54  * If "wait" is non-zero, wait for that bit to become 0 in the
     55  * counter control register before and after writing to the
     56  * specified clock register.
     57  */
     58 #define	SET_PC_REG(reg, wait, val)					\
     59 do {									\
     60 	if (wait)							\
     61 		while (bus_space_read_4(st, sh, PC_COUNTER_CONTROL)	\
     62 		    & (wait))						\
     63 			/* nothing */;					\
     64 	bus_space_write_4(st, sh, (reg), (val));			\
     65 	if (wait)							\
     66 		while (bus_space_read_4(st, sh, (reg)) & (wait))	\
     67 			/* nothing */;					\
     68 } while (0)
     69 
     70 void
     71 au_cal_timers(bus_space_tag_t st, bus_space_handle_t sh)
     72 {
     73 	uint32_t ctrdiff[4], startctr, endctr;
     74 	uint32_t ctl, ctr, octr;
     75 	int i;
     76 
     77 	/* Enable the programmable counter 1. */
     78 	ctl = bus_space_read_4(st, sh, PC_COUNTER_CONTROL);
     79 	if ((ctl & (CC_EO | CC_EN1)) != (CC_EO | CC_EN1))
     80 		SET_PC_REG(PC_COUNTER_CONTROL, 0, ctl | CC_EO | CC_EN1);
     81 
     82 	/* Initialize for 16Hz. */
     83 	SET_PC_REG(PC_TRIM1, CC_T1S, PC_RATE / 16 - 1);
     84 
     85 	/* Run the loop an extra time to prime the cache. */
     86 	for (i = 0; i < 4; i++) {
     87 		/* Reset the counter. */
     88 		SET_PC_REG(PC_COUNTER_WRITE1, CC_C1S, 0);
     89 
     90 		/* Wait for 1/16th of a second. */
     91 		//startctr = mips3_cp0_count_read();
     92 
     93 		/* Wait for the PC to tick over. */
     94 		ctr = bus_space_read_4(st, sh, PC_COUNTER_READ_1);
     95 		do {
     96 			octr = bus_space_read_4(st, sh, PC_COUNTER_READ_1);
     97 		} while (ctr == octr);
     98 
     99 		startctr = mips3_cp0_count_read();
    100 		do {
    101 			ctr = bus_space_read_4(st, sh, PC_COUNTER_READ_1);
    102 		} while (ctr == octr);	// while (ctr <= octr + 1);
    103 		endctr = mips3_cp0_count_read();
    104 		ctrdiff[i] = endctr - startctr;
    105 	}
    106 
    107 	/* Disable the counter (if it wasn't enabled already). */
    108 	if ((ctl & (CC_EO | CC_EN1)) != (CC_EO | CC_EN1))
    109 		SET_PC_REG(PC_COUNTER_CONTROL, 0, ctl);
    110 
    111 	/* Compute the number of cycles per second. */
    112 	curcpu()->ci_cpu_freq = ((ctrdiff[2] + ctrdiff[3]) / 2) * 16;
    113 
    114 	/* Compute the number of ticks for hz. */
    115 	curcpu()->ci_cycles_per_hz = (curcpu()->ci_cpu_freq + hz / 2) / hz;
    116 
    117 	/* Compute the delay divisor. */
    118 	curcpu()->ci_divisor_delay =
    119 	    ((curcpu()->ci_cpu_freq + 500000) / 1000000);
    120 
    121 	/*
    122 	 * To implement a more accurate microtime using the CP0 COUNT
    123 	 * register we need to divide that register by the number of
    124 	 * cycles per MHz.  But...
    125 	 *
    126 	 * DIV and DIVU are expensive on MIPS (eg 75 clocks on the
    127 	 * R4000).  MULT and MULTU are only 12 clocks on the same CPU.
    128 	 * On the SB1 these appear to be 40-72 clocks for DIV/DIVU and 3
    129 	 * clocks for MUL/MULTU.
    130 	 *
    131 	 * The strategy we use to to calculate the reciprical of cycles
    132 	 * per MHz, scaled by 1<<32.  Then we can simply issue a MULTU
    133 	 * and pluck of the HI register and have the results of the
    134 	 * division.
    135 	 */
    136 	curcpu()->ci_divisor_recip =
    137 	    0x100000000ULL / curcpu()->ci_divisor_delay;
    138 
    139 	/*
    140 	 * Get correct cpu frequency if the CPU runs at twice the
    141 	 * external/cp0-count frequency.
    142 	 */
    143 	if (mips_cpu_flags & CPU_MIPS_DOUBLE_COUNT)
    144 		curcpu()->ci_cpu_freq *= 2;
    145 
    146 #ifdef DEBUG
    147 	printf("Timer calibration: %lu cycles/sec [(%u, %u) * 16]\n",
    148 	    curcpu()->ci_cpu_freq, ctrdiff[2], ctrdiff[3]);
    149 #endif
    150 }
    151