2 * Copyright (c) 2000-2004 Apple Computer, 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 #include <platforms.h>
33 #include <time_stamp.h>
34 #include <mach_mp_debug.h>
35 #include <mach_ldebug.h>
36 #include <db_machine_commands.h>
39 #include <kern/cpu_number.h>
40 #include <kern/kern_types.h>
41 #include <kern/misc_protos.h>
45 #include <ppc/db_machdep.h>
47 #include <ppc/setjmp.h>
49 #include <ppc/misc_protos.h>
50 #include <ppc/cpu_internal.h>
51 #include <ppc/exception.h>
52 #include <ppc/db_machdep.h>
53 #include <ppc/mappings.h>
54 #include <ppc/Firmware.h>
56 #include <mach/vm_param.h>
57 #include <mach/machine/vm_types.h>
58 #include <vm/vm_map.h>
59 #include <kern/thread.h>
60 #include <kern/task.h>
61 #include <kern/debug.h>
62 #include <pexpert/pexpert.h>
63 #include <IOKit/IOPlatformExpert.h>
65 #include <ddb/db_command.h>
66 #include <ddb/db_task_thread.h>
67 #include <ddb/db_run.h>
68 #include <ddb/db_trap.h>
69 #include <ddb/db_output.h>
70 #include <ddb/db_access.h>
71 #include <ddb/db_sym.h>
72 #include <ddb/db_break.h>
73 #include <ddb/db_watch.h>
75 struct savearea
*ppc_last_saved_statep
;
76 struct savearea ppc_nested_saved_state
;
77 unsigned ppc_last_kdb_sp
;
79 extern int debugger_cpu
; /* Current cpu running debugger */
81 int db_all_set_up
= 0;
85 void kdp_register_send_receive(void);
89 * Enter KDB through a keyboard trap.
90 * We show the registers as of the keyboard interrupt
91 * instead of those at its call to KDB.
94 /* XXX more registers ? */
95 struct ppc_interrupt_state
*is
;
98 extern char * trap_type
[];
99 extern int TRAP_TYPES
;
102 * Code used to synchronize kdb among all cpus, one active at a time, switch
103 * from on to another using kdb_on! #cpu or cpu #cpu
106 decl_simple_lock_data(, kdb_lock
) /* kdb lock */
108 #define db_simple_lock_init(l, e) hw_lock_init(&((l)->interlock))
109 #define db_simple_lock_try(l) hw_lock_try(&((l)->interlock))
110 #define db_simple_unlock(l) hw_lock_unlock(&((l)->interlock))
112 extern volatile unsigned int cpus_holding_bkpts
; /* counter for number of cpus holding
113 breakpoints (ie: cpus that did not
114 insert back breakpoints) */
115 extern boolean_t db_breakpoints_inserted
;
119 extern void kdbprinttrap(
124 extern void db_write_bytes_user_space(
129 extern int db_search_null(
135 extern int kdb_enter(int);
136 extern void kdb_leave(void);
137 extern void lock_kdb(void);
138 extern void unlock_kdb(void);
140 #if DB_MACHINE_COMMANDS
141 struct db_command ppc_db_commands
[] = {
142 { "lt", db_low_trace
, CS_MORE
|CS_SET_DOT
, 0 },
143 { (char *)0, 0, 0, 0 }
145 #endif /* DB_MACHINE_COMMANDS */
148 void kdp_register_send_receive(void) {}
151 extern jmp_buf_t
*db_recover
;
154 * kdb_trap - field a TRACE or BPT trap
159 struct savearea
*regs
)
161 boolean_t trap_from_user
;
162 int previous_console_device
;
165 previous_console_device
=switch_to_serial_console();
168 case T_TRACE
: /* single_step */
169 case T_PROGRAM
: /* breakpoint */
171 case T_WATCHPOINT
: /* watchpoint */
173 case -1: /* keyboard interrupt */
178 ppc_nested_saved_state
= *regs
;
179 db_printf("Caught ");
180 if (type
> TRAP_TYPES
)
181 db_printf("type %d", type
);
183 db_printf("%s", trap_type
[type
]);
184 db_printf(" trap, pc = %llx\n",
189 kdbprinttrap(type
, code
, (int *)®s
->save_srr0
, regs
->save_r1
);
192 getPerProc()->db_saved_state
= regs
;
194 ppc_last_saved_statep
= regs
;
195 ppc_last_kdb_sp
= (unsigned) &type
;
197 if (!IS_USER_TRAP(regs
)) {
198 bzero((char *)&ddb_regs
, sizeof (ddb_regs
));
200 trap_from_user
= FALSE
;
205 trap_from_user
= TRUE
;
208 db_task_trap(type
, code
, trap_from_user
);
212 if ((type
== T_PROGRAM
) &&
213 (db_get_task_value(regs
->save_srr0
,
216 db_target_space(current_thread(),
219 regs
->save_srr0
+= BKPT_SIZE
;
222 getPerProc()->db_saved_state
= 0;
223 switch_to_old_console(previous_console_device
);
240 if (type
> TRAP_TYPES
)
241 db_printf("type %d", type
);
243 db_printf("%s", trap_type
[type
]);
244 db_printf(" trap, code=%x pc@%x = %x sp=%x\n",
245 code
, pc
, *(int *)pc
, sp
);
246 db_run_mode
= STEP_CONTINUE
;
259 pp
= pmap_find_phys(pmap
, (addr64_t
)va
);
261 if (pp
== 0) return(0); /* Couldn't find it */
263 pa
= ((addr64_t
)pp
<< 12) | (addr64_t
)(va
& 0xFFF); /* Get physical address */
269 * Read bytes from task address space for debugger.
285 pmap
= task
->map
->pmap
;
289 phys_src
= db_vtophys(pmap
, (vm_offset_t
)addr
);
291 db_printf("\nno memory is assigned to src address %08x\n",
297 phys_dst
= db_vtophys(kernel_pmap
, (vm_offset_t
)data
);
299 db_printf("\nno memory is assigned to dst address %08x\n",
305 /* don't over-run any page boundaries - check src range */
306 max
= round_page_64(phys_src
+ 1) - phys_src
;
309 /* Check destination won't run over boundary either */
310 n
= round_page_64(phys_dst
+ 1) - phys_dst
;
312 if (n
< max
) max
= n
;
315 phys_copy(phys_src
, phys_dst
, max
);
317 /* resync I+D caches */
318 sync_cache64(phys_dst
, max
);
326 * Write bytes to task address space for debugger.
342 phys_src
= db_vtophys(kernel_pmap
, (vm_offset_t
)data
);
344 db_printf("\nno memory is assigned to src address %08x\n",
350 /* space stays as kernel space unless in another task */
351 if (task
== NULL
) pmap
= kernel_pmap
;
352 else pmap
= task
->map
->pmap
;
354 phys_dst
= db_vtophys(pmap
, (vm_offset_t
)addr
);
356 db_printf("\nno memory is assigned to dst address %08x\n",
362 /* don't over-run any page boundaries - check src range */
363 max
= round_page_64(phys_src
+ 1) - phys_src
;
366 /* Check destination won't run over boundary either */
367 n
= round_page_64(phys_dst
+ 1) - phys_dst
;
372 phys_copy(phys_src
, phys_dst
, max
);
374 /* resync I+D caches */
375 sync_cache64(phys_dst
, max
);
389 unsigned int kern_addr
;
391 if (task
== kernel_task
|| task
== TASK_NULL
) {
392 if (kernel_task
== TASK_NULL
) return(TRUE
);
394 } else if (task
== TASK_NULL
) {
395 if (current_thread() == THR_ACT_NULL
) return(FALSE
);
396 task
= current_thread()->task
;
400 if(!pmap_find_phys(task
->map
->pmap
, (addr64_t
)addr
)) return (FALSE
); /* Fail if page not mapped */
401 n
= trunc_page_32(addr
+PPC_PGBYTES
) - addr
;
417 addr64_t physa
, physb
;
419 if ((addr1
& (PPC_PGBYTES
-1)) != (addr2
& (PPC_PGBYTES
-1))) /* Is byte displacement the same? */
422 if (task1
== TASK_NULL
) { /* See if there is a task active */
423 if (current_thread() == THR_ACT_NULL
) /* See if there is a current task */
425 task1
= current_thread()->task
; /* If so, use that one */
428 if(!(physa
= db_vtophys(task1
->map
->pmap
, (vm_offset_t
)trunc_page_32(addr1
)))) return FALSE
; /* Get real address of the first */
429 if(!(physb
= db_vtophys(task2
->map
->pmap
, (vm_offset_t
)trunc_page_32(addr2
)))) return FALSE
; /* Get real address of the second */
431 return (physa
== physb
); /* Check if they are equal, then return... */
434 #define DB_USER_STACK_ADDR (0xc0000000)
435 #define DB_NAME_SEARCH_LIMIT (DB_USER_STACK_ADDR-(PPC_PGBYTES*3))
437 boolean_t
db_phys_cmp(
442 db_printf("db_phys_cmp: not implemented\n");
455 register unsigned vaddr
;
456 register unsigned *kaddr
;
458 db_printf("db_search_null: not implemented\n");
463 unsigned char *getProcName(struct proc
*proc
);
469 register unsigned char *p
;
471 unsigned int vaddr
, kaddr
;
472 unsigned char tname
[33];
478 if(task
->bsd_info
) p
= getProcName((struct proc
*)(task
->bsd_info
)); /* Point to task name */
481 for(i
= 0; i
< 32; i
++) { /* Move no more than 32 bytes */
486 db_printf("%s", tname
);
488 else db_printf("no name");
492 db_machdep_init(void) {
493 #define KDB_READY 0x1
496 kdb_flag
|= KDB_READY
;
501 #define KDB_SAVE(type, name) extern type name; type name##_save = name
502 #define KDB_RESTORE(name) name = name##_save
504 #define KDB_SAVE(type, name) extern type name; type name/**/_save = name
505 #define KDB_RESTORE(name) name = name/**/_save
506 #endif /* __STDC__ */
508 #define KDB_SAVE_CTXT() \
509 KDB_SAVE(int, db_run_mode); \
510 KDB_SAVE(boolean_t, db_sstep_print); \
511 KDB_SAVE(int, db_loop_count); \
512 KDB_SAVE(int, db_call_depth); \
513 KDB_SAVE(int, db_inst_count); \
514 KDB_SAVE(int, db_last_inst_count); \
515 KDB_SAVE(int, db_load_count); \
516 KDB_SAVE(int, db_store_count); \
517 KDB_SAVE(boolean_t, db_cmd_loop_done); \
518 KDB_SAVE(jmp_buf_t *, db_recover); \
519 KDB_SAVE(db_addr_t, db_dot); \
520 KDB_SAVE(db_addr_t, db_last_addr); \
521 KDB_SAVE(db_addr_t, db_prev); \
522 KDB_SAVE(db_addr_t, db_next); \
523 KDB_SAVE(db_regs_t, ddb_regs);
525 #define KDB_RESTORE_CTXT() \
526 KDB_RESTORE(db_run_mode); \
527 KDB_RESTORE(db_sstep_print); \
528 KDB_RESTORE(db_loop_count); \
529 KDB_RESTORE(db_call_depth); \
530 KDB_RESTORE(db_inst_count); \
531 KDB_RESTORE(db_last_inst_count); \
532 KDB_RESTORE(db_load_count); \
533 KDB_RESTORE(db_store_count); \
534 KDB_RESTORE(db_cmd_loop_done); \
535 KDB_RESTORE(db_recover); \
536 KDB_RESTORE(db_dot); \
537 KDB_RESTORE(db_last_addr); \
538 KDB_RESTORE(db_prev); \
539 KDB_RESTORE(db_next); \
540 KDB_RESTORE(ddb_regs);
543 * switch to another cpu
550 if (cpu
< 0 || cpu
>= real_ncpus
|| !PerProcTable
[cpu
].ppe_vaddr
->debugger_active
)
552 db_set_breakpoints();
553 db_set_watchpoints();
557 db_clear_breakpoints();
558 db_clear_watchpoints();
560 if (debugger_cpu
== -1) {/* someone continued */
561 debugger_cpu
= cpu_number();
562 db_continue_cmd(0, 0, 0, "");
570 extern int (*PE_halt_restart
)(unsigned int type
);
578 boolean_t reboot
= TRUE
;
582 while ((c
= *cp
++) != 0) {
583 if (c
== 'r') /* reboot */
585 if (c
== 'h') /* halt */
588 if(!reboot
) halt_all_cpus(FALSE
); /* If no reboot, try to be clean about it */
590 if (PE_halt_restart
) return (*PE_halt_restart
)(kPERestartCPU
);
591 db_printf("Sorry, system can't reboot automatically yet... You need to do it by hand...\n");
602 extern unsigned int switch_debugger
;