summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
1996-01-16add the freebsd joystick driver; converted by matthieu@abel.laas.fr;Theo de Raadt
netbsd pr#1916
1996-01-16update from netbsdTheo de Raadt
1996-01-16from netbsd; add doshutdownhooks()Theo de Raadt
1996-01-16add ahe supportTheo de Raadt
1996-01-16sync with netbsdTheo de Raadt
1996-01-16from netbsd:Theo de Raadt
Use ${BINOWN} and ${BINGRP} per Arne H. Juul <arnej@ikke.idt.unit.no> in PR #705. Also, clean up some stuff left over from HP-BSD.
1996-01-16from netbsd:Theo de Raadt
The changes frpm Paul Goyette with respect to the driver trace require DBG_PID to be defined to an interger value....make it so.
1996-01-15Don't feed ${DEBUG} to the assembler, it doesn't take those argsNiklas Hallqvist
anyway.
1996-01-15remove dup vm86 defnTheo de Raadt
1996-01-15Remove vnode_if.[ch] during a "make clean", per PR#536 fromTheo de Raadt
Dan Carosone <danielce@ee.mu.oz.au>.
1996-01-15Updates from Kelly Campbell <camk@ksu.ksu.edu> for some ROM addresses.briggs
1996-01-15define pcmciabus for PCMCIA supporthvozda
1996-01-15config glue for PCMCIA supporthvozda
1996-01-15from netbsd:Theo de Raadt
Balance calls to disk_busy() and disk_unbusy() properly to avoid dk_busy < 0 panics. Count seeks.
1996-01-15from netbsd; Make a small attempt to deal better with VM86 mode in GDBTheo de Raadt
1996-01-15sync with netbsdTheo de Raadt
1996-01-14Preliminary cut at SONIC driver. Quadra only at this point.briggs
Still apparently not getting interrupts for some reason, so this is more or less just a checkpoint.
1996-01-14Use dma_cachectl instead of cachectl when writing into the kernel textNiklas Hallqvist
segment. Ordinary cachectl is for userlevel virtual addresses.
1996-01-14from netbsd: more of PR 1931. Fix code that's not compiled unless DEBUG.briggs
1996-01-14from netbsd -- remove some more dead code (PR #1931)briggs
1996-01-14from netbsd--remove bogus code.briggs
1996-01-14from netbsd: Fixes from PR #1931.briggs
1996-01-14from netbsd:briggs
Patch to at least recognise FOCUS EtherLAN. From Erik Bertelson <erik@sockdev.uni-c.dk>
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