summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2001-04-30ami.cMichael Shalayeff
2001-04-30padnessMichael Shalayeff
2001-04-30sync.lebel
2001-04-30add new device, Lucent USB QuadraBus. deraadt@ OK.lebel
2001-04-30cleaningJason Wright
2001-04-30pretty up rx filter setupJason Wright
2001-04-30syncJason Wright
2001-04-30broadcom 5820Jason Wright
2001-04-29a few more aen definitions, from freebsdMichael Shalayeff
2001-04-29syncTheo de Raadt
2001-04-29another pucTheo de Raadt
2001-04-29When expanding the session table, only copy the number of sessions alreadyJason Wright
there to the new table; from stephen@etunnels.com (PR 1801).
2001-04-24Phew. After 8 months and 80+ hours of effort, I have finally gotten 3com toTheo de Raadt
release the 3CR990 microcode under an acceptable licence.
2001-04-24missing splx, found by art, not yet tested by smurph, but he has run out of timeTheo de Raadt
2001-04-23regenTodd C. Miller
2001-04-23The Linksys WPC11 uses the Lucent Wavelan vendor and product IDs butTodd C. Miller
it is a Prism2 card. We add fake entries in pcmciadevs and the wi_pcmcia_product list so that it gets treated as Prism2.
2001-04-23Clean up supposedly 'impossible' case in siop_intr() soKenneth R Westerback
a) meaningful but not voluminous debug info is printed and clearly associated with the offending siop bus. b) instead of panic'ing, reset the scsi bus and return. This problem was only seen under heavy load on powerpc. Plus fix one typo (exeption -> exception). ok deraadt@
2001-04-23Insert missing DvcLeaveCritial() (a.k.a. splx()) before a return.Kenneth R Westerback
Spotted by fgsch@.
2001-04-23double splxArtur Grabowski
2001-04-23double splx in error path.Artur Grabowski
2001-04-21Add $OpenBSD$ tags.Aaron Campbell
2001-04-21correct dmesgTheo de Raadt
2001-04-20Instead of initializing the colormap to me black & white, initialize theNathan Binkert
colormap to use ansi colors. This makes alpha kernel messages come out in color during boot, and it allows console users to get ansi colors. ok deraadt@
2001-04-19dmesg printout tweaksTheo de Raadt
2001-04-19Remove extra arg; from Loic Tortay <loict@bougon.net> via aaron@.Federico G. Schwindt
deraadt@ ok.
2001-04-19When printing the address/size, use the correct value 32, not 16.Federico G. Schwindt
2001-04-18Support the Corega FEther PCC-TXF card; taka@trans-nt.com. Addresses PR/1777.Aaron Campbell
2001-04-18regenAaron Campbell
2001-04-18Recognize the Corega FEther PCC-TXF card.Aaron Campbell
2001-04-18Oops -- adjust the comment as well.Aaron Campbell
2001-04-18Set the default bell pitch to 400, like X.Aaron Campbell
2001-04-17During a mouse motion event, inverse the new mouse position first, then theAaron Campbell
old one, instead of the other way around. This makes the motion look much more fluid on my laptop LCD.
2001-04-17Enable UDMA for rev 0xd0 SiS again (undone in last update)Chris Cappuccio
2001-04-17Turn off DMA on REQUEST SENSEConstantine Sapuntzakis
2001-04-17dma_status variable check is only valid for DMA transfers.Constantine Sapuntzakis
2001-04-17No colon after "address" when printing out Ethernet address.Aaron Campbell
2001-04-17Implement cnbell(), an optional entrypoint that rings the console bell; fromAaron Campbell
NetBSD. deraadt@ ok
2001-04-17add support for the 82562E[MT] phys (These are essentially 82555's willJason Wright
all support for T4 gone). There are some register definition conflicts (SCR), but that is qualified by the presence of T4 support.
2001-04-16Don't remove the mouse cursor when output occurs on a virtual terminal differentjbm
from the current one.
2001-04-16incorrect return value from ami_intrTheo de Raadt
2001-04-16fix headerTheo de Raadt
2001-04-16put yamaha comment in the fileTheo de Raadt
2001-04-16dmesg cleanupsTheo de Raadt
2001-04-16Avoid resetting the interface when not needed; allows temporary WEP keysThorsten Lockert
to work. ALso optimize some interactions with the card. Fixes rest of PR 1754; ok deraadt@
2001-04-15- in txp_intr(), don't call the rx/tx handlers unless necessaryJason Wright
- make txp_rx_reclaim() run on offsets instead of indices (avoids several division/multiplication conversions) - remove vlan tag support for now (it doesn't work anyway) - optimize txp_start(), txp_rx_reclaim(), and txp_tx_reclaim() a bit (this is based on my original attempts at these functions... only now it works =)
2001-04-15mask off Arm2Host_Comm_3 interrupts now that rx buffer reclamation hasJason Wright
some out of resource handling (a2h_3 is a heartbeat generated every ~8ms and thus provides 125intrs/sec even when idle).
2001-04-15- setup a timeout that will try to refill the rxbuffer ring (this makesJason Wright
out of resource handling a bit better). - in txp_stop(), disable the rx process, too
2001-04-15anotherTheo de Raadt
2001-04-15Support U160 on 53c1010 chips.Kenneth R Westerback
Add support for PPR negotiations and DT transfers, and the preservation and restoration of the SCNTL4 register which controls Ultra3 transfers. Redo sync lookup, since the same period factor can mean two things depending on whether you are using DT or ST. Keep a minimum allowed ST period factor, and a minimum allowd DT period factor for each adapter. Currently NO support for QAS or IUS or AIP.
2001-04-14- integrated phy on the natsemi 83815 (MacPhyter) is essentially a nsphyterJason Wright
(media selection doesn't work completely right... choose what ever you want, you get auto, but at least link and speed detection work correctly) - correct the cfdriver name to be "nsphyter" not "nsphy" so it can be distinguished from nsphy in 'boot -c'.