summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/alpha
AgeCommit message (Collapse)Author
2000-11-19More sane setting of page size.Artur Grabowski
2000-11-18allow this to compile without COMPAT_OSF1Eric Jackson
2000-11-16allow the console to attach on the rest of the alpha's we support.Eric Jackson
2000-11-16revert previous commit which didnt compileEric Jackson
2000-11-16initial support for 21264 systems.Eric Jackson
from NetBSD.
2000-11-16configure vga, mouse and keyboard's once again. Currently only on eb164.Eric Jackson
others soon. Some of this from NetBSD.
2000-11-15Point to the right variable for ktraceNathan Binkert
2000-11-10Change the ktrace interface functions from taking the trace vnode to taking theArtur Grabowski
traced proc. The vnode is in the proc and all functions need the proc.
2000-11-09zap old file.Artur Grabowski
2000-11-08Zap dead files.Artur Grabowski
2000-11-08no need to extern booted_device everywhere.Artur Grabowski
2000-11-08tag the rest of alpha treeEric Jackson
2000-11-08add tagsEric Jackson
2000-11-08Merge in big portions of the improvements NetBSD did to their alpha port.Artur Grabowski
Highlights: UVM, PMAP_NEW, bus_dma (only on some buses for now), new hardware support, possiblity for ELF, etc, etc. Too much to mention. This is still work in progress. video consoles might be broken, otherwise we have basically the same functionality as before plus more.
2000-10-18typo in comment; from gluk@ptci.ruMichael Shalayeff
2000-09-26Implement getnulldev that returns the dev_t for "/dev/null".Artur Grabowski
2000-08-12add osf1 specific sigcode, from NetBSDEric Jackson
2000-07-05make dmesg work on alphaEric Jackson
2000-07-03closer approximation to an alpha using new wscons.Michael Shalayeff
tga moved to dev/pci. by request from alpha people.
2000-06-08Add explicit inclusions of signalvar.h to files actually using syms definedNiklas Hallqvist
there but relying on an indirect inclusion
2000-06-08&vm_pmap -> vm_map.pmapArtur Grabowski
2000-06-05Changes to exit handling.Artur Grabowski
cpu_exit no longer frees the vmspace and u-area. This is now handled by a separate kernel thread "reaper". This is to avoid sleeping locks in the critical path of cpu_exit where we're not allowed to sleep. From NetBSD
2000-04-24support DOSPTYP_EXTENDL like DOSPTYP_EXTEND; scott@nts.umn.eduTheo de Raadt
2000-04-11Check usec for >= 1000000, not just > ; as msaitoh@NetBSD.orgPaul Janzen
2000-03-23New API for timeouts. Replaces the old timeout()/untimeout() API andArtur Grabowski
makes it the callers responsibility to allocate resources for the timeouts. This is a KISS implementation and does _not_ solve the problems of slow handling of a large number of pending timeouts (this will be solved in future work) (although hardclock is now guarateed to take constant time for handling of timeouts). Old timeout() and untimeout() are implemented as wrappers around the new API and kept for compatibility. They will be removed as soon as all subsystems are converted to use the new API.
2000-02-22enlarge msgbuf, somewhat line netbsd didTheo de Raadt
2000-02-09don't include netinet6/ip6.hJun-ichiro itojun Hagino
2000-01-03check db_panic in kdb_trap() as well; similar to i386 fix from assarTheo de Raadt
1999-12-08bring in KAME IPv6 code, dated 19991208.Jun-ichiro itojun Hagino
replaces NRL IPv6 layer. reuses NRL pcb layer. no IPsec-on-v6 support. see sys/netinet6/{TODO,IMPLEMENTATION} for more details. GENERIC configuration should work fine as before. GENERIC.v6 works fine as well, but you'll need KAME userland tools to play with IPv6 (will be bringed into soon).
1999-11-22add empty mmioctl() implementation for new /dev/mem interface for allMatthieu Herrb
architectures.
1999-11-13overflow fixes; chuqTheo de Raadt
1999-09-26netbsd_sendsig() + supporting codekstailey
1999-09-25alpha-specific part of ross@netbsd's NetBSD scheduler fix.Paul Janzen
1999-09-16signal fixes (csh runs)kstailey
1999-09-14don't panic when creating kernel threadskstailey
1999-09-14signalskstailey
1999-09-10art@ added access arg to pmap_enter. Not used herekstailey
1999-09-03Change the pmap_enter api to pass down an argument that indicatesArtur Grabowski
the access type that caused this mapping. This is to simplify pmaps with mod/ref emulation (none for the moment) and in some cases speed up pmap_is_{referenced,modified}. At the same time, clean up some mappings that had too high protection. XXX - the access type is incorrect in old vm, it's only used by uvm and MD code. The actual use of this in pmap_enter implementations is not in this commit.
1999-08-17New cpu_fork API to take a stack in which you point the child's stackpointerNiklas Hallqvist
to, at the bottom or the top, depending on your architecture's stack growth direction. This is in preparation for Linux' clone(2) emulation. port maintainers, please check that I did the work right.
1999-07-30acd goes awayTheo de Raadt
1999-07-25Enable new ATA/ATAPISCSI functionality as default.Constantine Sapuntzakis
1999-07-18pmap_activate() and pmap_deactivate() are MDTheo de Raadt
1999-07-18fix pmap_activate() and pmap_deactivate() arguments after art changed thingsTheo de Raadt
1999-07-17do not brelse() badlyTheo de Raadt
1999-05-24Only do basic work in the ethernet interrupt context, and queue packets toJason Wright
be bridged. Do the real work in a scheduled netisr.
1999-05-22Add new vm_swap code for dynamic swap. From netbsd, munged some by me, andTobias Weingartner
others. syscall commit pending.
1999-05-03fix some parenthesis nightmare; niklas@ okMichael Shalayeff
1999-03-24Call vm_set_page_size() during initialization (supresses "MD code didAlex Feldman
not set page size" warning at boot time).
1999-01-11panic prints a newline for you, don't do it in the panic stringTodd C. Miller
1999-01-10Generalize cpu_set_kpc to take any kind of arg; mostly from NetBSDNiklas Hallqvist