]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/ppc/interrupt.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * @APPLE_FREE_COPYRIGHT@
28 #include <kern/misc_protos.h>
29 #include <kern/assert.h>
30 #include <kern/thread.h>
31 #include <kern/counters.h>
32 #include <ppc/misc_protos.h>
34 #include <ppc/proc_reg.h>
35 #include <ppc/exception.h>
36 #include <ppc/savearea.h>
37 #include <pexpert/pexpert.h>
38 #include <sys/kdebug.h>
40 perfTrap perfIntHook
= 0; /* Pointer to performance trap hook routine */
42 struct savearea
* interrupt(
54 if(perfIntHook
) { /* Is there a hook? */
55 if(perfIntHook(type
, ssp
, dsisr
, dar
) == KERN_SUCCESS
) return ssp
; /* If it succeeds, we are done... */
60 extern void fctx_text(void);
66 current_cpu
= cpu_number();
71 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_DECI
, 0) | DBG_FUNC_NONE
,
72 isync_mfdec(), (unsigned int)ssp
->save_srr0
, 0, 0, 0);
75 if (pcsample_enable
) {
76 if (find_user_regs(current_act()))
77 add_pcsamples (user_pc(current_act()));
81 act
= current_act(); /* Find ourselves */
82 if(act
->mact
.qactTimer
!= 0) { /* Is the timer set? */
83 clock_get_uptime(&now
); /* Find out what time it is */
84 if (act
->mact
.qactTimer
<= now
) { /* It is set, has it popped? */
85 act
->mact
.qactTimer
= 0; /* Clear single shot timer */
86 if((unsigned int)act
->mact
.vmmControl
& 0xFFFFFFFE) { /* Are there any virtual machines? */
87 vmm_timer_pop(act
); /* Yes, check out them out... */
92 rtclock_intr(0, ssp
, 0);
96 /* Call the platform interrupt routine */
97 counter_always(c_incoming_interrupts
++);
99 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_INTR
, 0) | DBG_FUNC_START
,
100 current_cpu
, (unsigned int)ssp
->save_srr0
, 0, 0, 0);
102 per_proc_info
[current_cpu
].interrupt_handler(
103 per_proc_info
[current_cpu
].interrupt_target
,
104 per_proc_info
[current_cpu
].interrupt_refCon
,
105 per_proc_info
[current_cpu
].interrupt_nub
,
106 per_proc_info
[current_cpu
].interrupt_source
);
108 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_INTR
, 0) | DBG_FUNC_END
,
114 /* Did the other processor signal us? */
115 cpu_signal_handler();
120 panic("returning from cpu_doshutdown()\n");
125 #if MACH_KDP || MACH_KDB
126 (void)Call_Debugger(type
, ssp
);
128 panic("Invalid interrupt type %x\n", type
);