summaryrefslogtreecommitdiff
path: root/i386/i386/hardclock.c
blob: 57259ff34136a61f00b1e1d4eeb15d58cfeb85c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* 
 * Mach Operating System
 * Copyright (c) 1991,1990 Carnegie Mellon University
 * Copyright (c) 1991 IBM Corporation 
 * All Rights Reserved.
 * 
 * Permission to use, copy, modify and distribute this software and its
 * documentation is hereby granted, provided that both the copyright
 * notice and this permission notice appear in all copies of the
 * software, derivative works or modified versions, and any portions
 * thereof, and that both notices appear in supporting documentation,
 * and that the name IBM not be used in advertising or publicity 
 * pertaining to distribution of the software without specific, written
 * prior permission.
 * 
 * CARNEGIE MELLON AND IBM ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS IS"
 * CONDITION.  CARNEGIE MELLON AND IBM DISCLAIM ANY LIABILITY OF ANY KIND FOR
 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 * 
 * Carnegie Mellon requests users of this software to return to
 * 
 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
 *  School of Computer Science
 *  Carnegie Mellon University
 *  Pittsburgh PA 15213-3890
 * 
 * any improvements or extensions that they make and grant Carnegie Mellon
 * the rights to redistribute these changes.
 */
/*
 * Clock interrupt.
 */
#include <mach/machine/eflags.h>

#include <kern/mach_clock.h>
#include <i386/thread.h>

#if	defined(AT386) || defined(ATX86_64)
#include <i386/ipl.h>
#endif

#ifdef LINUX_DEV
#include <linux/dev/glue/glue.h>
#endif

extern char	return_to_iret[];

void
hardclock(int iunit, /* 'unit' number */
          int old_ipl, /* old interrupt level */
          int irq,  /* irq number */
          const char *ret_addr, /* return address in interrupt handler */
          struct i386_interrupt_state *regs /* saved registers */
          )
{
	if (ret_addr == return_to_iret)
	    /*
	     * Interrupt from user mode or from thread stack.
	     */
	    clock_interrupt(tick,			/* usec per tick */
			    (regs->efl & EFL_VM) ||	/* user mode */
			    ((regs->cs & 0x03) != 0),	/* user mode */
#if defined(LINUX_DEV)
			    FALSE,			/* ignore SPL0 */
#else	/* LINUX_DEV */
			    old_ipl == SPL0,		/* base priority */
#endif	/* LINUX_DEV */
			    regs->eip);			/* interrupted eip */
	else
	    /*
	     * Interrupt from interrupt stack.
	     */
	    clock_interrupt(tick,			/* usec per tick */
			    FALSE,			/* kernel mode */
			    FALSE,			/* not SPL0 */
			    0);				/* interrupted eip */

#ifdef LINUX_DEV
	linux_timer_intr();
#endif /* LINUX_DEV */
}