summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2002-03-14First round of __P removal in sysTodd C. Miller
2002-03-14compare pointers with NULL not 0Jason Wright
2002-03-14Reload the palette only during the vert retrace interruptJason Wright
2002-03-14Fix *some* problems with new ahc driver that were surfaced withKenneth R Westerback
the recent changes to scsiconf.c. a) Restore marking of appropriate devices as tagged b) Fix an off-by-one error that sprayed bits around c) Use correct field (quirks) when setting SDEV_NOTAGS bit d) Use TAG_ENB define instead of MSG_SIMPLE_Q_TAG when manipulating hscb->control. Both were defined to the same value, but TAG_ENB is the define used to extract the bit later on. This leaves problems, most often seen as faults when accessing a CD drive and disk drive on the same bus. ok smurph@
2002-03-13Fetch mac address from local-mac-address property, and use myetheraddr() onlyJason Wright
if it fails. (The right thing to do is have myetheraddr() do this, but that will come later).
2002-03-13Try fetching the mac address from the local-mac-address property, and ifJason Wright
it fails, fall back to myetheraddr()
2002-03-12don't need to call IFQ_SET_READY() twice; this driver was alreadyFederico G. Schwindt
ALTQify'ed.
2002-03-12swiss german and french keymaps; from pckbd by Mathias Schmocker ↵Michael Shalayeff
<smat@polaris.smat.ch>
2002-03-12sync with KAMEKenjiro Cho
ALTQify more drivers. ok millert@
2002-03-08numraid is needed, always.Thierry Deval
2002-03-08do not add maddr twice, break out of the loop if cmd post failsMichael Shalayeff
2002-03-08lxtphy needs ukphy_subrJason Wright
2002-03-08Clean up:Jason Wright
Allow the children to register their own interrupt handlers (and set the appropriate interrupt enable bits in the csr) Verify the asio revision
2002-03-07From watching source-changes@netbsd.org: rb_dmabase needs to be initializedJason Wright
-after- the call to bus_dmamem_map()
2002-03-06remove unused #includeNathan Binkert
2002-03-06vtophys is no longer usedNathan Binkert
2002-03-06syncNathan Binkert
2002-03-06Add a couple new intel gigabit cardsNathan Binkert
2002-03-06Get the offsets and lengths right when sync'n dma maps; patch from mjacobJason Wright
2002-03-06Driver for the Aurora 210SJ serial ports (It's not 100% correct yet, butJason Wright
pretty close); thanks to Matt <matt@vertrauen.org> for donating the board.
2002-03-06Implement a shutdown hook.Thierry Deval
We now can safely swap on raid.
2002-03-05It is clear that I have not committed in a long time!!!!Niklas Hallqvist
2002-03-05doh, thanks mickey!Niklas Hallqvist
2002-03-05Deal gracefully with ccb starvationNiklas Hallqvist
2002-03-05Deal gracefully with ccb starvationNiklas Hallqvist
2002-03-04Disable the wscons burner functionality... I'm not in the mood to debug it ↵Jason Wright
right now.
2002-03-04do not attach wsdisplay if there is none configuredMichael Shalayeff
2002-03-0421140 support for dc isn't reliable enough for it to win over dc.Nathan Binkert
dc doesn't fit on the alpha ramdisk, so let de win in all cases.
2002-03-01From NetBSD, noticed by Alexander YurchenkoChris Cappuccio
"In hpt_pci_intr(): There is interrupt pending once IDEDMA_CTL_ACT is turned off. It seems that IDEDMA_CTL_INTR is asserted before DMA transfer is complete, leading to race condition in case of interrupt sharing. Discovered reading the FreeBSD code."
2002-02-27We have memcpy and memset in the kernel.Artur Grabowski
2002-02-25Opps. One missing _nodead. -mojMats O Jansson
2002-02-25US isn't all :-) Here is a swedish map. -mojMats O Jansson
2002-02-25Accept ethernet broadcasts too :-) This patch contains a copy ofNiklas Hallqvist
ether_crc32_le from NetBSD, which might be bettter placed in if_ethersubr.c later, if any other driver needs it.
2002-02-24Proper screenblank semanticsJason Wright
2002-02-23Add aperture driver support for macppc, and also place writing to /dev/pciMatthieu Herrb
under the control of machdep.allowaperture. This allows to run the X server on macppc with securelevel=1, given that machdep.allowaperture is != 0. OK deraadt@
2002-02-23Add burner function so wscons can blank the fbJason Wright
2002-02-22Call ether_ioctl() the way [insert favorite diety] intended.Jason Wright
2002-02-22Revert to previous (non hacked =) version now that the iommu is handledJason Wright
correctly and it doesn't crash
2002-02-21In WI_SETSTR round up i_len to be an even number if needed since weTodd C. Miller
are going to divide it by 2. More or less based on NetBSD.
2002-02-20104 byte WEP key support for Prism2 cards; from NetBSDTodd C. Miller
2002-02-20Remove useless prototypes for wi_request_fill_ssid() and wi_write_ssid().Todd C. Miller
Unike NetBSD we use a macro instead of those functions. mickey@ OK
2002-02-19From NetBSD:Jason Wright
Fix timeout overflow caused by "scsictl format" on machines HZ==100.
2002-02-19add support for media and other generic 802.11 ioctls, elliminates need for ↵Michael Shalayeff
wicontrol on the ramdisk floppy, pretty much; from netbsd
2002-02-18This should fix AHA-3950BU2.Steve Murphree
2002-02-18Correct fix for breakage in rev 1.23. Sorry for the mess.Matthieu Herrb
2002-02-18do not assume PCI_USERCONF is set on all arch; matthieu okTheo de Raadt
2002-02-18need rndvar.h for it to compileMichael Shalayeff
2002-02-18call ether_ioctl(), fix pr/2371; jason@ okMichael Shalayeff
2002-02-18store the PCI configuration space bus number in the pci_softc structMatthieu Herrb
and use it for pci configuration space access in ioctl code. And do bounds checking on ioctl args for all architectures Ok deraadt@, drahn@.
2002-02-18syncTheo de Raadt