Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-07-20 | Forgot to put this chunk in. | Miod Vallat | |
2004-07-20 | Let the boot device detection code handle secondary SCSI buses. | Miod Vallat | |
2004-07-20 | Work in progress to support daughterboards. The driver now will attach a | Miod Vallat | |
second scsi bus if a SCSI daughterboard is present, and is supposed to know about this and send scsi commands to the appropriate bus. Unfortunately probing the second bus does not report any device at the moment (though you can boot off it), but I can't see the issue at the moment. Thanks to tdeval@ for lending a few boards equipped with daughterboards for testing. | |||
2004-07-20 | Use sc_print_addr for error messages. | Miod Vallat | |
2004-07-19 | Recognize the daughter board type, if any - but it is not supported yet. | Miod Vallat | |
2004-07-19 | After a work queue has been aborted and the abort has been acknowledged, | Miod Vallat | |
do not keep setting the A.A. bit in further queue control operations, as advised by the manual. | |||
2004-07-19 | When we want to thaw all work queues we care about, do it correctly. | Miod Vallat | |
2004-07-19 | Direct REQUEST_SENSE commands to the correct target, instead of always | Miod Vallat | |
target zero. This makes targets other than zero working now... Spotted by nick@ | |||
2004-07-18 | Typos | Miod Vallat | |
2004-07-13 | errno changes, lib major version bumps, and general flag day | Marco S Hyman | |
To build you must: cd /usr/src && make obj && make includes cd lib/libc && make depend && make && NOMAN=1 sudo make install cd /usr/src && make build | |||
2004-07-13 | Remove compiler options workarounds for savectx breakage. | Miod Vallat | |
2004-07-02 | Make page-aligned variable contiguous. Saves almost one page of data. | Miod Vallat | |
2004-07-02 | Switch mvme88k to evcount, but keep maintaining intrcnt[] too for now. | Miod Vallat | |
2004-07-02 | Disable a -O2 specific optimization which causes kern_fork (and probably other | Miod Vallat | |
files) to be miscompiled, until the problem is fixed in the compiler. | |||
2004-07-02 | Be sure to fill intrhand structures correctly. | Miod Vallat | |
2004-07-02 | Remove unused extra intrhand. | Miod Vallat | |
2004-06-26 | When altering mmu registers, disable interrupts rather than splhigh(). | Miod Vallat | |
2004-06-24 | Typos in DEBUG code. | Miod Vallat | |
2004-06-23 | Assorted night cleanups: | Miod Vallat | |
- only compile debug and ddb-specific code if option DEBUG or option DDB. - shorten code path in 88100 case. - do not enable interrupts before the C handler is called, for the 88110 NMI trap. | |||
2004-06-23 | Remove useless debug code. | Miod Vallat | |
2004-06-23 | When servicing 88110 exceptions, reset dsr and isr as fast as possible. | Miod Vallat | |
While there, simplify badaddr() handling on 88110. | |||
2004-06-23 | Since the NMI interrupt source on 88110 is, well, non maskable, it is | Miod Vallat | |
possible to receive it during autoconf. In this case, do not enable _other_ interrupts while we are servicing it. Note that, on the MVME197, since we are using the BUG for console output during autoconf, it is still possible to abort the bootstrap and return to the BUG with the NMI/ABORT switch. | |||
2004-06-22 | During exception processing, we are not supposed to fault immediately | Miod Vallat | |
after re-enabling the FPU (unless exception handling code is suffering from bugs, of course). Should this happen, invoke the error fault handler, but at least clear the exception state first, so that it gets a chance to run. | |||
2004-06-22 | Change various macro and symbol names in order to have recognizable *100* | Miod Vallat | |
and *110* names for processor-dependent code. No functional change. | |||
2004-06-22 | Turn m88k_protection() into a macro again, compensating for 88110 | Miod Vallat | |
quirks locally where necessary; pmap_enter() does most of the dirty work. | |||
2004-06-22 | After 88110 exception processing, do not reset the in-frame [di][lp]ar | Miod Vallat | |
values, they won't be put back to registers anyways... | |||
2004-06-22 | On 88110, simplify enip processing: | Miod Vallat | |
- always fetch its value when building trapframe, it is faster than only doing it after checking if it will have a meaningful value. - don't bother setting it to a safe value if we change exip to a non-delayslot address. | |||
2004-06-22 | Do not access [id][pl]ar registers from C code - we only care about their | Miod Vallat | |
values in trapframes. | |||
2004-06-19 | Share common ddb files accross m88k platforms. | Miod Vallat | |
2004-06-10 | Fix a logic error in sglist creation. | Miod Vallat | |
2004-05-26 | Define correct EOF and EOL characters in the default firmware termios | Miod Vallat | |
structure. | |||
2004-05-26 | Use physical addresses as seen in the A24 MVME332XT address space, this | Miod Vallat | |
allows the driver to really don't care about its VME address and simplifies some code. | |||
2004-05-25 | Make bpp_send() return the packet error code when invoked with NOWAIT. | Miod Vallat | |
2004-05-25 | Make this driver aware of non-1:1 mappings. | Miod Vallat | |
This currently mimcs the existing code, which can be cleaned up further. | |||
2004-05-23 | Put back the fixed NCPUS == 1 version of flush_atc_entry(). | Miod Vallat | |
2004-05-23 | Simplify iomap_mapin(). | Miod Vallat | |
2004-05-23 | Nuke kvtop(), preserving a private copy in mvme88k vs(4) for now. | Miod Vallat | |
2004-05-22 | Reset the board during probe. As a result, we can now honor the SCSI | Miod Vallat | |
controller ID jumpers, instead of reprogramming the board to 7 every time. | |||
2004-05-22 | Safer work queue thaw sequence. | Miod Vallat | |
2004-05-22 | Convert to bus_space; but it still uses kvtop()... | Miod Vallat | |
2004-05-21 | More cleaning, better registers programming, better error messages. | Miod Vallat | |
2004-05-20 | More "can't help but clean things while reading". | Miod Vallat | |
2004-05-20 | General cleanup before attempting to move towards bus_space and bus_dma. | Miod Vallat | |
Also fix an arithmetic bug which caused almost no harm by luck. | |||
2004-05-20 | Properly flush instruction cache for ptrace(PT_WRTIE_{DI}, ...) on powerpc | Mark Kettenis | |
and m68k. ok drahn@, millert@ | |||
2004-05-19 | No need to force a kernel mapping for the sram, the sram driver will do it | Miod Vallat | |
if necessary. | |||
2004-05-17 | KNF and minor cleaning. | Miod Vallat | |
2004-05-16 | Simplify bugtty_chkinput(), from mvmeppc. | Miod Vallat | |
2004-05-09 | Eliminate verbosity parameter to scsi_print_sense and the associated | Kenneth R Westerback | |
chunk of code. It was never executed unless you were debugging a mvmex8k 'vs' device. ok miod@ (mvmex8k bits) marco@ deraadt@ | |||
2004-05-08 | Do not duplicate fragments from <machine/conf.h>. | Miod Vallat | |
2004-05-07 | Replace the old ssh(4) NCR53C710 scsi driver with a pcctwo attachment for | Miod Vallat | |
the MI osiop(4) driver. This improves performance very slighly and should also improve reliability. Tested on 25MHz (50MHz osiop) and 33MHz (66MHz osiop) MVME187 boards. |