summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/ddb
AgeCommit message (Collapse)Author
2004-01-02When both cmmu_dofoo() and cmmu_remote_dofoo() exist, kill the first one,Miod Vallat
and rename the second one to the first one, i.e. have the cmmu_dofoo() functions always take a cpu# parameter. No functional change, simply makes code more readable and saves a few call frames.
2003-12-21Switch db_expr_t from int to long, per consistency with other platforms.Miod Vallat
2003-12-19Pass -Wformat, and silence a few vme* debug printf.Miod Vallat
2003-11-07adress -> address, and a few more; all from Jonathon Gray;Jason McIntyre
(mvme68k/mvme88k) vs.c and (vax) if_le.c ok miod@ isakmpd ones ok ho@
2003-10-11Nuke trailing whitespace.Miod Vallat
2003-10-05Bang head against wall, unbreak ddb, do not collect $2000, and go to sleep.Miod Vallat
2003-10-05De-registerMiod Vallat
2003-10-05Correct db_{read,write}_bytes prototypes and use the official ones.Miod Vallat
2003-10-03Use the commen DMT constants, and try to provide at least as many informationMiod Vallat
in "machine frame" than regdump() does. XXX this whole ddb/ directory needs a huge KNF spanking, badly
2003-09-16Clean <machine/db_machdep.h> of unused material. Also, let this file beMiod Vallat
includable even without option DDB, in which case it will only define the PC_REGS(), inst_return() and inst_call() macros; this removes the need to declare them a second time in trap.c.
2003-08-06Remove some double semicolons (hmm, do two semis equal a maxi?).Todd C. Miller
I've skipped the GNU stuff for now. From Patrick Latifi.
2002-12-09From Andrushock, s/sucess/success/gTodd C. Miller
2002-05-18Rename the MD db_stack_trace_cmd to db_stack_trace_print. Add an argumentArtur Grabowski
that specifies which printf funciton it should use. Implement db_stack_trace_cmd in MI code. Thanks to miod@ for all the tests.
2002-05-16Add a an argument to db_printsym that specifies the printf functionArtur Grabowski
we'll use for printing the information. miod@ ok
2002-03-14Final __P removal plus some cosmetic fixupsTodd C. Miller
2002-03-14First round of __P removal in sysTodd C. Miller
2001-12-22masive cmmu overhaul. function pointers now control cmmu functionalitySteve Murphree
instead of case statements based on cpu type.
2001-12-22mc88110 support in ddb. Bring in bit definitions.Steve Murphree
We can support hardware sstep for mc88110 and software sstep for mc88100.
2001-12-22rename m882xx.h to m8820x.hSteve Murphree
2001-12-16Revert the mvme88k to 20011212. Recent changes had not been merged correctly,Miod Vallat
and I am fed up with dissecting diffs to put back code that disappeared. This will likely be fixed shortly.
2001-12-14Repair MVME187 after MVME197 merge.Steve Murphree
2001-12-13Support for MVME197 completed. Fix SPL defs.Steve Murphree
2001-11-27Adapt to include files changes.Miod Vallat
2001-11-27Use symbolic constants to identify ddb traps.Miod Vallat
Fix a comment as well.
2001-11-09Ouch, more variables declarations in .h files lacking ``extern'' safetyMiod Vallat
belts.
2001-11-06Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.Miod Vallat
(Look ma, I might have broken the tree)
2001-09-23rename kdb_init() to db_machine_init().Miod Vallat
2001-09-20occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok
2001-08-31There's no point having a Debugger() clone here.Miod Vallat
2001-08-26Add prototypes, fix compilation warnings, random style fixes.Miod Vallat
2001-08-24Get rid of the ugly db_printf() wrappers, as well as of theMiod Vallat
``machine registers'' command, which prints nothing more than ``show registers''.
2001-07-01Enable the ``machine foo'' commands under ddb.Miod Vallat
Add a ``machine prom'' command, which returns to the BUG, like mvme68k has.
2001-06-08Change the paddr_t pmap_extract(struct pmap *, vaddr_t) interface toArtur Grabowski
boolean_t pmap_extract(struct pmap *, vaddr_t, paddr_t *). Matches NetBSD. Tested by various people on various platforms.
2001-03-16Cleanup, get badwordaddr() from <machine/locore.h>Miod Vallat
2001-03-16KNF, warning hunting.Miod Vallat
2001-03-09kernel will compile with -Werror. Added intr.hSteve Murphree
2001-03-08Some warning hunting.Miod Vallat
2001-03-07Correct argument order for branch_taken's callback function.Miod Vallat
2001-02-01Major changes to get MVME188 working. More header and code cleanups. TheSteve Murphree
kernel is tested on MVME188A/2P256 and MVME188A/1P64.
1999-02-09Added kernel support for user debugging. Fixed file ID'sSteve Murphree
1997-03-21Yet more DDB type correctnessNiklas Hallqvist
1997-03-03Cleanup after import. This also seems to bring up the current version.Dale S. Rahn
1997-03-03This is a remove to get rid of the old mvme88k port which was incompleteDale S. Rahn
to replace it with a working version. The kernel compiles and works at least. The new version will be imported shortly.
1995-10-18initial 88k import; code by nivas and based on mach luna88kTheo de Raadt