timex.h 1.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1998, 1999, 2003 by Ralf Baechle
 */
#ifndef _ASM_TIMEX_H
#define _ASM_TIMEX_H

11 12
#ifdef __KERNEL__

R
Ralf Baechle 已提交
13
#include <asm/cpu-features.h>
L
Linus Torvalds 已提交
14
#include <asm/mipsregs.h>
R
Ralf Baechle 已提交
15
#include <asm/cpu-type.h>
L
Linus Torvalds 已提交
16 17

/*
18 19 20 21
 * This is the clock rate of the i8253 PIT.  A MIPS system may not have
 * a PIT by the symbol is used all over the kernel including some APIs.
 * So keeping it defined to the number for the PIT is the only sane thing
 * for now.
L
Linus Torvalds 已提交
22
 */
23
#define CLOCK_TICK_RATE 1193182
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37

/*
 * Standard way to access the cycle counter.
 * Currently only used on SMP for scheduling.
 *
 * Only the low 32 bits are available as a continuously counting entity.
 * But this only means we'll force a reschedule every 8 seconds or so,
 * which isn't an evil thing.
 *
 * We know that all SMP capable CPUs have cycle counters.
 */

typedef unsigned int cycles_t;

R
Ralf Baechle 已提交
38 39 40 41 42 43 44 45 46 47
/*
 * On R4000/R4400 before version 5.0 an erratum exists such that if the
 * cycle counter is read in the exact moment that it is matching the
 * compare register, no interrupt will be generated.
 *
 * There is a suggested workaround and also the erratum can't strike if
 * the compare interrupt isn't being used as the clock source device.
 * However for now the implementaton of this function doesn't get these
 * fine details right.
 */
48
static inline cycles_t get_cycles(void)
L
Linus Torvalds 已提交
49
{
R
Ralf Baechle 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	switch (boot_cpu_type()) {
	case CPU_R4400PC:
	case CPU_R4400SC:
	case CPU_R4400MC:
		if ((read_c0_prid() & 0xff) >= 0x0050)
			return read_c0_count();
		break;

        case CPU_R4000PC:
        case CPU_R4000SC:
        case CPU_R4000MC:
		break;

	default:
		if (cpu_has_counter)
			return read_c0_count();
		break;
	}

	return 0;	/* no usable counter */
L
Linus Torvalds 已提交
70 71
}

72 73
#endif /* __KERNEL__ */

L
Linus Torvalds 已提交
74
#endif /*  _ASM_TIMEX_H */