summaryrefslogtreecommitdiff
path: root/sys/arch/m88k
AgeCommit message (Expand)Author
2007-01-13Bring back a <machine/frame.h> for m88k platforms, by splitting <machine/pcb.h>Miod Vallat
2007-01-12Change the secondary CMMU's data cache turn on so that do not hog theKenji Aoyama
2006-12-24Define PROC_PC. Then, since profiling information is being reported inMiod Vallat
2006-12-24Check for want_resched when processing AST and nowhere else. But then, whenMiod Vallat
2006-11-29Remove cpu_swapin() and cpu_swapout(), they are no longer necessary (exceptMiod Vallat
2006-11-22Be more generous with interrupt disabling in the scheduler.Miod Vallat
2006-11-22The softintr lock needs to be an __mp_lock, not a __cpu_simple_lock.Miod Vallat
2006-11-20In syscall handlers, fix copyin() failure path wrt locking macros.Miod Vallat
2006-11-19You know you're getting too old to code when you're finding stupid bugsMiod Vallat
2006-11-18On 88100 systems which do not need the xxx.usr instruction workaround,Miod Vallat
2006-11-18Rework the PFSR register analysis code on mvme88k: split it into fourMiod Vallat
2006-11-18Stop saving and restoring the current ipl in the pcb when switching processes,Miod Vallat
2006-11-18Unwaste two delay slots in kcopy().Miod Vallat
2006-11-18In mtx_leave(), jump to the leaf splx() instead of building a frame andMiod Vallat
2006-11-18No need to use xmem when unlocking a simple_lock.Miod Vallat
2006-11-17Move m88k memory copy and fill functions to libkern. The copy functions willMiod Vallat
2006-11-16Ratibibugle struct frame and <machine/frame.h>Miod Vallat
2006-11-10Avoid an unnecessary branch for byte-by-byte copyin() and copyout().Miod Vallat
2006-11-10Fetch syscall arguments beyond r9 with copyin() from the userland stack,Miod Vallat
2006-06-23consistantly count context switches on exit; miod@ okMichael Shalayeff
2006-06-04When VM_PHYSSEG_MAX is 1, use VM_PSTRAT_RANDOM for VM_PHYSSEG_STRAT, thisMiod Vallat
2006-06-01CACHE_GLOBAL is enforced at the APR level, no need to propagate it intoMiod Vallat
2006-06-01Better test for cacheability of the previous mapping in pmap_cache_ctrl()Miod Vallat
2006-05-25When looping over va ranges, do not compute the same sdt pointer more thanMiod Vallat
2006-05-21kvtopte() is not used anymore.Miod Vallat
2006-05-20Crank VM_MAX_ADDRESS to 4GB minus one page now that pmap will accept it.Miod Vallat
2006-05-20Make sure pmap copes with address wraparounds when operating on ranges.Miod Vallat
2006-05-20Directly pass a pmap to flush_atc_entry() instead of individual fields of it.Miod Vallat
2006-05-19INTSTACK_SIZE is not used anymore.Miod Vallat
2006-05-15Wrong routine for reserved vector 0x0f.Miod Vallat
2006-05-14Missing semicolon, found by deraadtMiod Vallat
2006-05-08Replace gazillions of badvaddr() or badwordaddr() calls with badaddr() calls.Miod Vallat
2006-05-08Optimize bsr + br sequences commonly found in the individual trap handlers,Miod Vallat
2006-05-08Clean the internal m88k trap type codes; while there, simplify andMiod Vallat
2006-05-07Move the userland stack at the top of the userland address space.Miod Vallat
2006-05-07Nuke TRACE_DEBUG code. Half of it was useless, and the other half was eitherMiod Vallat
2006-05-06On 88100-based systems, take the two hardwired BATC into account inMiod Vallat
2006-05-04scaled version of ld.d and st.d is obviously not a 64 bit transaction,Miod Vallat
2006-05-04Even better control register name display logic.Miod Vallat
2006-05-04Document the 88110 extended (80-bit) floating point format.Miod Vallat
2006-05-03Overhaul of the disassembler code, with random fixes, better conditionnalMiod Vallat
2006-05-03Fix a (documented) logic botch in inst_load().Miod Vallat
2006-05-02Replace db_{disable,enable}_interrupts with expanded version of themselves,Miod Vallat
2006-04-26In vmapbuf(), instead of invoking pmap_cache_ctrl() for each page, postponeMiod Vallat
2006-04-26In pmap_cache_ctrl(), do not flush cache if the previous mapping wasMiod Vallat
2006-04-17Save pointers to up to four CMMU PFSR registers into the cpu_info structure.Miod Vallat
2006-04-15Simplify MMU type printing.Miod Vallat
2006-04-15nmihand() is mvme88k only, move it out of m88k common area.Miod Vallat
2006-04-09On MVME188 systems with more than two CMMUs par CPU, do not honor theMiod Vallat
2006-04-09#ifdef lint wraps for va_startTheo de Raadt