2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 * @APPLE_FREE_COPYRIGHT@
36 * Purpose: Routines for handling the machine independent
40 #include <mach/mach_types.h>
42 #include <kern/clock.h>
43 #include <kern/thread.h>
44 #include <kern/processor.h>
45 #include <kern/macro_help.h>
47 #include <kern/etimer.h>
50 #include <machine/commpage.h>
51 #include <machine/machine_routines.h>
53 #include <sys/kdebug.h>
54 #include <ppc/exception.h>
56 /* XXX from <arch>/rtclock.c */
57 clock_timer_func_t rtclock_timer_expire
;
60 * Event timer interrupt.
62 * XXX a drawback of this implementation is that events serviced earlier must not set deadlines
63 * that occur before the entire chain completes.
65 * XXX a better implementation would use a set of generic callouts and iterate over them
70 __unused
uint64_t iaddr
)
73 rtclock_timer_t
*mytimer
;
74 struct per_proc_info
*pp
;
78 mytimer
= &pp
->rtclock_timer
; /* Point to the event timer */
80 abstime
= mach_absolute_time(); /* Get the time now */
82 /* is it time for power management state change? */
83 if (pp
->pms
.pmsPop
<= abstime
) {
84 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_DECI
, 3) | DBG_FUNC_START
, 0, 0, 0, 0, 0);
85 pmsStep(1); /* Yes, advance step */
86 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_DECI
, 3) | DBG_FUNC_END
, 0, 0, 0, 0, 0);
88 abstime
= mach_absolute_time(); /* Get the time again since we ran a bit */
91 /* has a pending clock timer expired? */
92 if (mytimer
->deadline
<= abstime
) { /* Have we expired the deadline? */
93 mytimer
->has_expired
= TRUE
; /* Remember that we popped */
94 mytimer
->deadline
= EndOfAllTime
; /* Set timer request to the end of all time in case we have no more events */
95 (*rtclock_timer_expire
)(abstime
); /* Process pop */
96 mytimer
->has_expired
= FALSE
;
99 /* schedule our next deadline */
100 pp
->rtcPop
= EndOfAllTime
; /* any real deadline will be earlier */
101 etimer_resync_deadlines();
105 * Set the clock deadline; called by the thread scheduler.
107 void etimer_set_deadline(uint64_t deadline
)
109 rtclock_timer_t
*mytimer
;
111 struct per_proc_info
*pp
;
113 s
= splclock(); /* no interruptions */
116 mytimer
= &pp
->rtclock_timer
; /* Point to the timer itself */
117 mytimer
->deadline
= deadline
; /* Set the new expiration time */
119 etimer_resync_deadlines();
126 * Re-evaluate the outstanding deadlines and select the most proximate.
128 * Should be called at splclock.
131 etimer_resync_deadlines(void)
134 rtclock_timer_t
*mytimer
;
135 spl_t s
= splclock(); /* No interruptions please */
136 struct per_proc_info
*pp
;
142 /* if we have a clock timer set sooner, pop on that */
143 mytimer
= &pp
->rtclock_timer
; /* Point to the timer itself */
144 if (!mytimer
->has_expired
&& mytimer
->deadline
> 0)
145 deadline
= mytimer
->deadline
;
147 /* if we have a power management event coming up, how about that? */
148 if (pp
->pms
.pmsPop
> 0 && pp
->pms
.pmsPop
< deadline
)
149 deadline
= pp
->pms
.pmsPop
;
152 if (deadline
> 0 && deadline
<= pp
->rtcPop
) {
156 now
= mach_absolute_time();
157 decr
= setPop(deadline
);
160 pp
->rtcPop
= now
+ decr
;
162 pp
->rtcPop
= deadline
;
164 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_DECI
, 1) | DBG_FUNC_NONE
, decr
, 2, 0, 0, 0);