summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
1996-01-14sync w/ netbsd: splzs -> spl4 from splhigh. Remove bogus DEBUG.briggs
1996-01-14Add hooks for custom audio players. This is the original untouchedNiklas Hallqvist
kernel diffs from Tim Newsham <newsham@hookomo.aloha.net> found in his well-known audio LKM kit.
1996-01-14netbsd -> bsdNiklas Hallqvist
1996-01-14The sun mmu is very broken, and we all can thank crashme fordavem
helping me find this bug. On execution of an atomic load/store instruction the chip will only say that a read fault is happening, we then load up a readonly translation to the accessed page, and we get the fault again still showing a read-fault. We end up faulting in a loop forever and the process appears to be completely stuck. The algorithm to fix this problem goes like this. If we get a non-text fault, and the fault type is VM_PROT_READ, and the SER_PROT bit is set in the syncronous fault error register, we take a peek at the instruction at pc. If this instruction is indeed an ldstub or a swap variant we or in VM_PROT_WRITE to the fault type.
1996-01-14Fix typoNiklas Hallqvist
1996-01-13Don't issue a linked command to check for a device's support of them.briggs
Instead, check the inquiry_flag. Also allow enabling and disabling linked command issuance on target-by-target basis.
1996-01-13sync with sparc:chuck
- move disk_attach() to before reading the disk label as per Jason. otherwise we are reading into an unallocated buffer (oops!)
1996-01-13 - call mapiodev() with sizeof(struct xdc/xyc) rather than ra_len (which ischuck
zero since xdcmatch/xycmatch no longer sets it). [if you call mapiodev() with a zero size it will reuse the KVA it returns, swiping the device out from under you!] - make xdc/xyc->iopbase point in the kernels DVMA space rather than at the normal malloc'd KVA. this isn't compatable with sun4m [doesn't have a kernel DVMA space] and will need to be changed later (XXX). - move disk_attach() to before reading the disk label as per Jason. otherwise we are reading into an unallocated buffer (oops!)
1996-01-13have mapdev() panic if size == 0 to be safe (catches config errors)chuck
1996-01-12we no longer need to add in the offset to the mapped VA to get the correctchuck
device address (bus_tmp, bus_map, and mapiodev now do this for us). also, we handle all our mappings, so don't have obio.c do any for us (i.e. don't set ra->ra_len in xycmatch). nuke uneeded variable in match function.
1996-01-12dmamatch never added in the offset for the dma registers to the VA,chuck
and thus probed the wrong address on the 4/300 (but it worked because it was probing the esp0 registers!). now that bus_tmp() adds the offset in for us [as of obio 1.15] i discoved that a byte access to the dma registers is not allowed. so, i've change probeget to use a word access.
1996-01-12improved handling of mapping of devices who's registers do not reside onchuck
page boundaries: - change bus_tmp() to include the offset from the start of page in the returned KVA [rather than forcing each driver to add it back in individually] - changed bus_map() to include the offset from the start of page in the the returned value if a mapping is found in the PROM's KVA area - clarified a few comments
1996-01-12change mapdev() so that it includes the offset from the start of thechuck
page in the virtual address it returns.
1996-01-12remove DEBUGTheo de Raadt
1996-01-12from netbsd:Theo de Raadt
Kludge around a case where a flaky HP-IB disk might be slow to respond to the identification request in rdmatch(). Similar in spirit to a patch from Jason Downs (written eons ago), but limited to the broken device we're trying to reach. My patch tested (and fixed :-) by Herb Peyerl.
1996-01-12from netbsd; Fix declaration of hilqfree(), from <hag@wizardz.com>,Theo de Raadt
PR #1918.
1996-01-12from netbsd;Theo de Raadt
New generic disk framework. Highlights: New metrics handling. Metrics are now kept in the new `struct disk'. Busy time is now stored as a timeval, and transfer count in bytes. Storage for disklabels is now dynamically allocated, so that the size of the disk structure is not machine-dependent. Several new functions for attaching and detaching disks, and handling metrics calculation. Old-style instrumentation is still supported in drivers that did it before. However, old-style instrumentation is being deprecated, and will go away once the userland utilities are updated for the new framework. For usage and architectural details, see the forthcoming disk(9) manual page.
1996-01-12SIGBUS is an alignment fault. SIGSEGV is an access violationTheo de Raadt
1996-01-12disable ddb, enable vndTheo de Raadt
1996-01-11from leo; Fix the same typo in all files. Yanking is soooo beautiful....Theo de Raadt
1996-01-11from netbsd; VM86 support, by John Kohl, touched up a bit by charlesTheo de Raadt
1996-01-09Go ahead and look for the sonic--no problem if we don't find it.briggs
1996-01-09Add first guesses for a few more machines.briggs
Also set sonic flag for MACH_CLASSQ.
1996-01-09Add some more machine defines.briggs
1996-01-09from netbsd:Theo de Raadt
Update a kludge from 4.4bsd/pmax: DECstation PROMs force the clock to be in 1972 or 1973. If the clock is set to the actual time, the PROM appears to reset the chip date to 1972 at each reboot. Change the "year offset" from 22 years to 24 years (good till 1997) until this code is replaced with something that uses the chip as a seconds-since-beginning-of-year clock (encoded as a date, relative to 1972-01-01 00:00:00).
1996-01-09from netbsd; Fix setcontext call and sendsigTheo de Raadt
1996-01-09from netbsd; compile hpux_machdep.c if COMPAT_HPUXTheo de Raadt
1996-01-09from netbsd:Theo de Raadt
Part of the tostools reorganization. All directories now contain a Makefile and the user interface to the various tools has been standarized.
1996-01-09from leo:Theo de Raadt
Common library for all tostools. (Waldi Ravens and myself)
1996-01-09from leo:Theo de Raadt
Atari partion table checker. Checks the validity of AHDI and/or NetBSD/Atari partition tables. (Waldi Ravens)
1996-01-09spltty shouldn't need to block serial hard interrupts--just soft.briggs
splimp can drop, too.
1996-01-08from ragge; Changed to work correctly with both K&R and ANSI cpp.Theo de Raadt
1996-01-08from ragge:Theo de Raadt
Device driver for TS11/TSV05 tape devices. Written by Bertram Barth, based on TMSCP device driver.
1996-01-08update from netbsdTheo de Raadt
1996-01-08from netbsd; Hand-code softintr()Theo de Raadt
1996-01-08from leo; Remove a stray MAXPARTITIONS definitionTheo de Raadt
1996-01-08from netbsd:Theo de Raadt
Deal with GCC's dead code elimination being suboptimal. Modify splraise() to allow better optimization. Make cpl, ipending, and astpending volatile. Make sure interrupts are disabled before jumping to a resume point, to prevent races. Make FPU faults use INTRFASTEXIT, and remove INTREXIT. Build the frame for recursive interrupts manually, and make sure to disable interrupts to avoid races. VS: ----------------------------------------------------------------------
1996-01-07When servicing a memory error on the sun4/sun4c makedavem
sure the store buffers on the chip are completely flushed to ensure proper handler completion.
1996-01-07from netbsd: Put #includes in the right orderTheo de Raadt
1996-01-07from netbsd; do not save caller-saved registersTheo de Raadt
1996-01-07from netbsd:Theo de Raadt
Move the obviously machine-dependent HP-UX compat code to hpux_machdep.{c,h}. A fair bit of this, the m68k core dump and exec goo, can probably be made into a generic m68k hpux module, eventually.
1996-01-07from netbsd:Theo de Raadt
Move the obviously machine-dependent HP-UX compat code to hpux_machdep.{c,h}. A fair bit of this, the m68k core dump and exec goo, can probably be made into a generic m68k hpux module, eventually.
1996-01-07from leo:Theo de Raadt
Add an nvram-driver. This driver makes it possible to read/write the configuration info stored in the nvram on the mc146818
1996-01-07from netbsd; Keep more debugging history (Paul Goyette). Synced with mac68k ↵Theo de Raadt
version
1996-01-07created devices for the IP filter log on all architecturesdm
1996-01-07from beurton@fnet.fr: Darren Reed's IP filterdm
1996-01-06/bsd and OpenBSD got changed back to /netbsd and NetBSD in thedm
timing patch. I switched them back.
1996-01-06from netbsd; some U tagsTheo de Raadt
1996-01-06one tests code before one commits it. initialize ttymalloc'd struct properly.Theo de Raadt
also with mrg: use B1200 instead of 1200.
1996-01-06by mrg and myself on irc: fix a ttymalloc() memory leak, TIOCM* botchTheo de Raadt