]> git.saurik.com Git - apple/xnu.git/blame - osfmk/ppc/interrupt.c
xnu-792.6.76.tar.gz
[apple/xnu.git] / osfmk / ppc / interrupt.c
CommitLineData
1c79356b 1/*
3a60a9f5 2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
1c79356b
A
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
37839358
A
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.
1c79356b 11 *
37839358
A
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
1c79356b
A
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
37839358
A
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
1c79356b
A
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22/*
23 * @OSF_COPYRIGHT@
24 */
25/*
26 * @APPLE_FREE_COPYRIGHT@
27 */
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>
55e303ae 33#include <ppc/trap.h>
1c79356b
A
34#include <ppc/proc_reg.h>
35#include <ppc/exception.h>
36#include <ppc/savearea.h>
37#include <pexpert/pexpert.h>
1c79356b
A
38#include <sys/kdebug.h>
39
91447636
A
40perfCallback perfIntHook = 0; /* Pointer to CHUD trap hook routine */
41
42void unresolved_kernel_trap(int trapno,
43 struct savearea *ssp,
44 unsigned int dsisr,
45 addr64_t dar,
46 const char *message);
55e303ae 47
9bccf70c 48struct savearea * interrupt(
1c79356b 49 int type,
9bccf70c 50 struct savearea *ssp,
1c79356b
A
51 unsigned int dsisr,
52 unsigned int dar)
53{
483a1d10 54 int current_cpu;
91447636 55 struct per_proc_info *proc_info;
0b4e3aa0 56 uint64_t now;
91447636 57 thread_t thread;
1c79356b
A
58
59 disable_preemption();
55e303ae
A
60
61 if(perfIntHook) { /* Is there a hook? */
62 if(perfIntHook(type, ssp, dsisr, dar) == KERN_SUCCESS) return ssp; /* If it succeeds, we are done... */
63 }
1c79356b 64
9bccf70c
A
65#if 0
66 {
67 extern void fctx_text(void);
68 fctx_test();
69 }
70#endif
91447636
A
71
72
1c79356b 73 current_cpu = cpu_number();
91447636 74 proc_info = getPerProc();
1c79356b
A
75
76 switch (type) {
77
1c79356b
A
78 case T_DECREMENTER:
79 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_DECI, 0) | DBG_FUNC_NONE,
55e303ae 80 isync_mfdec(), (unsigned int)ssp->save_srr0, 0, 0, 0);
1c79356b
A
81
82#if 0
83 if (pcsample_enable) {
91447636
A
84 if (find_user_regs(current_thread()))
85 add_pcsamples (user_pc(current_thread()));
1c79356b
A
86 }
87#endif
88
3a60a9f5
A
89 now = mach_absolute_time(); /* Find out what time it is */
90
91 if(now >= proc_info->pms.pmsPop) { /* Is it time for power management state change? */
92 pmsStep(1); /* Yes, advance step */
93 now = mach_absolute_time(); /* Get the time again since we ran a bit */
94 }
95
91447636
A
96 thread = current_thread(); /* Find ourselves */
97 if(thread->machine.qactTimer != 0) { /* Is the timer set? */
91447636
A
98 if (thread->machine.qactTimer <= now) { /* It is set, has it popped? */
99 thread->machine.qactTimer = 0; /* Clear single shot timer */
100 if((unsigned int)thread->machine.vmmControl & 0xFFFFFFFE) { /* Are there any virtual machines? */
101 vmm_timer_pop(thread); /* Yes, check out them out... */
1c79356b
A
102 }
103 }
104 }
105
3a60a9f5 106 rtclock_intr(ssp);
1c79356b
A
107 break;
108
109 case T_INTERRUPT:
110 /* Call the platform interrupt routine */
111 counter_always(c_incoming_interrupts++);
112
113 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_INTR, 0) | DBG_FUNC_START,
55e303ae 114 current_cpu, (unsigned int)ssp->save_srr0, 0, 0, 0);
1c79356b 115
91447636
A
116 proc_info->interrupt_handler(
117 proc_info->interrupt_target,
118 proc_info->interrupt_refCon,
119 proc_info->interrupt_nub,
120 proc_info->interrupt_source);
1c79356b
A
121
122 KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_EXCP_INTR, 0) | DBG_FUNC_END,
123 0, 0, 0, 0, 0);
124
125 break;
126
127 case T_SIGP:
128 /* Did the other processor signal us? */
129 cpu_signal_handler();
130 break;
131
132 case T_SHUTDOWN:
133 cpu_doshutdown();
134 panic("returning from cpu_doshutdown()\n");
135 break;
136
137
138 default:
3a60a9f5
A
139 if (!Call_Debugger(type, ssp))
140 unresolved_kernel_trap(type, ssp, dsisr, dar, NULL);
1c79356b
A
141 break;
142 }
143
144 enable_preemption();
145 return ssp;
146}