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@
29 * (c) Copyright 1988 HEWLETT-PACKARD COMPANY
31 * To anyone who acknowledges that this file is provided "AS IS"
32 * without any express or implied warranty:
33 * permission to use, copy, modify, and distribute this file
34 * for any purpose is hereby granted without fee, provided that
35 * the above copyright notice and this notice appears in all
36 * copies, and that the name of Hewlett-Packard Company not be
37 * used in advertising or publicity pertaining to distribution
38 * of the software without specific, written prior permission.
39 * Hewlett-Packard Company makes no representations about the
40 * suitability of this software for any purpose.
43 * Copyright (c) 1990,1991,1992,1994 The University of Utah and
44 * the Computer Systems Laboratory (CSL). All rights reserved.
46 * THE UNIVERSITY OF UTAH AND CSL PROVIDE THIS SOFTWARE IN ITS "AS IS"
47 * CONDITION, AND DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES
48 * WHATSOEVER RESULTING FROM ITS USE.
50 * CSL requests users of this software to return to csl-dist@cs.utah.edu any
51 * improvements that they make and grant CSL redistribution rights.
53 * Utah $Hdr: model_dep.c 1.34 94/12/14$
59 #include <db_machine_commands.h>
62 #include <kern/thread.h>
63 #include <machine/pmap.h>
64 #include <machine/mach_param.h>
65 #include <device/device_types.h>
67 #include <mach/vm_param.h>
68 #include <mach/clock_types.h>
69 #include <mach/machine.h>
70 #include <mach/kmod.h>
73 #include <kern/misc_protos.h>
74 #include <kern/startup.h>
75 #include <ppc/misc_protos.h>
76 #include <ppc/proc_reg.h>
77 #include <ppc/thread.h>
80 #include <ppc/Firmware.h>
81 #include <ppc/low_trace.h>
82 #include <ppc/mappings.h>
83 #include <ppc/FirmwareCalls.h>
84 #include <ppc/setjmp.h>
85 #include <ppc/exception.h>
87 #include <kern/clock.h>
88 #include <kern/debug.h>
89 #include <machine/trap.h>
91 #include <pexpert/pexpert.h>
94 #include <IOKit/IOPlatformExpert.h>
96 #include <mach/vm_prot.h>
98 #include <mach/time_value.h>
99 #include <machine/machparam.h> /* for btop */
102 #include <ddb/db_aout.h>
103 #include <ddb/db_output.h>
104 #include <ddb/db_command.h>
105 #include <machine/db_machdep.h>
107 extern struct db_command ppc_db_commands
[];
108 #endif /* MACH_KDB */
110 char kernel_args_buf
[256] = "/mach_kernel";
111 char boot_args_buf
[256] = "/mach_servers/bootstrap";
114 #define TRAP_DEBUGGER __asm__ volatile("tw 4,r3,r3");
115 #define TRAP_DEBUGGER_INST 0x7c831808
116 #define TRAP_DIRECT __asm__ volatile("tw 4,r4,r4");
117 #define TRAP_DIRECT_INST 0x7c842008
118 #define TRAP_INST_SIZE 4
119 #define BREAK_TO_KDP0 0x7fe00008
120 #define BREAK_TO_KDP1 0x7c800008
121 #define BREAK_TO_KDB0 0x7c810808
124 * Code used to synchronize debuggers among all cpus, one active at a time, switch
125 * from on to another using kdb_on! #cpu or cpu #cpu
128 decl_simple_lock_data(, debugger_lock
) /* debugger lock */
129 decl_simple_lock_data(, pbtlock
) /* backtrace print lock */
131 int debugger_cpu
= -1; /* current cpu running debugger */
132 int debugger_debug
= 0; /* Debug debugger */
133 int debugger_is_slave
[NCPUS
]; /* Show that we were entered via sigp */
134 int debugger_active
[NCPUS
]; /* Debugger active on CPU */
135 int debugger_pending
[NCPUS
]; /* Debugger entry pending on CPU (this is a HACK) */
136 int debugger_holdoff
[NCPUS
]; /* Holdoff debugger entry on this CPU (this is a HACK) */
137 int db_run_mode
; /* Debugger run mode */
138 unsigned int debugger_sync
= 0; /* Cross processor debugger entry sync */
139 extern unsigned int NMIss
; /* NMI debounce switch */
141 extern volatile int panicwait
;
142 volatile unsigned int pbtcnt
= 0;
143 volatile unsigned int pbtcpu
= -1;
145 unsigned int lastTrace
; /* Value of low-level exception trace controls */
147 volatile unsigned int cpus_holding_bkpts
; /* counter for number of cpus holding
148 breakpoints (ie: cpus that did not
149 insert back breakpoints) */
150 void unlock_debugger(void);
151 void lock_debugger(void);
152 void dump_backtrace(unsigned int stackptr
, unsigned int fence
);
153 void dump_savearea(savearea
*sv
, unsigned int fence
);
156 boolean_t db_breakpoints_inserted
= TRUE
;
157 jmp_buf_t
*db_recover
= 0;
161 #include <ddb/db_run.h>
163 extern boolean_t db_breakpoints_inserted
;
164 extern jmp_buf_t
*db_recover
;
165 #define KDB_READY 0x1
170 #define KDP_READY 0x1
173 boolean_t db_im_stepping
= 0xFFFFFFFF; /* Remember if we were stepping */
176 char *failNames
[] = {
178 "Debugging trap", /* failDebug */
179 "Corrupt stack", /* failStack */
180 "Corrupt mapping tables", /* failMapping */
181 "Corrupt context", /* failContext */
182 "Unknown failure code" /* Unknown failure code - must always be last */
185 char *invxcption
= "Unknown code";
187 extern const char version
[];
188 extern char *trap_type
[];
189 extern vm_offset_t mem_actual
;
192 void kdb_trap(int type
, struct ppc_saved_state
*regs
);
193 void kdb_trap(int type
, struct ppc_saved_state
*regs
) {
199 void kdp_trap(int type
, struct ppc_saved_state
*regs
);
200 void kdp_trap(int type
, struct ppc_saved_state
*regs
) {
206 machine_startup(boot_args
*args
)
210 if (PE_parse_boot_arg("cpus", &wncpu
)) {
211 if (!((wncpu
> 0) && (wncpu
< NCPUS
)))
216 if( PE_get_hotkey( kPEControlKey
))
217 halt_in_debugger
= halt_in_debugger
? 0 : 1;
219 if (PE_parse_boot_arg("debug", &boot_arg
)) {
220 if (boot_arg
& DB_HALT
) halt_in_debugger
=1;
221 if (boot_arg
& DB_PRT
) disableDebugOuput
=FALSE
;
222 if (boot_arg
& DB_SLOG
) systemLogDiags
=TRUE
;
225 hw_lock_init(&debugger_lock
); /* initialize debugger lock */
226 hw_lock_init(&pbtlock
); /* initialize print backtrace lock */
232 #if DB_MACHINE_COMMANDS
233 db_machine_commands_install(ppc_db_commands
);
234 #endif /* DB_MACHINE_COMMANDS */
237 if (boot_arg
& DB_KDB
)
238 current_debugger
= KDB_CUR_DB
;
241 * Cause a breakpoint trap to the debugger before proceeding
242 * any further if the proper option bit was specified in
245 if (halt_in_debugger
&& (current_debugger
== KDB_CUR_DB
)) {
246 Debugger("inline call to debugger(machine_startup)");
247 halt_in_debugger
= 0;
250 #endif /* MACH_KDB */
251 if (PE_parse_boot_arg("preempt", &boot_arg
)) {
252 extern int default_preemption_rate
;
254 default_preemption_rate
= boot_arg
;
256 if (PE_parse_boot_arg("kpreempt", &boot_arg
)) {
257 extern int kernel_preemption_mode
;
258 extern boolean_t zone_gc_allowed
;
260 kernel_preemption_mode
= boot_arg
;
261 zone_gc_allowed
= FALSE
; /* XXX: TO BE REMOVED */
263 if (PE_parse_boot_arg("unsafe", &boot_arg
)) {
264 extern int max_unsafe_quanta
;
266 max_unsafe_quanta
= boot_arg
;
268 if (PE_parse_boot_arg("poll", &boot_arg
)) {
269 extern int max_poll_quanta
;
271 max_poll_quanta
= boot_arg
;
273 if (PE_parse_boot_arg("yield", &boot_arg
)) {
274 extern int sched_poll_yield_shift
;
276 sched_poll_yield_shift
= boot_arg
;
281 ml_thrm_init(); /* Start thermal monitoring on this processor */
288 /* Should never return */
296 return(PE_boot_args());
302 machine_info
.max_cpus
= NCPUS
;
303 machine_info
.avail_cpus
= 1;
304 machine_info
.memory_size
= mem_size
;
313 void slave_machine_init(void)
315 (void) ml_set_interrupts_enabled(FALSE
); /* Make sure we are disabled */
316 clock_init(); /* Init the clock */
317 cpu_machine_init(); /* Initialize the processor */
321 halt_all_cpus(boolean_t reboot
)
325 printf("MACH Reboot\n");
326 PEHaltRestart(kPERestartCPU
);
330 printf("CPU halted\n");
331 PEHaltRestart(kPEHaltCPU
);
339 halt_all_cpus(FALSE
);
344 * Machine-dependent routine to fill in an array with up to callstack_max
345 * levels of return pc information.
347 void machine_callstack(
349 vm_size_t callstack_max
)
352 #endif /* MACH_ASSERT */
356 print_backtrace(struct ppc_saved_state
*ssp
)
358 unsigned int stackptr
, *raddr
, *rstack
, trans
, fence
;
359 int i
, frames_cnt
, skip_top_frames
, frames_max
;
360 unsigned int store
[8]; /* Buffer for real storage reads */
361 vm_offset_t backtrace_entries
[32];
363 savearea
*sv
, *svssp
;
367 * We need this lock to make sure we don't hang up when we double panic on an MP.
370 cpu
= cpu_number(); /* Just who are we anyways? */
371 if(pbtcpu
!= cpu
) { /* Allow recursion */
372 hw_atomic_add(&pbtcnt
, 1); /* Remember we are trying */
373 while(!hw_lock_try(&pbtlock
)); /* Spin here until we can get in. If we never do, well, we're crashing anyhow... */
374 pbtcpu
= cpu
; /* Mark it as us */
377 svssp
= (savearea
*)ssp
; /* Make this easier */
379 if(current_thread()) sv
= (savearea
*)current_act()->mact
.pcb
; /* Find most current savearea if system has started */
381 fence
= 0xFFFFFFFF; /* Show we go all the way */
382 if(sv
) fence
= sv
->save_r1
; /* Stop at previous exception point */
384 if(!svssp
) { /* Should we start from stack? */
385 printf("Latest stack backtrace for cpu %d:\n", cpu_number());
386 __asm__
volatile("mr %0,r1" : "=r" (stackptr
)); /* Get current stack */
387 dump_backtrace(stackptr
, fence
); /* Dump the backtrace */
388 if(!sv
) { /* Leave if no saveareas */
389 printf("\nKernel version:\n%s\n",version
); /* Print kernel version */
390 hw_lock_unlock(&pbtlock
); /* Allow another back trace to happen */
394 else { /* Were we passed an exception? */
395 fence
= 0xFFFFFFFF; /* Show we go all the way */
396 if(svssp
->save_prev
) fence
= svssp
->save_prev
->save_r1
; /* Stop at previous exception point */
398 printf("Latest crash info for cpu %d:\n", cpu_number());
399 printf(" Exception state (sv=0x%08x)\n", sv
);
400 dump_savearea(svssp
, fence
); /* Dump this savearea */
403 if(!sv
) { /* Leave if no saveareas */
404 printf("\nKernel version:\n%s\n",version
); /* Print kernel version */
405 hw_lock_unlock(&pbtlock
); /* Allow another back trace to happen */
409 printf("Proceeding back via exception chain:\n");
411 while(sv
) { /* Do them all... */
412 printf(" Exception state (sv=0x%08x)\n", sv
);
413 if(sv
== svssp
) { /* Did we dump it already? */
414 printf(" previously dumped as \"Latest\" state. skipping...\n");
417 fence
= 0xFFFFFFFF; /* Show we go all the way */
418 if(sv
->save_prev
) fence
= sv
->save_prev
->save_r1
; /* Stop at previous exception point */
419 dump_savearea(sv
, fence
); /* Dump this savearea */
422 sv
= sv
->save_prev
; /* Back chain */
425 printf("\nKernel version:\n%s\n",version
); /* Print kernel version */
427 pbtcpu
= -1; /* Mark as unowned */
428 hw_lock_unlock(&pbtlock
); /* Allow another back trace to happen */
429 hw_atomic_sub(&pbtcnt
, 1); /* Show we are done */
431 while(pbtcnt
); /* Wait for completion */
436 void dump_savearea(savearea
*sv
, unsigned int fence
) {
440 if(sv
->save_exception
> T_MAX
) xcode
= invxcption
; /* Too big for table */
441 else xcode
= trap_type
[sv
->save_exception
/ 4]; /* Point to the type */
443 printf(" PC=0x%08X; MSR=0x%08x; DAR=0x%08x; DSISR=0x%08x; LR=0x%08x; R1=0x%08x; XCP=0x%08x (%s)\n",
444 sv
->save_srr0
, sv
->save_srr1
, sv
->save_dar
, sv
->save_dsisr
,
445 sv
->save_lr
, sv
->save_r1
, sv
->save_exception
, xcode
);
447 if(!(sv
->save_srr1
& MASK(MSR_PR
))) { /* Are we in the kernel? */
448 dump_backtrace(sv
->save_r1
, fence
); /* Dump the stack back trace from here if not user state */
456 #define DUMPFRAMES 32
459 void dump_backtrace(unsigned int stackptr
, unsigned int fence
) {
461 unsigned int bframes
[DUMPFRAMES
];
462 unsigned int sframe
[8], raddr
, dumbo
;
465 printf(" Backtrace:\n");
466 for(i
= 0; i
< DUMPFRAMES
; i
++) { /* Dump up to max frames */
468 if(!stackptr
|| (stackptr
== fence
)) break; /* Hit stop point or end... */
470 if(stackptr
& 0x0000000f) { /* Is stack pointer valid? */
471 printf("\n backtrace terminated - unaligned frame address: 0x%08x\n", stackptr
); /* No, tell 'em */
475 raddr
= (unsigned int)LRA(PPC_SID_KERNEL
, (void *)stackptr
); /* Get physical frame address */
476 if(!raddr
) { /* Is it mapped? */
477 printf("\n backtrace terminated - frame not mapped: 0x%08x\n", stackptr
); /* No, tell 'em */
481 if(raddr
>= mem_actual
) { /* Is it within physical RAM? */
482 printf("\n backtrace terminated - frame outside of RAM: v=0x%08x, p=%08X\n", stackptr
, raddr
); /* No, tell 'em */
486 ReadReal(raddr
, &sframe
[0]); /* Fetch the stack frame */
488 bframes
[i
] = sframe
[LRindex
]; /* Save the link register */
490 if(!i
) printf(" "); /* Indent first time */
491 else if(!(i
& 7)) printf("\n "); /* Skip to new line every 8 */
492 printf("0x%08x ", bframes
[i
]); /* Dump the link register */
494 stackptr
= sframe
[0]; /* Chain back */
497 if(i
>= DUMPFRAMES
) printf(" backtrace continues...\n"); /* Say we terminated early */
498 if(i
) kmod_dump((vm_offset_t
*)&bframes
[0], i
); /* Show what kmods are in trace */
505 Debugger(const char *message
) {
508 unsigned int store
[8];
511 spl
= splhigh(); /* No interruptions from here on */
514 * backtrace for Debugger() call from panic() if no current debugger
515 * backtrace and return for double panic() call
517 if ((panicstr
!= (char *)0) &&
518 (((nestedpanic
!= 0) && (current_debugger
== 1)) || (active_debugger
== 0))) {
519 print_backtrace(NULL
);
520 if (nestedpanic
!= 0) {
522 return; /* Yeah, don't enter again... */
526 if (debug_mode
&& debugger_active
[cpu_number()]) { /* Are we already on debugger on this processor? */
528 return; /* Yeah, don't do it again... */
531 if ((current_debugger
!= NO_CUR_DB
)) { /* If there is a debugger configured, enter it */
532 printf("Debugger(%s)\n", message
);
535 return; /* Done debugging for a while */
538 printf("\nNo debugger configured - dumping debug information\n");
547 printf("DBAT0: %08X %08X\n", store
[0], store
[1]);
548 printf("DBAT1: %08X %08X\n", store
[2], store
[3]);
549 printf("DBAT2: %08X %08X\n", store
[4], store
[5]);
550 printf("DBAT3: %08X %08X\n", store
[6], store
[7]);
551 printf("MSR=%08X\n",mfmsr());
552 print_backtrace(NULL
);
558 * Here's where we attempt to get some diagnostic information dumped out
559 * when the system is really confused. We will try to get into the
562 * We are here with interrupts disabled and on the debug stack. The savearea
563 * that was passed in is NOT chained to the activation.
565 * save_r3 contains the failure reason code.
568 void SysChoked(int type
, savearea
*sv
) { /* The system is bad dead */
570 unsigned int failcode
;
572 mp_disable_preemption();
573 disableDebugOuput
= FALSE
;
576 failcode
= sv
->save_r3
; /* Get the failure code */
577 if(failcode
> failUnknown
) failcode
= failUnknown
; /* Set unknown code code */
579 kprintf("System Failure: cpu=%d; code=%08X (%s)\n", cpu_number(), sv
->save_r3
, failNames
[failcode
]);
580 printf("System Failure: cpu=%d; code=%08X (%s)\n", cpu_number(), sv
->save_r3
, failNames
[failcode
]);
582 print_backtrace((struct ppc_saved_state
*)sv
); /* Attempt to print backtrace */
583 Call_DebuggerC(type
, sv
); /* Attempt to get into debugger */
585 if ((current_debugger
!= NO_CUR_DB
)) Call_DebuggerC(type
, sv
); /* Attempt to get into debugger */
592 * When we get here, interruptions are disabled and we are on the debugger stack
593 * Never, ever, ever, ever enable interruptions from here on
598 struct ppc_saved_state
*saved_state
)
600 int directcall
, wait
;
601 vm_offset_t instr_ptr
;
605 my_cpu
= cpu_number(); /* Get our CPU */
608 if((debugger_cpu
== my_cpu
) && /* Do we already own debugger? */
609 debugger_active
[my_cpu
] && /* and are we really active? */
610 db_recover
&& /* and have we set up recovery? */
611 (current_debugger
== KDB_CUR_DB
)) { /* and are we in KDB (only it handles recovery) */
612 kdb_trap(type
, saved_state
); /* Then reenter it... */
616 hw_atomic_add(&debug_mode
, 1); /* Indicate we are in debugger */
617 debugger_active
[my_cpu
]++; /* Show active on our CPU */
618 lock_debugger(); /* Insure that only one CPU is in debugger */
620 if(db_im_stepping
== my_cpu
) { /* Are we just back from a step? */
621 enable_preemption_no_check(); /* Enable preemption now */
622 db_im_stepping
= 0xFFFFFFFF; /* Nobody stepping right now */
625 if (debugger_debug
) {
627 kprintf("Call_DebuggerC(%d): %08X %08X, debact = %d\n", my_cpu
, type
, saved_state
, debug_mode
); /* (TEST/DEBUG) */
629 printf("Call_Debugger: enter - cpu %d, is_slave %d, debugger_cpu %d, pc %08X\n",
630 my_cpu
, debugger_is_slave
[my_cpu
], debugger_cpu
, saved_state
->srr0
);
633 if (instr_ptr
= (vm_offset_t
)LRA(PPC_SID_KERNEL
, (void *)(saved_state
->srr0
))) {
634 instr
= ml_phys_read(instr_ptr
); /* Get the trap that caused entry */
639 if (debugger_debug
) kprintf("Call_DebuggerC(%d): instr_ptr = %08X, instr = %08X\n", my_cpu
, instr_ptr
, instr
); /* (TEST/DEBUG) */
642 if (db_breakpoints_inserted
) cpus_holding_bkpts
++; /* Bump up the holding count */
643 if (debugger_cpu
== -1 && !debugger_is_slave
[my_cpu
]) {
645 if (debugger_debug
) kprintf("Call_DebuggerC(%d): lasttrace = %08X\n", my_cpu
, lastTrace
); /* (TEST/DEBUG) */
647 debugger_cpu
= my_cpu
; /* Show that we are debugger */
648 lastTrace
= LLTraceSet(0); /* Disable low-level tracing */
650 for(tcpu
= 0; tcpu
< NCPUS
; tcpu
++) { /* Stop all the other guys */
651 if(tcpu
== my_cpu
) continue; /* Don't diddle ourselves */
652 hw_atomic_add(&debugger_sync
, 1); /* Count signal sent */
653 (void)cpu_signal(tcpu
, SIGPdebug
, 0 ,0); /* Tell 'em to enter debugger */
655 (void)hw_cpu_sync(&debugger_sync
, LockTimeOut
); /* Wait for the other processors to enter debug */
656 debugger_sync
= 0; /* We're done with it */
658 else if (debugger_cpu
!= my_cpu
) goto debugger_exit
; /* We are not debugger, don't continue... */
661 if (instr
== TRAP_DIRECT_INST
) {
662 disableDebugOuput
= FALSE
;
663 print_backtrace(saved_state
);
666 switch_debugger
= 0; /* Make sure switch request is off */
667 directcall
= 1; /* Assume direct call */
669 if (saved_state
->srr1
& MASK(SRR1_PRG_TRAP
)) { /* Trap instruction? */
671 directcall
= 0; /* We had a trap not a direct call */
673 switch (instr
) { /* Select trap type */
676 case BREAK_TO_KDP0
: /* Breakpoint into KDP? */
677 case BREAK_TO_KDP1
: /* Breakpoint into KDP? */
678 current_debugger
= KDP_CUR_DB
; /* Yes, set KDP */
679 kdp_trap(type
, saved_state
); /* Enter it */
684 case BREAK_TO_KDB0
: /* Breakpoint to KDB (the "good" debugger)? */
685 current_debugger
= KDB_CUR_DB
; /* Yes, set it */
686 kdb_trap(type
, saved_state
); /* Enter it */
690 case TRAP_DEBUGGER_INST
: /* Should we enter the current debugger? */
691 case TRAP_DIRECT_INST
: /* Should we enter the current debugger? */
692 if (current_debugger
== KDP_CUR_DB
) /* Is current KDP? */
693 kdp_trap(type
, saved_state
); /* Yes, enter it */
694 else if (current_debugger
== KDB_CUR_DB
) /* Is this KDB? */
695 kdb_trap(type
, saved_state
); /* Yes, go ahead and enter */
696 else goto debugger_error
; /* No debugger active */
699 default: /* Unknown/bogus trap type */
704 while(1) { /* We are here to handle debugger switches */
706 if(!directcall
) { /* Was this a direct call? */
707 if(!switch_debugger
) break; /* No, then leave if no switch requested... */
710 * Note: we can only switch to a debugger we have. Ignore bogus switch requests.
713 if (debugger_debug
) kprintf("Call_DebuggerC(%d): switching debuggers\n", my_cpu
); /* (TEST/DEBUG) */
716 if(current_debugger
== KDP_CUR_DB
) current_debugger
= KDB_CUR_DB
; /* Switch to KDB */
722 if(current_debugger
== KDB_CUR_DB
) current_debugger
= KDP_CUR_DB
; /* Switch to KDP */
726 switch_debugger
= 0; /* Clear request */
727 directcall
= 0; /* Clear first-time direct call indication */
729 switch (current_debugger
) { /* Enter correct debugger */
731 case KDP_CUR_DB
: /* Enter KDP */
732 kdp_trap(type
, saved_state
);
735 case KDB_CUR_DB
: /* Enter KDB */
736 kdb_trap(type
, saved_state
);
739 default: /* No debugger installed */
747 if (debugger_debug
) kprintf("Call_DebuggerC(%d): exit - inst = %08X, cpu=%d(%d), run=%d\n", my_cpu
,
748 instr
, my_cpu
, debugger_cpu
, db_run_mode
); /* (TEST/DEBUG) */
750 if ((instr
== TRAP_DEBUGGER_INST
) || /* Did we trap to enter debugger? */
751 (instr
== TRAP_DIRECT_INST
)) saved_state
->srr0
+= TRAP_INST_SIZE
; /* Yes, point past trap */
753 if(debugger_cpu
== my_cpu
) LLTraceSet(lastTrace
); /* Enable tracing on the way out if we are debugger */
755 wait
= FALSE
; /* Assume we are not going to wait */
756 if (db_run_mode
== STEP_CONTINUE
) { /* Are we going to run? */
757 wait
= TRUE
; /* Yeah, remember to wait for breakpoints to clear */
758 debugger_cpu
= -1; /* Release other processor's debuggers */
759 debugger_pending
[0] = 0; /* Release request (this is a HACK) */
760 debugger_pending
[1] = 0; /* Release request (this is a HACK) */
761 NMIss
= 0; /* Let NMI bounce */
764 if(db_run_mode
== STEP_ONCE
) { /* Are we about to step? */
765 disable_preemption(); /* Disable preemption for the step */
766 db_im_stepping
= my_cpu
; /* Remember that I am about to step */
769 if (db_breakpoints_inserted
) cpus_holding_bkpts
--; /* If any breakpoints, back off count */
770 if (debugger_is_slave
[my_cpu
]) debugger_is_slave
[my_cpu
]--; /* If we were a slove, uncount us */
772 printf("Call_Debugger: exit - cpu %d, debugger_cpu %d, run_mode %d holds %d\n",
773 my_cpu
, debugger_cpu
, db_run_mode
,
776 unlock_debugger(); /* Release the lock */
777 debugger_active
[my_cpu
]--; /* Say we aren't active anymore */
779 if (wait
) while(cpus_holding_bkpts
); /* Wait for breakpoints to clear */
781 hw_atomic_sub(&debug_mode
, 1); /* Set out of debug now */
783 return(1); /* Exit debugger normally */
786 if(db_run_mode
!= STEP_ONCE
) enable_preemption_no_check(); /* Enable preemption, but don't preempt here */
787 hw_atomic_sub(&debug_mode
, 1); /* Set out of debug now */
788 return(0); /* Return in shame... */
792 void lock_debugger(void) {
796 my_cpu
= cpu_number(); /* Get our CPU number */
798 while(1) { /* Check until we get it */
800 if (debugger_cpu
!= -1 && debugger_cpu
!= my_cpu
) continue; /* Someone, not us, is debugger... */
801 if (hw_lock_try(&debugger_lock
)) { /* Get the debug lock */
802 if (debugger_cpu
== -1 || debugger_cpu
== my_cpu
) break; /* Is it us? */
803 hw_lock_unlock(&debugger_lock
); /* Not us, release lock */
808 void unlock_debugger(void) {
810 hw_lock_unlock(&debugger_lock
);