/* $NetBSD: db_machdep.c,v 1.9 2013/01/05 15:04:00 christos Exp $ */ /* * Copyright (c) 1996 Mark Brinicombe * * Mach Operating System * Copyright (c) 1991,1990 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. */ #include __KERNEL_RCSID(0, "$NetBSD: db_machdep.c,v 1.9 2013/01/05 15:04:00 christos Exp $"); #include #include #include #include #include #include #include #include #include #include void db_show_frame_cmd(db_expr_t addr, bool have_addr, db_expr_t count, const char *modif) { struct trapframe *frame; if (!have_addr) { db_printf("frame address must be specified\n"); return; } frame = (struct trapframe *)addr; db_printf("frame address = %08x ", (u_int)frame); db_printf("r0 =%08x r1 =%08x r2 =%08x r3 =%08x\n", frame->tf_r0, frame->tf_r1, frame->tf_r2, frame->tf_r3); db_printf("r4 =%08x r5 =%08x r6 =%08x r7 =%08x\n", frame->tf_r4, frame->tf_r5, frame->tf_r6, frame->tf_r7); db_printf("r8 =%08x r9 =%08x r10=%08x r11=%08x\n", frame->tf_r8, frame->tf_r9, frame->tf_r10, frame->tf_r11); db_printf("r12=%08x r13=%08x r14=%08x r15=%08x\n", frame->tf_r12, frame->tf_r13, frame->tf_r14, frame->tf_r15); } void db_bus_write_cmd(db_expr_t addr, bool have_addr, db_expr_t count, const char *modif) { db_expr_t datum; bus_space_tag_t iot = &iobus_bs_tag; /* XXX */ bus_space_handle_t ioh; if (!have_addr) db_error("target address must be specified"); bus_space_map(iot, addr, 1, 0, &ioh); while (db_expression(&datum)) { switch (*modif) { case 'b': bus_space_write_1(iot, ioh, 0, datum); break; case '\0': case 'h': bus_space_write_2(iot, ioh, 0, datum); break; default: db_error("bad modifier"); } } bus_space_unmap(iot, ioh, 1); db_skip_to_eol(); } void db_irqstat_cmd(db_expr_t addr, bool have_addr, db_expr_t count, const char *modif) { irq_stat(db_printf); }