summaryrefslogtreecommitdiff
path: root/sys/dev/ic
AgeCommit message (Collapse)Author
1997-10-15Allow setting the baud rate base from an external defPer Fogelstrom
1997-10-07lpd uses 4 ports. PERIOD, no?Theo de Raadt
1997-09-29midway update:chuck
[1] add EN_ENIDMAFIX - the byte-aligner on the ENI version of the card appears to lose under heavy load so avoid using it. see comment in midway.c for full details. note that the Adaptec version of the card works properly under load. detected by Kenjiro Cho <kjc@csl.sony.co.jp> [confirmed by chuck] fix by chuck & kjc [2] update some freebsd specific code [from kjc] [3] for circular buffers: ensure there is always one free slot so that we can easily tell the difference between a full and empty list. re-structure a few loops to reflect this. fixes a problem with mbufs being free'd while still in DMA, and makes drive a bit more robust. detected and fixed by kjc also, pull in the following changes from netbsd: revision 1.29 date: 1997/07/07 22:52:17; author: cgd; state: Exp; lines: +29 -22 fix static inline functions' prototypes so they're correctly marked 'inline' as well as static. mark prototypes for static inline functions as possibly unused (with __attribute__ ((unused))), to avoid generating warnings when compiling without optimization but with most ports' default warning flags. Clean up prototype list spacing, and make it more consistent. --------------------------- revision 1.28 date: 1997/04/28 17:04:06; author: mycroft; state: Exp; lines: +2 -1 Oops; forgot to GC the last mbuf allocated when out of clusters. --------------------------- revision 1.27 date: 1997/04/24 02:25:37; author: mycroft; state: Exp; lines: +2 -2 Do not force the initial part of a packet into a separate mbuf. --------------------------- revision 1.26 date: 1997/04/24 02:24:07; author: mycroft; state: Exp; lines: +6 -3 If we fail to allocate a cluster to hold a large packet, simply drop it rather than using a chain of tiny mbufs.
1997-09-16tighten up probe printfs a bit and prepend with device nameflipk
1997-09-13From NetBSD: MI stuff for DS2404 RTCNiklas Hallqvist
1997-09-11add sc_no_disconnectkstailey
1997-09-11sync with netbsdkstailey
1997-09-03fix cua/tty lockingTheo de Raadt
1997-09-02macro fix; mason@primenet.com.auTheo de Raadt
1997-08-25better mmap support, what funTheo de Raadt
1997-08-22wscons -> vga_xxx -> vga mmap() support. first cutTheo de Raadt
1997-08-08Mostly sync to NetBSD-current 970804.Jason Downs
Apologies if this breaks anyone else using the MI ESP driver...
1997-08-08Add hwreset callback; drivers need to set this appropiately.Jason Downs
1997-08-04Change disable_intr()/enable_intr() to splhigh()/splx().dgregor
Fix bug of 'tp' not being initialized in cyopen - patch from Theo de Raadt. Thanks to Niklas Hallqvist and Theo de Raadt for finding this bug.
1997-07-31text video attributes, tested only on vga, send me E-mail if it breaks ↵kstailey
something, thx.
1997-07-31bus_space_copy_2() is now overlap safekstailey
1997-07-30Sync to NetBSD. Adapt to use bus_space_multi_raw* interface of OpenBSD.Niklas Hallqvist
Some KNF too.
1997-07-29Support BSD/OS 2.1, add OpenBSD tags.Jason Downs
1997-07-10fix vga_copycols(9)kstailey
1997-07-10fix backward scrollingkstailey
1997-07-09arghTheo de Raadt
1997-07-09alpha/common/ insults my filecTheo de Raadt
1997-07-07Removed an unused argNiklas Hallqvist
1997-07-03do not whine about failed negotiationsTheo de Raadt
1997-06-18csapuntz@lcs.mit.edu: Port of NetBSD tulip driver. Works with new ↵dm
(21140-AC-based) SMC Etherpower cards.
1997-06-11Make this compile with debugging turned on.Jason Downs
1997-04-17hide C decls when _LOCORE definedMichael Shalayeff
1997-04-14Document flag to set 32-bit word mode. Call it ED_DCR_QTS forTodd C. Miller
lack of a better name (anyone have any documentation?)
1997-04-13make it compile againMichael Shalayeff
1997-04-10queue handling hacks for chips like aic7860 which have small numbers of SCB's.Theo de Raadt
by gibbs@freebsd.org
1997-04-10Need to separate i/o and mem on mipsPer Fogelstrom
1997-04-10Zilog z8536 defsPer Fogelstrom
1997-03-20MAJOR CHANGES: [contributed by Chuck Cranor <chuck@ccrc.wustl.edu> andchuck
Anne Hutton <hutton@isi.edu>]: - add support for Adaptec 155 PCI ATM cards (e.g. ANA-5940) - add sc->is_adaptec to handle differences between cards. - break out MID_MK_TXQ/MID_MK_RXQ seperate macros to handle the new Adaptec format TXQ/RXQ. - adjust en_dqneed to return 1 on ADP (since the Adaptec can DMA anything in one DRQ/DTQ!) - add hook for a bus specific reset function (adaptec has a seperate reset register that needs to be hit when resettting the midway). - adjust DMA test to not worry about burst sizes on the adaptec (since it handles it all for us!) and to handle the new DTQ/DRQ format. - add Adaptec DMA support to en_txlaunch() and en_service() BUG FIXES: - fixed receiver panic under heavy load ("lost mbuf in slot 0!"). when the reassembly buffer overflows, the T-bit is set in the RDB and the data field is empty. en_service() sets up a 4-byte (RDB size) dummy DMA without IF_ENQUEUE. but the recv intr handling in en_intr() always does IF_DEQUEUE. as a result, a successive recv intr loses its mbuf and leads to a panic. the solution is to only IF_DEQUEUE if the interrupt has non-zero length (indicating that there is an mbuf to get). in order for this to work, EN_DQ_MK must always be non-zero. we do this by or'ing in an unused bit (0x80000). reported by: Kenjiro Cho <kjc@csl.sony.co.jp> - fix setting of transmit channel when txspeed[] is non-zero (e.g. traffic shaping). the old scheme didn't work properly (it allowed the same VCI to use multiple tx channels thus defeating the txspeed[] parameter). the new scheme statically assigns a VC to a channel when txspeed[] is set. [note that the code to set txspeed[] isn't in the driver right now since a MI interface to do this hasn't been made yet] we add sc->txvc2slot[] and sc->txslot[n].nref for this. reported by: Kenjiro Cho <kjc@csl.sony.co.jp>, Milind M Buddihikot <milind@ccrc.wustl.edu>, Dong Lin <dong@eecs.harvard.edu> - if aal5 frame has a CRC error then the length field in the aal5 trailer may not be valid, so we can not use it [and we must dump the frame] contributed by: Yuhang Sun <sunyh@dworkin.wustl.edu> & chuck - when doing SRAM copies, be sure to round up the length to the next largest word (otherwise the driver will try to do a byte clean up DMA and then get an ID error interrupt). MINOR CLEANUPS: - add some extra support for a few more versions of FreeBSD contributed by: Kenjiro Cho <kjc@csl.sony.co.jp> - clean up loops in DMA test contributed by: Kenjiro Cho <kjc@csl.sony.co.jp> - restructure and cleanup of en_read/en_write macros/inlines - clean up some byte ordering stuff so that we are consistant throughout the driver
1997-03-17Serial console trouble again...Per Fogelstrom
1997-03-12The stupid "use console before configured" scheeme strikes again :-)Per Fogelstrom
1997-03-12Add a define for another compatible chip.Per Fogelstrom
1997-03-06Initial implementation of support for calling hardpps() on carrier enableThorsten Lockert
1997-03-06Add control flag to call hardpps() on carrier changeThorsten Lockert
1997-02-27M.I. NCR53c9x/ESP driver, derived from sparc/alpha esp.c. From Jason Thorpebriggs
and NetBSD.
1997-02-19NS DP875x series clock chip definition file.Per Fogelstrom
1997-01-29Export comdefaultrateNiklas Hallqvist
1997-01-24bug fix:chuck
- if aal5 frame has a CRC error then the length field in the aal5 trailer may not be valid, so we can not use it [and we must dump the frame] [Yuhang Sun <sunyh@dworkin.wustl.edu> & chuck@ccrc.wustl.edu]
1997-01-15sc_link.adapter_buswidth, set to 16 if wide scsi. if 0 it gets convertedTheo de Raadt
to 8 internally so that drivers do not need to init it for regular scsi :-)
1997-01-15more missing prototypes and other warnings fixedkstailey
1997-01-15added prototypeskstailey
1997-01-05absent pcmcia cards do not interruptTheo de Raadt
1996-12-16add "return (0)" to end of zsstop() since it's not a void function anymorekstailey
1996-12-10the real changes by niklas... I did not merge correctlyTheo de Raadt
1996-12-10clr TS_WOPEN if bailing on cua opensTheo de Raadt
As well, at this point I've also done fancy cvs repository mangling to ensure that the com* files in sys/dev/ic maintain the history we had before. (Yes, I cleaned up the 2.0 tags too..)
1996-12-03clr TS_WOPEN if bailing on cua opensTheo de Raadt