Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-09-30 | Introduce sparc-like CPU_ISFOO macros, to short-circuit evaluations when | Miod Vallat | |
compiling for one flavour only. This makes code slightly smaller on all m88k-based platforms (my roughly 1KB), and saves more than meets the eye on luna88k, which is m88100-based. | |||
2004-01-23 | Get rid of a few (mostly DDB related) unused defines and macros. | Miod Vallat | |
2004-01-14 | Some MC8820x operation cleaning: | Miod Vallat | |
- define more constants and macros for readability. Especially cache initialization suddently becomes more readable. - after every flush operation, wait for the operation to complete by accessing the status register, before returning. | |||
2004-01-13 | Let frame_is_sane() be quiet on demand, then fix and enable again frame search. | Miod Vallat | |
2004-01-12 | Shrink the reg structure, for it to only contain registers (eh), and make | Miod Vallat | |
the remaining fielhs only available in struct trapframe. This has the additional benefit of preventing smarty-pants from altering the frame a bit too easily from ddb, at the expense of a few ugly casts in ddb. | |||
2004-01-12 | Get rid of that ugly m88100_saved_state structure, use trapframe everywhere | Miod Vallat | |
instead. Allow struct reg and struct trapframe to live different lives and grow separately. Righty now they are still the same, and code expects a trapframe to always start with a struct reg. This may change... | |||
2004-01-09 | Constify trap names, and a few cleanings to the trap() functions. | Miod Vallat | |
While there, use raisespl() in splassert to win a few cycles when the check fails. | |||
2004-01-07 | Constify, remove db_task_name() Mach leftover, and fix an hilarious typo | Miod Vallat | |
in db_interface.c comments while there. | |||
2004-01-07 | Remove duplicate definitions with MI ddb headers, and fix db_stack_trace_print | Miod Vallat | |
prototype in the process. | |||
2004-01-02 | When 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-21 | Switch db_expr_t from int to long, per consistency with other platforms. | Miod Vallat | |
2003-12-19 | Pass -Wformat, and silence a few vme* debug printf. | Miod Vallat | |
2003-11-07 | adress -> 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-05 | Bang head against wall, unbreak ddb, do not collect $2000, and go to sleep. | Miod Vallat | |
2003-10-05 | Correct db_{read,write}_bytes prototypes and use the official ones. | Miod Vallat | |
2003-10-03 | Use the commen DMT constants, and try to provide at least as many information | Miod Vallat | |
in "machine frame" than regdump() does. XXX this whole ddb/ directory needs a huge KNF spanking, badly | |||
2003-09-16 | Clean <machine/db_machdep.h> of unused material. Also, let this file be | Miod 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. | |||
2002-03-14 | Final __P removal plus some cosmetic fixups | Todd C. Miller | |
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2001-12-22 | masive cmmu overhaul. function pointers now control cmmu functionality | Steve Murphree | |
instead of case statements based on cpu type. | |||
2001-12-22 | mc88110 support in ddb. Bring in bit definitions. | Steve Murphree | |
We can support hardware sstep for mc88110 and software sstep for mc88100. | |||
2001-12-22 | rename m882xx.h to m8820x.h | Steve Murphree | |
2001-12-16 | Revert 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-14 | Repair MVME187 after MVME197 merge. | Steve Murphree | |
2001-12-13 | Support for MVME197 completed. Fix SPL defs. | Steve Murphree | |
2001-11-27 | Adapt to include files changes. | Miod Vallat | |
2001-11-09 | Ouch, more variables declarations in .h files lacking ``extern'' safety | Miod Vallat | |
belts. | |||
2001-11-06 | Replace 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-23 | rename kdb_init() to db_machine_init(). | Miod Vallat | |
2001-09-20 | occured->occurred | Mike Pechkin | |
idea from deraadt@ via NetBSD millert@ ok | |||
2001-08-31 | There's no point having a Debugger() clone here. | Miod Vallat | |
2001-08-26 | Add prototypes, fix compilation warnings, random style fixes. | Miod Vallat | |
2001-08-24 | Get rid of the ugly db_printf() wrappers, as well as of the | Miod Vallat | |
``machine registers'' command, which prints nothing more than ``show registers''. | |||
2001-07-01 | Enable the ``machine foo'' commands under ddb. | Miod Vallat | |
Add a ``machine prom'' command, which returns to the BUG, like mvme68k has. | |||
2001-06-08 | Change the paddr_t pmap_extract(struct pmap *, vaddr_t) interface to | Artur Grabowski | |
boolean_t pmap_extract(struct pmap *, vaddr_t, paddr_t *). Matches NetBSD. Tested by various people on various platforms. | |||
2001-03-16 | KNF, warning hunting. | Miod Vallat | |
2001-03-09 | kernel will compile with -Werror. Added intr.h | Steve Murphree | |
2001-03-08 | Some warning hunting. | Miod Vallat | |
2001-02-01 | Major changes to get MVME188 working. More header and code cleanups. The | Steve Murphree | |
kernel is tested on MVME188A/2P256 and MVME188A/1P64. | |||
1999-02-09 | Added kernel support for user debugging. Fixed file ID's | Steve Murphree | |
1997-03-03 | Cleanup after import. This also seems to bring up the current version. | Dale S. Rahn | |
1997-03-03 | This is a remove to get rid of the old mvme88k port which was incomplete | Dale 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-18 | initial 88k import; code by nivas and based on mach luna88k | Theo de Raadt | |