summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2001-08-19fetch sc_intline from pci_intr_line(ih) to accomodate forMichael Shalayeff
the line being possibly resolved in pci_intr_map(). found and tested by jason@
2001-08-19...and convert this one as well.Miod Vallat
2001-08-19More old timeouts removal, mainly affected unused/unmaintained code.Miod Vallat
2001-08-19more from netbsd... not sure if it's modified or not (modified at least for ↵Jason Wright
RCSids, tho)
2001-08-19RCSidJason Wright
2001-08-19generic interface for time-of-day clock devices.Artur Grabowski
From NetBSD
2001-08-19setprop and nextpropArtur Grabowski
2001-08-19sparc64Artur Grabowski
2001-08-19Add a powerhook for bringing the 556 out of sleepy mode after suspend.Jason Wright
(This isn't perfect... it still requires an down up transition, but Bob is kicking me off his laptop so he can do "Real Work").
2001-08-18Move the softc into the machdep parts.Artur Grabowski
2001-08-18rcs idsJason Wright
2001-08-18generic mostek clock driver (from NetBSD, ported by art... but he's beingJason Wright
slack about committing)
2001-08-18import sbus stuff from netbsd (not a lot of mods).Jason Wright
2001-08-18typo from 1.50; biorn@chips.chalmers.seTheo de Raadt
2001-08-18Make use of ax88190_stop_card and dl10019_stop_card.Aaron Campbell
2001-08-18Support for PCMCIA network cards with an ASIX AX88190. Committing this overAaron Campbell
a Linksys PCMPC100 Ver 3 10/100 card that now works.
2001-08-18Add MII routines to support the ASIX AX88190 MAC controller; from NetBSD.Aaron Campbell
2001-08-18write output portMichael Shalayeff
2001-08-18Make siop pay attention to quirks table. This not only eliminates theKenneth R Westerback
ugly INQUIRY snooping but avoids adding even uglier #ifdef's to turn off stuff, e.g. tagged queuing. Add two disk drives now known to lie about supporting tagged queuing to quirks table. One from millert@ (<MICROP, 4421-07 0329SJ, 0329>) and one from Hakan Olsson (<SEAGATE, ST150176LW, 0002>). Add field 'inquiry_flags2' to struct scsi_link to hold flags2 field from struct scsi_inquiry_data. These flags relate to SCSI-3 specific features. Clean up some logic, eliminating need for TARF_PPR flag.
2001-08-17quieten pcmcia/cardbus interrupt handling at unsuspend timeTheo de Raadt
2001-08-17Back out pcic_delay() since we cannot call tsleep() in interupt context.Todd C. Miller
For this to work pcmcia would have to be a kernel thread w/ process context.
2001-08-17Add RC4 support.ben
2001-08-17Oops, maxseglen and maxlen were backwards in call to bus_dmamap_create().Jason Wright
2001-08-16do not try to undefine CAC_DEBUGBrad Smith
2001-08-15- Attempt to recover from PCI aborts. This is a heavy handed approach whichJason Wright
involves running down what's in the queue and resetting the chip. - remove a DELAY() from reset and just wait for the proc unit to come out of reset. - never set the LAST bit in a JUMP descriptor - use lengths from each map (not just source map) for total_*_length in command [This does not fix problems with net4501, but may address problems with CA810]
2001-08-15Add some stuff missed in a previous FreeBSD merge... Fixes the problem whereJason Wright
sk busy loops when carrier is lost until it returns; based on patch from david langhorst <dirt@monkey.org> and tested by John Ladwig <jladwig@mango.lioness.net>
2001-08-14One char was wrong. -mojMats O Jansson
2001-08-14Allow latin-1 chars. -mojMats O Jansson
2001-08-14add missing latin-1 chars. -mojMats O Jansson
2001-08-14Call dc_read_srom with the correct width; patch from gluk@. Fixes problemsAaron Campbell
with multiple 21143 interfaces.
2001-08-12absolutely no need to include vm_parm.h after vm.hMichael Shalayeff
2001-08-12remove some of the redundant vm includesMichael Shalayeff
2001-08-12remove redundant vm includesMichael Shalayeff
2001-08-12#(endif|else) foo is incorrect, make it #endif /* foo */Heikki Korpela
deraadt@ ok
2001-08-11no need to include vm_prot.h here.Artur Grabowski
2001-08-11document the fast thingy on the VScom PCI-200LTheo de Raadt
2001-08-11move hifn_stats definition to headerJason Wright
2001-08-10allocate tx dma maps in attach instead of creating/destroying them for each txJason Wright
2001-08-10- make transmit use linked lists not indexed arrays (more like it was when I ↵Jason Wright
started) - also, only bus_dmamap_unload() loaded maps in fxp_stop()
2001-08-09- scb_wait() is now time based (not cpu speed based)Jason Wright
- rearrange multicast setup to be part of init - convert cu operations to bus_dma(9) (still have to do RFA ops).
2001-08-09Use a startup hook for the rest of the chip initialization.Hakan Olsson
2001-08-09syncTheo de Raadt
2001-08-09yet another damn winmodemTheo de Raadt
2001-08-08New timeouts, drahn@ sez go ahead.Miod Vallat
2001-08-08New timeouts. I've been running this since almost a whole year.Miod Vallat
2001-08-08syncTheo de Raadt
2001-08-08new stuffTheo de Raadt
2001-08-08initialize timeouts, since it's a copy of comattach; reported by Larry Moore ↵Michael Shalayeff
<lmoore@starwon.com.au>
2001-08-08leave the dma engines polling for a bit after the last descriptor has beenJason Wright
passed through. After a few seconds (5 currently) of no activity, stop them completely.
2001-08-08Initial support for RC4 operations (This probably won't work yet asJason Wright
the caller of *_process() doesn't seem to initialize crd_klen correctly; it has a zero value... still debugging...).