Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-02 | Mention that, on most 187 and 197, if the SCSI controller is not the boot | Miod Vallat | |
device and no boot from it has been attempted at the prom, it will not get detected. Unfortunately, right now I don't know how to ``warm'' the chip. This also will need to be documented in the insallation notes at some point... | |||
2004-01-02 | Better openings value computation. | Miod Vallat | |
For now, the result is the same as the hard-coded constant it used to be, due to a pessimistic NUM_IOPB value. This will change. | |||
2004-01-02 | Relaxed dependencies, and do not undef DEBUG. | Miod Vallat | |
2004-01-01 | Oops, commited from the wrong tree. | Miod Vallat | |
2004-01-01 | Let this attach correctly. | Miod Vallat | |
2003-12-30 | Add support for all six Motorola-supported configurations of MVME376 | Miod Vallat | |
cards. The original code would only work with the first configuration, as the etherbuf addresses grow _downwards_ from 0xfd6c0000 with Motorola's jumper configuration. Reference: MVME376 Ethernet Communication Controller User's Manual (MVME376/D1) While there, do not panic() on failure to attach, but simply print an error message and return. XXX Proper care of the memory mapping still needs to be written, as the memory XXX space of the MVME376 is always outside extio. | |||
2003-12-29 | correct probe console printf; miod ok | Theo de Raadt | |
2003-12-28 | Having vmel and vmes keep another pointer to their parent in their softc is | Miod Vallat | |
just plain silly! | |||
2003-12-28 | dma_cachectl() takes a va and computes the pa from it, no need to invoke it | Miod Vallat | |
a second time with the pa... | |||
2003-12-27 | Replace the MVME376 driver from a homemade and dusty if_ve driver to | Miod Vallat | |
a ``regular'' if_le driver, sharing the common am7990 code. | |||
2003-12-27 | Handle odd sizes in d16_bcopy() and d16_bzero(). | Miod Vallat | |
2003-12-27 | Do not print vaddr in vme attachments. | Miod Vallat | |
2003-12-27 | Basic cleaning and KNF; no functional change. | Miod Vallat | |
2003-12-26 | Merge the attachment part and the real work part of the SCSI drivers in | Miod Vallat | |
one file per driver. | |||
2003-12-25 | Provide common D16 vmespace block access functions, instead of vs and vx each | Miod Vallat | |
rolling their own. Use them more cleverly in vx, in order to get the driver to at least attach and frob chips. Not tested besides multiuser boot (hence ttyflags -a), and checking cu(1) connects. More testing to come once I remember where I have hidden the 332XT transition module... | |||
2003-12-22 | Correctly handle vme attachments which specify a larger ca_len size than | Miod Vallat | |
initially expected. | |||
2003-12-19 | Pass -Wformat, and silence a few vme* debug printf. | Miod Vallat | |
2003-12-12 | Provide a better delay() resolution on 188. | Miod Vallat | |
2003-11-18 | Remove the duplicated code in ssh_checkintr() - checked against mvme68k. | Miod Vallat | |
2003-11-18 | In ssh_checkintr(), better check pointers for NULL before they | Miod Vallat | |
are dereferenced. XXX Looks like there are duplicated sections in this function. This driver needs a huge cleanup anyway... | |||
2003-11-09 | Typos; Jonathan Gray | 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-11-03 | spelling fixes (in the comments) | David Krause | |
2003-10-23 | No dependency on NDART needed here. | Miod Vallat | |
2003-10-13 | Do not define LEDEBUG by default. | Miod Vallat | |
2003-10-11 | Nuke trailing whitespace. | Miod Vallat | |
2003-10-11 | Merge sclock and clock pseudo-devices. | Miod Vallat | |
2003-10-08 | Sync VMEChip2 timer usage with mvme68k (i.e. make it slightly more sane). | Miod Vallat | |
Also, use it even when the 1x7 is not a system controller - this does not matter. | |||
2003-10-08 | delay() is actually a void function. | Miod Vallat | |
2003-10-06 | More vm_offset_t removal I forgot to check in; spotted by deraadt@ | Miod Vallat | |
2003-10-05 | Kill vm_offset_t and vm_size_t, in favor of the [pv]addr_t and [pv]size_t | Miod Vallat | |
typedefs. | |||
2003-10-05 | De-register | Miod Vallat | |
2003-10-05 | typos | Miod Vallat | |
2003-10-03 | Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need for | Miod Vallat | |
separate tty registering is gone now that sparc has switched to wscons, and this makes the code less error-prone. Also, remove tests for ttymalloc() failure, since it uses M_WAITOK. ok millert@ deraadt@, tested by various people as well besides me... | |||
2003-09-29 | avaliable -> available | Miod Vallat | |
2003-09-28 | Clean various MVME188 related routines, fixing typos and removing unnecessary | Miod Vallat | |
diagnostic code in the process. | |||
2003-09-28 | Be less verbose, unless option DEBUG, when the nvram battery is toast. | Miod Vallat | |
2003-09-28 | Properly acknowledge MVME188 clock interrupts. | Miod Vallat | |
2003-09-28 | Be volatile enough to start the clock on 188. | Miod Vallat | |
2003-09-28 | Be sure to invoke tty_attach() after ttymalloc(). | Miod Vallat | |
2003-09-22 | Off-by-ones, from aaron@ | Miod Vallat | |
2003-09-16 | Provide more information about the CPU/CMMU configuration in the dmesg | Miod Vallat | |
output. Also, if the board configuration parameter area is invalid, warn the user and assume safe values - this is likely caused by a dead NVRAM battery. | |||
2003-09-01 | Prevent userland from invoking BUG system calls, by saving the initial BUG | Miod Vallat | |
trap vector contents, putting the bugtrap() stub in place, and switching back and forth between them when the kernel needs to invoke BUG functions. | |||
2003-08-21 | Bounds checking, prevents ioctls to non-existing dart devices from panic'ing | Miod Vallat | |
the kernel; fixes a ttyflags botch reported by Luke Th. Bullock | |||
2003-08-15 | change arguments to suser. suser now takes the process, and a flags | Ted Unangst | |
argument. old cred only calls user suser_ucred. this will allow future work to more flexibly implement the idea of a root process. looks like something i saw in freebsd, but a little different. use of suser_ucred vs suser in file system code should be looked at again, for the moment semantics remain unchanged. review and input from art@ testing and further review miod@ | |||
2003-08-12 | Use spltty() instead of rolling our own expanded version. | Miod Vallat | |
2003-06-04 | more term 3 & 4 from various developers, with permission of course | Theo de Raadt | |
2003-06-04 | more term 3 and 4 changes | Theo de Raadt | |
2003-06-03 | terms 3 & 4 cleanup based on "terms" file | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. |