summaryrefslogtreecommitdiff
path: root/sys/arch/m88k
AgeCommit message (Expand)Author
2007-12-02Since the 88110 doesn't disable the FPU when handling an exception (and doesMiod Vallat
2007-12-02Sort and clean definitions. No functional changes.Miod Vallat
2007-12-02When setting up the vectors page, do not put a nop as the first instructionMiod Vallat
2007-12-02Provide faster bcopy() and bzero() routines for pmap_copy_page() andMiod Vallat
2007-12-02Provide a specific rw_cas() function for MP kernels, simulating a reallyMiod Vallat
2007-12-02Rework the __mp_lock code to not spin at spllock(), kinda similar to theMiod Vallat
2007-12-02Change DAE processing so that the C code no longer needs the EF_xxx definesMiod Vallat
2007-11-25libkern, begone. Move to a new mechanism where config(8)'s "file"Theo de Raadt
2007-11-25spelling fixes, from Martynas Venckus;Jason McIntyre
2007-11-24Do not mark any page as global on monoprocessor kernels if running on aMiod Vallat
2007-11-24Slightly faster cache flushing operations on MP systems.Miod Vallat
2007-11-22Introduce an inline function to skip an instruction on 88110 and use itMiod Vallat
2007-11-22A decent workaround for errata #16. I have verified it gets triggered, theMiod Vallat
2007-11-22Do not reenable interrupts for netsted interrupts if interrupts wereMiod Vallat
2007-11-22Do not bother saving the fault address registers if the fault statusMiod Vallat
2007-11-22Do not redirect exception occuring when enabling the fpu to the error handler,Miod Vallat
2007-11-22Do not save a copy of the previous exception frame in a fixed memory location.Miod Vallat
2007-11-22On 88110, skip the faulting instruction in double_reg_fixup() if it canMiod Vallat
2007-11-22Quote a few errata to explain why odd things are done in oddly ways on 88110.Miod Vallat
2007-11-22Remove the cpu parameter from cmmu_set_sapr(), since it is only invokedMiod Vallat
2007-11-22Remove explicit tlb flush from vmapbuf(), since pmap_enter() will takeMiod Vallat
2007-11-22Add an extra parameter to pmap_remove_pte() to control whether it willMiod Vallat
2007-11-22Move the cmmu lock to 88200-specific code. 88110 MP code will use ipisMiod Vallat
2007-11-21TypoMiod Vallat
2007-11-21Don't bother flushing caches in pmap_{copy,zero}_page(), since our cachesMiod Vallat
2007-11-21Move pmap_set_modify() prototype to a header fileMiod Vallat
2007-11-21Move external interrupt and ast handling from m881[01]0_trap() to theirMiod Vallat
2007-11-21A really horrible fix for sigreturn on 88110. This will probably be replacedMiod Vallat
2007-11-20A line got lost while hand-editing diffs...Miod Vallat
2007-11-20On 88110, use a shorter path in pmap_is_modified(), since we performMiod Vallat
2007-11-20Move 88110 trap-on-write processing from two duplicated sections in trap.c toMiod Vallat
2007-11-20Fix MP locking issues when processing data access faults on 88110, similarMiod Vallat
2007-11-20Overhaul of the pmap debug messages. They now provide slightly betterMiod Vallat
2007-11-20Fix setregs() on 88110, so that binaries do not skip their first instruction.Miod Vallat
2007-11-20In data_access_emulation(), make sure that if we want the pipeline replayMiod Vallat
2007-11-17Replace many ``unsigned'' variables with ``unsigned int'', ``u_int'' or otherMiod Vallat
2007-11-17Rework {get,set,raise}ipl() to minimize psr modification, especially onMiod Vallat
2007-11-15Check for curcpu()->ci_softintr being nonzero before invoking dosoftint(),Miod Vallat
2007-11-15Make a few end-of-trap-handling symbols global, to get better ddb traces.Miod Vallat
2007-11-15Resolve the struct trapframe tf_mode/tf_flags duality by getting rid ofMiod Vallat
2007-11-15Stop referring the initial kernel stack as the ``interrupt stack''. It'sMiod Vallat
2007-11-14Cache curcpu() value into a local variable when it is used more than once inMiod Vallat
2007-11-14Merge the ci_alive and ci_primary boolean values of struct cpu_info intoMiod Vallat
2007-11-14When processing a data access fault, keep the kernel lock while invokingMiod Vallat
2007-11-14When servicing an exception, do not enable interrupts if they were notMiod Vallat
2007-11-14Let ``machine cpu #'' hop to the given cpu.Miod Vallat
2007-11-11Give more information in ``machine cpu'' under ddb.Miod Vallat
2007-11-11In dma_cachectl(), flush unconditionnaly on all processors, regardless of theMiod Vallat
2007-11-09In dma_cachectl*(), try and perform fewer remote processor operations wheneverMiod Vallat
2007-11-09Do not bother checking for curproc != NULL if we know a trap comes fromMiod Vallat