summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
AgeCommit message (Collapse)Author
2001-09-01Add __HAVE_DEVICE_REGISTER to hp300/alpha (sparc64 already had it) andJason Wright
clean up the arch specific #ifdef's in subr_autoconf.c; from NetBSD. (tested by me on alpha/sparc64 and miod on hp300)
2001-08-25Change pci_intr_map to take pci_attach_args as an argument.Artur Grabowski
All callers actually took all arguments to pci_intr_map from pci_attach_args structs, so this simplifies code. This also allows more complicated interrupt assignment schemes like the one on sparc64. This makes sparc64 pci interrupts work. Inspired by the same change in NetBSD.
2001-08-23Sync with contents of arch/foo/conf directory, might be useful one day.Miod Vallat
2001-08-23We can now move timeout_init into main().Artur Grabowski
2001-08-23Remove even more old timeout tentacles.Artur Grabowski
2001-08-18Move pmap_{de,}activate to vm/pmap.h, it's same on all archs.Artur Grabowski
2001-08-17cut and paste typos; from art@Michael Shalayeff
2001-08-17cut and paste typoMichael Shalayeff
2001-08-17provide a way to get the number used for irq line, not only a stringMichael Shalayeff
representation, this is needed for devices like cbb which pass the interrupt line down to the cardbus attachment and not getting the right line before pci_intr_map() has done it's dirty deed. tested on i386 by jason@, compiles on alpha by art@. ppc and mveppc are to be test-compiled, but should work (;
2001-08-12#(endif|else) foo is incorrect, make it #endif /* foo */Heikki Korpela
deraadt@ ok
2001-08-11remove some old cruft.Artur Grabowski
2001-08-08vga_{isa,pci}.h -> vga.h since the former no longer exists.Todd C. Miller
2001-08-06remove vm_conf.h; art@ okMichael Shalayeff
2001-07-25Change the pmap_enter interface to merge access_type and the wired booleanArtur Grabowski
and arbitrary flags into one argument. One new flag is PMAP_CANFAIL that tells pmap_enter that it can fail if there are not enough resources to satisfy the request. If this flag is not passed, pmap_enter should panic as it should have done before this change (XXX - many pmaps are still not doing that). Only i386 and alpha implement CANFAIL for now. Includes uvm updates from NetBSD.
2001-07-19bogus comment.Artur Grabowski
2001-07-19No more need to define PMAP_NEW.Artur Grabowski
2001-07-15add install targetassar
2001-07-09Make quad types on alpha be "long long" not "long". This means thatTodd C. Miller
printf's "%lld" can be used with a quad_t or int64_t without a bogus cast.
2001-07-05Get rid of REAL_CLISTS. It was never implemented and the tentacles areArtur Grabowski
everywhhere.
2001-07-05Get rid of the wrapper macros around extent_alloc*1Artur Grabowski
Pass the right amount of arguments and rename them back to their right names.
2001-07-05add iopMichael Shalayeff
2001-07-04Kill these for real hopefullyNiklas Hallqvist
2001-07-04$OpenBSD$Niklas Hallqvist
2001-06-27Add commented out ises driver. RNG works.Hakan Olsson
2001-06-27MNN is no longer an option.Artur Grabowski
2001-06-27Remove IPF references; openbsd@davidkrause.comAngelos D. Keromytis
2001-06-27ALTQ base modifications to the kernel.Kenjiro Cho
- ALTQ introduces a set of new queue macros that coexist with the traditional IF_XXX macros. - "struct ifaltq" replaces "struct ifqueue" in "struct ifnet". - assign cdev major 74 for i386 and 54 for alpha as ALTQ control interface.
2001-06-27UVM is no longer an option.Artur Grabowski
2001-06-26More chipset info needed by X.Artur Grabowski
2001-06-26Provide chipset configuration to sysctls.Artur Grabowski
2001-06-26Provide some chipset information to usreland through sysctl.Artur Grabowski
The chipset support is not here yet, but the skeleton works.
2001-06-26USER_PCICONFArtur Grabowski
2001-06-26USB is still somewhat flakey on alpha. disable by default.Nathan Binkert
2001-06-26i2o or iop at pci failsMichael Shalayeff
2001-06-25Be more careful in pciide_compat_intr_disestablish.Artur Grabowski
While I'm here, clean up spaces.
2001-06-25Don't return from a void function.Artur Grabowski
2001-06-25Fix earlier commit of pciide disestablishConstantine Sapuntzakis
2001-06-25Add disestablish for pciide on AlphaConstantine Sapuntzakis
2001-06-25pf is in conf/GENERICArtur Grabowski
2001-06-25add pf device on all architectures.Kjell Wooding
fix my previously bogus MAKEDEVs. If you used pf on a non-i386. the major device number has changed, and you'll need to recreate /dev/pf ok theo
2001-06-25remove dependency on pmax tree. cleanup a little while hereEric Jackson
2001-06-25cold is in systm nowMichael Shalayeff
2001-06-24Add pf.Artur Grabowski
2001-06-24Define splvm() for arches who don't already provide it, with the sameMiod Vallat
definition as splimp(). art@ ok
2001-06-23no more kernfsTheo de Raadt
2001-06-23Use pool_cache for l1 ptes.Artur Grabowski
From NetBSD.
2001-06-22build it static; nateTheo de Raadt
2001-06-11Remove workaround for a gas bug fixed in binutils-2.10.1.Artur Grabowski
gas confused $f28 with $at.
2001-06-08Change the paddr_t pmap_extract(struct pmap *, vaddr_t) interface toArtur Grabowski
boolean_t pmap_extract(struct pmap *, vaddr_t, paddr_t *). Matches NetBSD. Tested by various people on various platforms.
2001-05-31Relocation types on alpha.Artur Grabowski