]> git.saurik.com Git - apple/xnu.git/blame - osfmk/ppc/model_dep.c
xnu-792.10.96.tar.gz
[apple/xnu.git] / osfmk / ppc / model_dep.c
CommitLineData
1c79356b 1/*
91447636 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/*
29 * (c) Copyright 1988 HEWLETT-PACKARD COMPANY
30 *
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.
41 */
42/*
43 * Copyright (c) 1990,1991,1992,1994 The University of Utah and
44 * the Computer Systems Laboratory (CSL). All rights reserved.
45 *
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.
49 *
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.
52 *
53 * Utah $Hdr: model_dep.c 1.34 94/12/14$
54 */
55
56#include <debug.h>
57#include <mach_kdb.h>
58#include <mach_kdp.h>
59#include <db_machine_commands.h>
1c79356b
A
60
61#include <kern/thread.h>
62#include <machine/pmap.h>
1c79356b
A
63#include <device/device_types.h>
64
65#include <mach/vm_param.h>
66#include <mach/clock_types.h>
67#include <mach/machine.h>
68#include <mach/kmod.h>
69#include <ppc/boot.h>
70
71#include <kern/misc_protos.h>
72#include <kern/startup.h>
73#include <ppc/misc_protos.h>
74#include <ppc/proc_reg.h>
75#include <ppc/thread.h>
76#include <ppc/asm.h>
77#include <ppc/mem.h>
78#include <ppc/Firmware.h>
79#include <ppc/low_trace.h>
80#include <ppc/mappings.h>
81#include <ppc/FirmwareCalls.h>
91447636 82#include <ppc/cpu_internal.h>
1c79356b 83#include <ppc/exception.h>
55e303ae 84#include <ppc/hw_perfmon.h>
91447636 85#include <ppc/lowglobals.h>
1c79356b
A
86
87#include <kern/clock.h>
88#include <kern/debug.h>
89#include <machine/trap.h>
90#include <kern/spl.h>
91#include <pexpert/pexpert.h>
1c79356b
A
92
93#include <IOKit/IOPlatformExpert.h>
94
95#include <mach/vm_prot.h>
96#include <vm/pmap.h>
97#include <mach/time_value.h>
98#include <machine/machparam.h> /* for btop */
99
100#if MACH_KDB
101#include <ddb/db_aout.h>
102#include <ddb/db_output.h>
103#include <ddb/db_command.h>
104#include <machine/db_machdep.h>
105
106extern struct db_command ppc_db_commands[];
107#endif /* MACH_KDB */
108
109char kernel_args_buf[256] = "/mach_kernel";
110char boot_args_buf[256] = "/mach_servers/bootstrap";
111char env_buf[256];
112
113#define TRAP_DEBUGGER __asm__ volatile("tw 4,r3,r3");
114#define TRAP_DEBUGGER_INST 0x7c831808
115#define TRAP_DIRECT __asm__ volatile("tw 4,r4,r4");
116#define TRAP_DIRECT_INST 0x7c842008
117#define TRAP_INST_SIZE 4
118#define BREAK_TO_KDP0 0x7fe00008
119#define BREAK_TO_KDP1 0x7c800008
120#define BREAK_TO_KDB0 0x7c810808
121
122/*
123 * Code used to synchronize debuggers among all cpus, one active at a time, switch
124 * from on to another using kdb_on! #cpu or cpu #cpu
125 */
126
9bccf70c
A
127hw_lock_data_t debugger_lock; /* debugger lock */
128hw_lock_data_t pbtlock; /* backtrace print lock */
1c79356b
A
129
130int debugger_cpu = -1; /* current cpu running debugger */
131int debugger_debug = 0; /* Debug debugger */
1c79356b
A
132int db_run_mode; /* Debugger run mode */
133unsigned int debugger_sync = 0; /* Cross processor debugger entry sync */
134extern unsigned int NMIss; /* NMI debounce switch */
135
0b4e3aa0
A
136extern volatile int panicwait;
137volatile unsigned int pbtcnt = 0;
138volatile unsigned int pbtcpu = -1;
139
1c79356b
A
140unsigned int lastTrace; /* Value of low-level exception trace controls */
141
a3d08fcd 142
1c79356b
A
143volatile unsigned int cpus_holding_bkpts; /* counter for number of cpus holding
144 breakpoints (ie: cpus that did not
145 insert back breakpoints) */
146void unlock_debugger(void);
147void lock_debugger(void);
91447636 148void dump_backtrace(savearea *sv, unsigned int stackptr, unsigned int fence);
0b4e3aa0 149void dump_savearea(savearea *sv, unsigned int fence);
1c79356b 150
55e303ae
A
151int packAsc (unsigned char *inbuf, unsigned int length);
152
1c79356b
A
153#if !MACH_KDB
154boolean_t db_breakpoints_inserted = TRUE;
155jmp_buf_t *db_recover = 0;
156#endif
157
158#if MACH_KDB
159#include <ddb/db_run.h>
160int kdb_flag=0;
161extern boolean_t db_breakpoints_inserted;
162extern jmp_buf_t *db_recover;
163#define KDB_READY 0x1
164#endif
165
166#if MACH_KDP
167extern int kdp_flag;
168#define KDP_READY 0x1
169#endif
170
171boolean_t db_im_stepping = 0xFFFFFFFF; /* Remember if we were stepping */
172
0b4e3aa0
A
173
174char *failNames[] = {
175
176 "Debugging trap", /* failDebug */
177 "Corrupt stack", /* failStack */
178 "Corrupt mapping tables", /* failMapping */
179 "Corrupt context", /* failContext */
9bccf70c
A
180 "No saveareas", /* failNoSavearea */
181 "Savearea corruption", /* failSaveareaCorr */
182 "Invalid live context", /* failBadLiveContext */
91447636 183 "Corrupt skip lists", /* failSkipLists */
55e303ae 184 "Unaligned stack", /* failUnalignedStk */
91447636 185 "Invalid pmap", /* failPmap */
b36670ce 186 "Lock timeout", /* failTimeout */
9bccf70c 187 "Unknown failure code" /* Unknown failure code - must always be last */
0b4e3aa0
A
188};
189
190char *invxcption = "Unknown code";
191
1c79356b 192extern const char version[];
0b4e3aa0 193extern char *trap_type[];
1c79356b
A
194
195#if !MACH_KDB
9bccf70c
A
196void kdb_trap(int type, struct savearea *regs);
197void kdb_trap(int type, struct savearea *regs) {
1c79356b
A
198 return;
199}
200#endif
201
202#if !MACH_KDP
9bccf70c
A
203void kdp_trap(int type, struct savearea *regs);
204void kdp_trap(int type, struct savearea *regs) {
1c79356b
A
205 return;
206}
207#endif
208
209void
210machine_startup(boot_args *args)
211{
212 int boot_arg;
91447636
A
213 unsigned int wncpu;
214 unsigned int vmm_arg;
1c79356b
A
215
216 if (PE_parse_boot_arg("cpus", &wncpu)) {
91447636
A
217 if ((wncpu > 0) && (wncpu < MAX_CPUS))
218 max_ncpus = wncpu;
219 }
1c79356b
A
220
221 if( PE_get_hotkey( kPEControlKey ))
222 halt_in_debugger = halt_in_debugger ? 0 : 1;
223
224 if (PE_parse_boot_arg("debug", &boot_arg)) {
225 if (boot_arg & DB_HALT) halt_in_debugger=1;
226 if (boot_arg & DB_PRT) disableDebugOuput=FALSE;
227 if (boot_arg & DB_SLOG) systemLogDiags=TRUE;
9bccf70c
A
228 if (boot_arg & DB_NMI) panicDebugging=TRUE;
229 if (boot_arg & DB_LOG_PI_SCRN) logPanicDataToScreen=TRUE;
1c79356b 230 }
91447636
A
231
232 PE_parse_boot_arg("vmmforce", &lowGlo.lgVMMforcedFeats);
1c79356b 233
0b4e3aa0
A
234 hw_lock_init(&debugger_lock); /* initialize debugger lock */
235 hw_lock_init(&pbtlock); /* initialize print backtrace lock */
1c79356b
A
236
237#if MACH_KDB
238 /*
239 * Initialize KDB
240 */
241#if DB_MACHINE_COMMANDS
242 db_machine_commands_install(ppc_db_commands);
243#endif /* DB_MACHINE_COMMANDS */
244 ddb_init();
245
246 if (boot_arg & DB_KDB)
247 current_debugger = KDB_CUR_DB;
248
249 /*
250 * Cause a breakpoint trap to the debugger before proceeding
251 * any further if the proper option bit was specified in
252 * the boot flags.
253 */
254 if (halt_in_debugger && (current_debugger == KDB_CUR_DB)) {
255 Debugger("inline call to debugger(machine_startup)");
256 halt_in_debugger = 0;
257 active_debugger =1;
258 }
259#endif /* MACH_KDB */
260 if (PE_parse_boot_arg("preempt", &boot_arg)) {
261 extern int default_preemption_rate;
262
263 default_preemption_rate = boot_arg;
264 }
0b4e3aa0
A
265 if (PE_parse_boot_arg("unsafe", &boot_arg)) {
266 extern int max_unsafe_quanta;
267
268 max_unsafe_quanta = boot_arg;
269 }
270 if (PE_parse_boot_arg("poll", &boot_arg)) {
271 extern int max_poll_quanta;
272
273 max_poll_quanta = boot_arg;
274 }
275 if (PE_parse_boot_arg("yield", &boot_arg)) {
276 extern int sched_poll_yield_shift;
277
278 sched_poll_yield_shift = boot_arg;
279 }
1c79356b
A
280
281 machine_conf();
282
1c79356b 283 /*
91447636 284 * Kick off the kernel bootstrap.
1c79356b 285 */
91447636
A
286 kernel_bootstrap();
287 /*NOTREACHED*/
1c79356b
A
288}
289
290char *
291machine_boot_info(
292 char *buf,
293 vm_size_t size)
294{
295 return(PE_boot_args());
296}
297
298void
299machine_conf(void)
300{
55e303ae 301 machine_info.memory_size = mem_size; /* Note that this will be 2 GB for >= 2 GB machines */
1c79356b
A
302}
303
304void
305machine_init(void)
306{
307 clock_config();
3a60a9f5
A
308/* Note that we must initialize the stepper tables AFTER the clock is configured!!!!! */
309 if(pmsExperimental & 1) pmsCPUConf(); /* (EXPERIMENTAL) Initialize the stepper tables */
55e303ae 310 perfmon_init();
3a60a9f5
A
311 return;
312
1c79356b
A
313}
314
315void slave_machine_init(void)
316{
1c79356b 317 cpu_machine_init(); /* Initialize the processor */
91447636 318 clock_init(); /* Init the clock */
1c79356b
A
319}
320
321void
322halt_all_cpus(boolean_t reboot)
323{
324 if(reboot)
325 {
326 printf("MACH Reboot\n");
327 PEHaltRestart(kPERestartCPU);
328 }
329 else
330 {
331 printf("CPU halted\n");
332 PEHaltRestart(kPEHaltCPU);
333 }
334 while(1);
335}
336
337void
338halt_cpu(void)
339{
340 halt_all_cpus(FALSE);
341}
342
343#if MACH_ASSERT
344/*
345 * Machine-dependent routine to fill in an array with up to callstack_max
346 * levels of return pc information.
347 */
348void machine_callstack(
349 natural_t *buf,
350 vm_size_t callstack_max)
351{
352}
353#endif /* MACH_ASSERT */
354
355
356void
9bccf70c 357print_backtrace(struct savearea *ssp)
1c79356b 358{
0b4e3aa0 359 unsigned int stackptr, *raddr, *rstack, trans, fence;
1c79356b
A
360 int i, frames_cnt, skip_top_frames, frames_max;
361 unsigned int store[8]; /* Buffer for real storage reads */
362 vm_offset_t backtrace_entries[32];
0b4e3aa0
A
363 savearea *sv, *svssp;
364 int cpu;
55e303ae 365 savearea *psv;
0b4e3aa0
A
366
367/*
368 * We need this lock to make sure we don't hang up when we double panic on an MP.
369 */
370
371 cpu = cpu_number(); /* Just who are we anyways? */
372 if(pbtcpu != cpu) { /* Allow recursion */
55e303ae 373 hw_atomic_add((uint32_t *)&pbtcnt, 1); /* Remember we are trying */
0b4e3aa0
A
374 while(!hw_lock_try(&pbtlock)); /* Spin here until we can get in. If we never do, well, we're crashing anyhow... */
375 pbtcpu = cpu; /* Mark it as us */
376 }
1c79356b 377
0b4e3aa0
A
378 svssp = (savearea *)ssp; /* Make this easier */
379 sv = 0;
91447636 380 if(current_thread()) sv = (savearea *)current_thread()->machine.pcb; /* Find most current savearea if system has started */
0b4e3aa0
A
381
382 fence = 0xFFFFFFFF; /* Show we go all the way */
55e303ae 383 if(sv) fence = (unsigned int)sv->save_r1; /* Stop at previous exception point */
0b4e3aa0
A
384
385 if(!svssp) { /* Should we start from stack? */
9bccf70c 386 kdb_printf("Latest stack backtrace for cpu %d:\n", cpu_number());
0b4e3aa0 387 __asm__ volatile("mr %0,r1" : "=r" (stackptr)); /* Get current stack */
91447636 388 dump_backtrace((savearea *)0,stackptr, fence); /* Dump the backtrace */
0b4e3aa0 389 if(!sv) { /* Leave if no saveareas */
9bccf70c 390 kdb_printf("\nKernel version:\n%s\n",version); /* Print kernel version */
0b4e3aa0
A
391 hw_lock_unlock(&pbtlock); /* Allow another back trace to happen */
392 return;
393 }
394 }
395 else { /* Were we passed an exception? */
396 fence = 0xFFFFFFFF; /* Show we go all the way */
9bccf70c 397 if(svssp->save_hdr.save_prev) {
55e303ae
A
398 if((svssp->save_hdr.save_prev <= vm_last_addr) && ((unsigned int)pmap_find_phys(kernel_pmap, (addr64_t)svssp->save_hdr.save_prev))) { /* Valid address? */
399 psv = (savearea *)((unsigned int)svssp->save_hdr.save_prev); /* Get the 64-bit back chain converted to a regualr pointer */
400 fence = (unsigned int)psv->save_r1; /* Stop at previous exception point */
9bccf70c
A
401 }
402 }
0b4e3aa0 403
9bccf70c
A
404 kdb_printf("Latest crash info for cpu %d:\n", cpu_number());
405 kdb_printf(" Exception state (sv=0x%08X)\n", sv);
0b4e3aa0
A
406 dump_savearea(svssp, fence); /* Dump this savearea */
407 }
408
409 if(!sv) { /* Leave if no saveareas */
9bccf70c 410 kdb_printf("\nKernel version:\n%s\n",version); /* Print kernel version */
0b4e3aa0
A
411 hw_lock_unlock(&pbtlock); /* Allow another back trace to happen */
412 return;
413 }
414
9bccf70c 415 kdb_printf("Proceeding back via exception chain:\n");
0b4e3aa0
A
416
417 while(sv) { /* Do them all... */
55e303ae
A
418 if(!(((addr64_t)((uintptr_t)sv) <= vm_last_addr) &&
419 (unsigned int)pmap_find_phys(kernel_pmap, (addr64_t)((uintptr_t)sv)))) { /* Valid address? */
9bccf70c
A
420 kdb_printf(" Exception state (sv=0x%08X) Not mapped or invalid. stopping...\n", sv);
421 break;
422 }
423
424 kdb_printf(" Exception state (sv=0x%08X)\n", sv);
0b4e3aa0 425 if(sv == svssp) { /* Did we dump it already? */
9bccf70c 426 kdb_printf(" previously dumped as \"Latest\" state. skipping...\n");
0b4e3aa0
A
427 }
428 else {
429 fence = 0xFFFFFFFF; /* Show we go all the way */
9bccf70c 430 if(sv->save_hdr.save_prev) {
55e303ae
A
431 if((sv->save_hdr.save_prev <= vm_last_addr) && ((unsigned int)pmap_find_phys(kernel_pmap, (addr64_t)sv->save_hdr.save_prev))) { /* Valid address? */
432 psv = (savearea *)((unsigned int)sv->save_hdr.save_prev); /* Get the 64-bit back chain converted to a regualr pointer */
433 fence = (unsigned int)psv->save_r1; /* Stop at previous exception point */
9bccf70c
A
434 }
435 }
0b4e3aa0
A
436 dump_savearea(sv, fence); /* Dump this savearea */
437 }
438
55e303ae 439 sv = CAST_DOWN(savearea *, sv->save_hdr.save_prev); /* Back chain */
0b4e3aa0
A
440 }
441
9bccf70c 442 kdb_printf("\nKernel version:\n%s\n",version); /* Print kernel version */
0b4e3aa0
A
443
444 pbtcpu = -1; /* Mark as unowned */
445 hw_lock_unlock(&pbtlock); /* Allow another back trace to happen */
55e303ae 446 hw_atomic_sub((uint32_t *) &pbtcnt, 1); /* Show we are done */
0b4e3aa0
A
447
448 while(pbtcnt); /* Wait for completion */
449
450 return;
451}
452
453void dump_savearea(savearea *sv, unsigned int fence) {
454
455 char *xcode;
456
457 if(sv->save_exception > T_MAX) xcode = invxcption; /* Too big for table */
458 else xcode = trap_type[sv->save_exception / 4]; /* Point to the type */
459
9bccf70c 460 kdb_printf(" PC=0x%08X; MSR=0x%08X; DAR=0x%08X; DSISR=0x%08X; LR=0x%08X; R1=0x%08X; XCP=0x%08X (%s)\n",
55e303ae
A
461 (unsigned int)sv->save_srr0, (unsigned int)sv->save_srr1, (unsigned int)sv->save_dar, sv->save_dsisr,
462 (unsigned int)sv->save_lr, (unsigned int)sv->save_r1, sv->save_exception, xcode);
0b4e3aa0
A
463
464 if(!(sv->save_srr1 & MASK(MSR_PR))) { /* Are we in the kernel? */
91447636 465 dump_backtrace(sv, (unsigned int)sv->save_r1, fence); /* Dump the stack back trace from here if not user state */
1c79356b 466 }
0b4e3aa0
A
467
468 return;
469}
470
471
1c79356b 472
91447636 473#define DUMPFRAMES 34
0b4e3aa0 474#define LRindex 2
1c79356b 475
91447636 476void dump_backtrace(savearea *sv, unsigned int stackptr, unsigned int fence) {
1c79356b 477
0b4e3aa0
A
478 unsigned int bframes[DUMPFRAMES];
479 unsigned int sframe[8], raddr, dumbo;
91447636 480 int i, index=0;
0b4e3aa0 481
9bccf70c 482 kdb_printf(" Backtrace:\n");
91447636
A
483 if (sv != (savearea *)0) {
484 bframes[0] = (unsigned int)sv->save_srr0;
485 bframes[1] = (unsigned int)sv->save_lr;
486 index = 2;
487 }
488 for(i = index; i < DUMPFRAMES; i++) { /* Dump up to max frames */
0b4e3aa0
A
489
490 if(!stackptr || (stackptr == fence)) break; /* Hit stop point or end... */
491
55e303ae 492 if(stackptr & 0x0000000F) { /* Is stack pointer valid? */
9bccf70c 493 kdb_printf("\n backtrace terminated - unaligned frame address: 0x%08X\n", stackptr); /* No, tell 'em */
0b4e3aa0
A
494 break;
495 }
496
55e303ae
A
497 raddr = (unsigned int)pmap_find_phys(kernel_pmap, (addr64_t)stackptr); /* Get physical frame address */
498 if(!raddr || (stackptr > vm_last_addr)) { /* Is it mapped? */
9bccf70c 499 kdb_printf("\n backtrace terminated - frame not mapped or invalid: 0x%08X\n", stackptr); /* No, tell 'em */
1c79356b 500 break;
1c79356b 501 }
0b4e3aa0 502
55e303ae 503 if(!mapping_phys_lookup(raddr, &dumbo)) { /* Is it within physical RAM? */
9bccf70c 504 kdb_printf("\n backtrace terminated - frame outside of RAM: v=0x%08X, p=%08X\n", stackptr, raddr); /* No, tell 'em */
1c79356b 505 break;
0b4e3aa0
A
506 }
507
55e303ae 508 ReadReal((addr64_t)((raddr << 12) | (stackptr & 4095)), &sframe[0]); /* Fetch the stack frame */
0b4e3aa0 509
9bccf70c 510 bframes[i] = sframe[LRindex]; /* Save the link register */
0b4e3aa0 511
9bccf70c
A
512 if(!i) kdb_printf(" "); /* Indent first time */
513 else if(!(i & 7)) kdb_printf("\n "); /* Skip to new line every 8 */
514 kdb_printf("0x%08X ", bframes[i]); /* Dump the link register */
0b4e3aa0 515
9bccf70c 516 stackptr = sframe[0]; /* Chain back */
1c79356b 517 }
9bccf70c
A
518 kdb_printf("\n");
519 if(i >= DUMPFRAMES) kdb_printf(" backtrace continues...\n"); /* Say we terminated early */
0b4e3aa0
A
520 if(i) kmod_dump((vm_offset_t *)&bframes[0], i); /* Show what kmods are in trace */
521
1c79356b 522}
0b4e3aa0
A
523
524
1c79356b
A
525
526void
527Debugger(const char *message) {
528
529 int i;
530 unsigned int store[8];
9bccf70c 531 unsigned long pi_size = 0;
1c79356b
A
532 spl_t spl;
533
534 spl = splhigh(); /* No interruptions from here on */
0b4e3aa0 535
1c79356b
A
536/*
537 * backtrace for Debugger() call from panic() if no current debugger
538 * backtrace and return for double panic() call
539 */
540 if ((panicstr != (char *)0) &&
541 (((nestedpanic != 0) && (current_debugger == 1)) || (active_debugger == 0))) {
542 print_backtrace(NULL);
543 if (nestedpanic != 0) {
544 splx(spl);
0b4e3aa0 545 return; /* Yeah, don't enter again... */
1c79356b
A
546 }
547 }
0b4e3aa0 548
91447636 549 if (debug_mode && getPerProc()->debugger_active) { /* Are we already on debugger on this processor? */
1c79356b
A
550 splx(spl);
551 return; /* Yeah, don't do it again... */
552 }
553
9bccf70c
A
554
555/*
556 * The above stuff catches the double panic case so we shouldn't have to worry about that here.
557 */
558 if ( panicstr != (char *)0 )
559 {
560 /* diable kernel preemptions */
561 disable_preemption();
562
563 /* everything should be printed now so copy to NVRAM
564 */
565 if( debug_buf_size > 0)
55e303ae
A
566
567 {
568 /* Do not compress the panic log unless kernel debugging
569 * is disabled - the panic log isn't synced to NVRAM if
570 * debugging is enabled, and the panic log is valuable
571 * whilst debugging
572 */
573 if (!panicDebugging)
574 {
575 unsigned int bufpos;
576
577 /* Now call the compressor */
578 bufpos = packAsc (debug_buf, (unsigned int) (debug_buf_ptr - debug_buf) );
579 /* If compression was successful, use the compressed length */
580 if (bufpos)
581 {
582 debug_buf_ptr = debug_buf + bufpos;
583 }
584 }
585 /* Truncate if the buffer is larger than a certain magic
586 * size - this really ought to be some appropriate fraction
587 * of the NVRAM image buffer, and is best done in the
588 * savePanicInfo() or PESavePanicInfo() calls
589 */
590 pi_size = debug_buf_ptr - debug_buf;
591 pi_size = PESavePanicInfo( debug_buf, ((pi_size > 2040) ? 2040 : pi_size));
592 }
9bccf70c
A
593
594 if( !panicDebugging && (pi_size != 0) ) {
91447636 595 int my_cpu;
9bccf70c
A
596 int tcpu;
597
598 my_cpu = cpu_number();
599 debugger_cpu = my_cpu;
600
601 hw_atomic_add(&debug_mode, 1);
91447636 602 PerProcTable[my_cpu].ppe_vaddr->debugger_active++;
9bccf70c
A
603 lock_debugger();
604
91447636 605 for(tcpu = 0; tcpu < real_ncpus; tcpu++) {
9bccf70c
A
606 if(tcpu == my_cpu) continue;
607 hw_atomic_add(&debugger_sync, 1);
608 (void)cpu_signal(tcpu, SIGPdebug, 0 ,0);
609 }
610 (void)hw_cpu_sync(&debugger_sync, LockTimeOut);
611 debugger_sync = 0;
612 }
613
614 draw_panic_dialog();
615
616 if( !panicDebugging && (pi_size != 0))
617 PEHaltRestart( kPEHangCPU );
618
619 enable_preemption();
620 }
621
622
1c79356b
A
623 if ((current_debugger != NO_CUR_DB)) { /* If there is a debugger configured, enter it */
624 printf("Debugger(%s)\n", message);
625 TRAP_DEBUGGER;
626 splx(spl);
627 return; /* Done debugging for a while */
628 }
629
630 printf("\nNo debugger configured - dumping debug information\n");
1c79356b
A
631 printf("MSR=%08X\n",mfmsr());
632 print_backtrace(NULL);
633 splx(spl);
634 return;
635}
636
0b4e3aa0
A
637/*
638 * Here's where we attempt to get some diagnostic information dumped out
639 * when the system is really confused. We will try to get into the
640 * debugger as well.
641 *
642 * We are here with interrupts disabled and on the debug stack. The savearea
643 * that was passed in is NOT chained to the activation.
644 *
645 * save_r3 contains the failure reason code.
646 */
647
648void SysChoked(int type, savearea *sv) { /* The system is bad dead */
649
650 unsigned int failcode;
651
652 mp_disable_preemption();
653 disableDebugOuput = FALSE;
654 debug_mode = TRUE;
655
55e303ae 656 failcode = (unsigned int)sv->save_r3; /* Get the failure code */
0b4e3aa0
A
657 if(failcode > failUnknown) failcode = failUnknown; /* Set unknown code code */
658
55e303ae
A
659 kprintf("System Failure: cpu=%d; code=%08X (%s)\n", cpu_number(), (unsigned int)sv->save_r3, failNames[failcode]);
660 kdb_printf("System Failure: cpu=%d; code=%08X (%s)\n", cpu_number(), (unsigned int)sv->save_r3, failNames[failcode]);
0b4e3aa0 661
9bccf70c 662 print_backtrace(sv); /* Attempt to print backtrace */
0b4e3aa0
A
663 Call_DebuggerC(type, sv); /* Attempt to get into debugger */
664
665 if ((current_debugger != NO_CUR_DB)) Call_DebuggerC(type, sv); /* Attempt to get into debugger */
666
667}
668
669
670
1c79356b
A
671/*
672 * When we get here, interruptions are disabled and we are on the debugger stack
673 * Never, ever, ever, ever enable interruptions from here on
674 */
675
676int Call_DebuggerC(
677 int type,
9bccf70c 678 struct savearea *saved_state)
1c79356b
A
679{
680 int directcall, wait;
55e303ae
A
681 addr64_t instr_ptr;
682 ppnum_t instr_pp;
1c79356b 683 unsigned int instr;
a3d08fcd
A
684 int my_cpu, tcpu, wasdebugger;
685 struct per_proc_info *pp;
686 uint64_t nowtime, poptime;
1c79356b
A
687
688 my_cpu = cpu_number(); /* Get our CPU */
689
690#if MACH_KDB
691 if((debugger_cpu == my_cpu) && /* Do we already own debugger? */
91447636 692 PerProcTable[my_cpu].ppe_vaddr->debugger_active && /* and are we really active? */
1c79356b
A
693 db_recover && /* and have we set up recovery? */
694 (current_debugger == KDB_CUR_DB)) { /* and are we in KDB (only it handles recovery) */
695 kdb_trap(type, saved_state); /* Then reenter it... */
696 }
697#endif
698
699 hw_atomic_add(&debug_mode, 1); /* Indicate we are in debugger */
91447636
A
700 PerProcTable[my_cpu].ppe_vaddr->debugger_active++; /* Show active on our CPU */
701
1c79356b
A
702 lock_debugger(); /* Insure that only one CPU is in debugger */
703
704 if(db_im_stepping == my_cpu) { /* Are we just back from a step? */
705 enable_preemption_no_check(); /* Enable preemption now */
706 db_im_stepping = 0xFFFFFFFF; /* Nobody stepping right now */
707 }
708
709 if (debugger_debug) {
710#if 0
711 kprintf("Call_DebuggerC(%d): %08X %08X, debact = %d\n", my_cpu, type, saved_state, debug_mode); /* (TEST/DEBUG) */
712#endif
713 printf("Call_Debugger: enter - cpu %d, is_slave %d, debugger_cpu %d, pc %08X\n",
91447636 714 my_cpu, PerProcTable[my_cpu].ppe_vaddr->debugger_is_slave, debugger_cpu, saved_state->save_srr0);
1c79356b
A
715 }
716
55e303ae
A
717 instr_pp = (vm_offset_t)pmap_find_phys(kernel_pmap, (addr64_t)(saved_state->save_srr0));
718
719 if (instr_pp) {
720 instr_ptr = (addr64_t)(((addr64_t)instr_pp << 12) | (saved_state->save_srr0 & 0xFFF)); /* Make physical address */
721 instr = ml_phys_read_64(instr_ptr); /* Get the trap that caused entry */
1c79356b
A
722 }
723 else instr = 0;
724
725#if 0
55e303ae 726 if (debugger_debug) kprintf("Call_DebuggerC(%d): instr_pp = %08X, instr_ptr = %016llX, instr = %08X\n", my_cpu, instr_pp, instr_ptr, instr); /* (TEST/DEBUG) */
1c79356b
A
727#endif
728
729 if (db_breakpoints_inserted) cpus_holding_bkpts++; /* Bump up the holding count */
91447636 730 if (debugger_cpu == -1 && !PerProcTable[my_cpu].ppe_vaddr->debugger_is_slave) {
1c79356b
A
731#if 0
732 if (debugger_debug) kprintf("Call_DebuggerC(%d): lasttrace = %08X\n", my_cpu, lastTrace); /* (TEST/DEBUG) */
733#endif
734 debugger_cpu = my_cpu; /* Show that we are debugger */
a3d08fcd
A
735
736
1c79356b
A
737 lastTrace = LLTraceSet(0); /* Disable low-level tracing */
738
91447636 739 for(tcpu = 0; tcpu < real_ncpus; tcpu++) { /* Stop all the other guys */
1c79356b
A
740 if(tcpu == my_cpu) continue; /* Don't diddle ourselves */
741 hw_atomic_add(&debugger_sync, 1); /* Count signal sent */
742 (void)cpu_signal(tcpu, SIGPdebug, 0 ,0); /* Tell 'em to enter debugger */
743 }
744 (void)hw_cpu_sync(&debugger_sync, LockTimeOut); /* Wait for the other processors to enter debug */
745 debugger_sync = 0; /* We're done with it */
746 }
747 else if (debugger_cpu != my_cpu) goto debugger_exit; /* We are not debugger, don't continue... */
748
749
750 if (instr == TRAP_DIRECT_INST) {
751 disableDebugOuput = FALSE;
752 print_backtrace(saved_state);
753 }
754
755 switch_debugger = 0; /* Make sure switch request is off */
756 directcall = 1; /* Assume direct call */
757
9bccf70c 758 if (saved_state->save_srr1 & MASK(SRR1_PRG_TRAP)) { /* Trap instruction? */
1c79356b
A
759
760 directcall = 0; /* We had a trap not a direct call */
761
762 switch (instr) { /* Select trap type */
763
764#if MACH_KDP
765 case BREAK_TO_KDP0: /* Breakpoint into KDP? */
766 case BREAK_TO_KDP1: /* Breakpoint into KDP? */
767 current_debugger = KDP_CUR_DB; /* Yes, set KDP */
768 kdp_trap(type, saved_state); /* Enter it */
769 break;
770#endif
771
772#if MACH_KDB
773 case BREAK_TO_KDB0: /* Breakpoint to KDB (the "good" debugger)? */
774 current_debugger = KDB_CUR_DB; /* Yes, set it */
775 kdb_trap(type, saved_state); /* Enter it */
776 break;
777#endif
778
779 case TRAP_DEBUGGER_INST: /* Should we enter the current debugger? */
780 case TRAP_DIRECT_INST: /* Should we enter the current debugger? */
781 if (current_debugger == KDP_CUR_DB) /* Is current KDP? */
782 kdp_trap(type, saved_state); /* Yes, enter it */
783 else if (current_debugger == KDB_CUR_DB) /* Is this KDB? */
784 kdb_trap(type, saved_state); /* Yes, go ahead and enter */
785 else goto debugger_error; /* No debugger active */
786 break;
787
788 default: /* Unknown/bogus trap type */
789 goto debugger_error;
790 }
791 }
792
793 while(1) { /* We are here to handle debugger switches */
794
795 if(!directcall) { /* Was this a direct call? */
796 if(!switch_debugger) break; /* No, then leave if no switch requested... */
797
798/*
799 * Note: we can only switch to a debugger we have. Ignore bogus switch requests.
800 */
801#if 0
802 if (debugger_debug) kprintf("Call_DebuggerC(%d): switching debuggers\n", my_cpu); /* (TEST/DEBUG) */
803#endif
804#if MACH_KDB
805 if(current_debugger == KDP_CUR_DB) current_debugger = KDB_CUR_DB; /* Switch to KDB */
806#if MACH_KDP
807 else
808#endif
809#endif
810#if MACH_KDP
811 if(current_debugger == KDB_CUR_DB) current_debugger = KDP_CUR_DB; /* Switch to KDP */
812#endif
813 }
814
815 switch_debugger = 0; /* Clear request */
816 directcall = 0; /* Clear first-time direct call indication */
817
818 switch (current_debugger) { /* Enter correct debugger */
819
820 case KDP_CUR_DB: /* Enter KDP */
821 kdp_trap(type, saved_state);
822 break;
823
824 case KDB_CUR_DB: /* Enter KDB */
825 kdb_trap(type, saved_state);
826 break;
827
828 default: /* No debugger installed */
829 goto debugger_error;
830 break;
831 }
832 }
833
834debugger_exit:
835#if 0
836 if (debugger_debug) kprintf("Call_DebuggerC(%d): exit - inst = %08X, cpu=%d(%d), run=%d\n", my_cpu,
91447636 837 instr, my_cpu, debugger_cpu, db_run_mode); /* (TEST/DEBUG) */
1c79356b
A
838#endif
839 if ((instr == TRAP_DEBUGGER_INST) || /* Did we trap to enter debugger? */
9bccf70c 840 (instr == TRAP_DIRECT_INST)) saved_state->save_srr0 += TRAP_INST_SIZE; /* Yes, point past trap */
1c79356b 841
a3d08fcd
A
842 wasdebugger = 0; /* Assume not debugger */
843 if(debugger_cpu == my_cpu) { /* Are the debugger processor? */
844 wasdebugger = 1; /* Remember that we were the debugger */
845 LLTraceSet(lastTrace); /* Enable tracing on the way out if we are debugger */
846 }
1c79356b
A
847
848 wait = FALSE; /* Assume we are not going to wait */
849 if (db_run_mode == STEP_CONTINUE) { /* Are we going to run? */
850 wait = TRUE; /* Yeah, remember to wait for breakpoints to clear */
851 debugger_cpu = -1; /* Release other processor's debuggers */
91447636
A
852 for(tcpu = 0; tcpu < real_ncpus; tcpu++)
853 PerProcTable[tcpu].ppe_vaddr->debugger_pending = 0; /* Release request (this is a HACK) */
1c79356b
A
854 NMIss = 0; /* Let NMI bounce */
855 }
856
857 if(db_run_mode == STEP_ONCE) { /* Are we about to step? */
858 disable_preemption(); /* Disable preemption for the step */
859 db_im_stepping = my_cpu; /* Remember that I am about to step */
860 }
861
862 if (db_breakpoints_inserted) cpus_holding_bkpts--; /* If any breakpoints, back off count */
91447636 863 if (PerProcTable[my_cpu].ppe_vaddr->debugger_is_slave) PerProcTable[my_cpu].ppe_vaddr->debugger_is_slave--; /* If we were a slove, uncount us */
1c79356b
A
864 if (debugger_debug)
865 printf("Call_Debugger: exit - cpu %d, debugger_cpu %d, run_mode %d holds %d\n",
866 my_cpu, debugger_cpu, db_run_mode,
867 cpus_holding_bkpts);
868
869 unlock_debugger(); /* Release the lock */
91447636 870 PerProcTable[my_cpu].ppe_vaddr->debugger_active--; /* Say we aren't active anymore */
1c79356b
A
871
872 if (wait) while(cpus_holding_bkpts); /* Wait for breakpoints to clear */
873
a3d08fcd 874
1c79356b
A
875 hw_atomic_sub(&debug_mode, 1); /* Set out of debug now */
876
877 return(1); /* Exit debugger normally */
878
879debugger_error:
880 if(db_run_mode != STEP_ONCE) enable_preemption_no_check(); /* Enable preemption, but don't preempt here */
881 hw_atomic_sub(&debug_mode, 1); /* Set out of debug now */
882 return(0); /* Return in shame... */
883
884}
885
886void lock_debugger(void) {
887 int my_cpu;
888 register int i;
889
890 my_cpu = cpu_number(); /* Get our CPU number */
891
892 while(1) { /* Check until we get it */
893
894 if (debugger_cpu != -1 && debugger_cpu != my_cpu) continue; /* Someone, not us, is debugger... */
895 if (hw_lock_try(&debugger_lock)) { /* Get the debug lock */
896 if (debugger_cpu == -1 || debugger_cpu == my_cpu) break; /* Is it us? */
897 hw_lock_unlock(&debugger_lock); /* Not us, release lock */
898 }
899 }
900}
901
902void unlock_debugger(void) {
903
904 hw_lock_unlock(&debugger_lock);
905
906}
907
55e303ae
A
908struct pasc {
909 unsigned a: 7;
910 unsigned b: 7;
911 unsigned c: 7;
912 unsigned d: 7;
913 unsigned e: 7;
914 unsigned f: 7;
915 unsigned g: 7;
916 unsigned h: 7;
917} __attribute__((packed));
918
919typedef struct pasc pasc_t;
1c79356b 920
55e303ae
A
921int packAsc (unsigned char *inbuf, unsigned int length)
922{
923 unsigned int i, j = 0;
924 pasc_t pack;
925
926 for (i = 0; i < length; i+=8)
927 {
928 pack.a = inbuf[i];
929 pack.b = inbuf[i+1];
930 pack.c = inbuf[i+2];
931 pack.d = inbuf[i+3];
932 pack.e = inbuf[i+4];
933 pack.f = inbuf[i+5];
934 pack.g = inbuf[i+6];
935 pack.h = inbuf[i+7];
936 bcopy ((char *) &pack, inbuf + j, 7);
937 j += 7;
938 }
939 if (0 != (i - length))
940 inbuf[j - (i - length)] &= 0xFF << (8-(i - length));
941 return j-(((i-length) == 7) ? 6 : (i - length));
942}