summaryrefslogtreecommitdiff
path: root/sys/dev/pci
AgeCommit message (Collapse)Author
2005-04-08add QLogic 2312 and 6312 cardsBrad Smith
2005-04-05regen.Federico G. Schwindt
2005-04-05winmodem found in vaio PCGFR315M; ok deraadt@Federico G. Schwindt
2005-04-05Don't clobber the returned sample rate when the AC97 changes it.Marco S Hyman
This lets an application know, should it bother testing, that a requested bit rate is not available. 'looks ok to me' mickey@
2005-04-05prevent non-root users to invoke wanpipe ioctls.Can Erkin Acar
noticed by uwe@, looks ok deraadt@
2005-04-05match on nforce4 and nforce2-400 ac97 as well; form netbsdMichael Shalayeff
2005-04-05regenMichael Shalayeff
2005-04-05nforce4 devs and nforce2-400 ac97Michael Shalayeff
2005-04-05from netbsd:Michael Shalayeff
Some SiS 7012 chips come muted by default, so un-mute all SiS 7012 chips at attach time the way Linux does it. Reported and tested by Jonathan Schleifer, I checked it didn't break my own 7012 device which doesn't need that manipulation.
2005-04-05ich6 support from freebsd via [Bjorn] Sandell <biorn@dce.chalmers.se>Michael Shalayeff
2005-04-05fix parenthesis for BGE_RCB_MAXLEN_FLAGSBrad Smith
ok krw@
2005-04-05- Fix for an issue with excessive collisions in half duplex mode.Brad Smith
- Nail the short cable problem the exact way National says it should be. - Make sure to clear any pending interrupts when we stop the interface. - Do not tell the hardware to send when there were no packets enqueued. - Close a theoretical race: By the time the watchdog comes around the interface may have been stopped, so we should not restart it. From FreeBSD Tested by ho@ on a few Soekris boxes and martin@ on a 900
2005-04-04Fix interrupt sharing on bge, by checking the same way the linuxBob Beck
driver does. ok deraadt@, testing and ok krw@, markus@
2005-04-04remove noise statistics. this was generating tons of useless interrupts.Damien Bergamini
2005-04-04syncDamien Bergamini
2005-04-04fix ids. ok jsg@ deraadt@Damien Bergamini
2005-04-04new id for PRO/Wireless 2915ABG. fix desc for PRO/Wireless adapters.Damien Bergamini
2005-04-02make use of if_link_state_change().Brad Smith
From FreeBSD ok pvalchev@
2005-04-02mixer can endup mapped w/ a different tag and so give it one of its own; ↵Michael Shalayeff
from 71@becile.com pr4162
2005-04-01Improve san(4) driver:Can Erkin Acar
* Some KNF, fix return values (from -Exxx to Exxx) * Some string handling paranoia. * Use ifconfig media options to switch between ppp and cHDLC modes, based on patch from claudio@ * tcpdump works, patch from claudio@ * ppp mode now works. Lots of testing & feedback by Greg Mortensen, Additional testing Sean Knox ok alex@, go go go deraadt@
2005-04-01- remove unused function em_print_link_status() used by FreeBSDBrad Smith
- add em_disable_vlans() which disables HW VLAN support; From FreeBSD
2005-04-010 -> prodidx. breakage for 5700 Bx workaround introduced in rev 1.21Brad Smith
Noticed/tested by aaron@
2005-03-31enable receive checksum offloadBrad Smith
2005-03-30make the powerhooks the responsibility of the bus ohci is attached toDavid Gwynne
ok uwe@
2005-03-29pull over some minor fixes from NetBSD:Martin Reindl
- use ETHER_ADDR_LEN where apropriate - consistency fixes in mem-io vs io-io logic - fixes for 21143 in full-duplex mode - minor nits here and there ok brad@
2005-03-28syncTheo de Raadt
2005-03-28two more radeon; gklok@cogeco.caTheo de Raadt
2005-03-27EB -> GBBrad Smith
2005-03-27regenBrad Smith
2005-03-27EB -> GBBrad Smith
2005-03-27remove FreeBSD ifdef bloat.Brad Smith
ok krw@
2005-03-27Fix possible double alignment, and a memory leak in error path. MostlyKenneth R Westerback
from FreeBSD. ok brad@.
2005-03-27another fxp PCI idBrad Smith
2005-03-27regenBrad Smith
2005-03-27ICH-6M fxp PCI idBrad Smith
From: FreeBSD
2005-03-26Use "struct em_softc *sc" consistently all over and uncover theBrad Smith
watchdog reset message. ok krw@
2005-03-26simplify man! no need to outline pci_mapreg_map() anymore just use itMichael Shalayeff
2005-03-25regenMichael Shalayeff
2005-03-25a bunch of ati ixp* idsMichael Shalayeff
2005-03-24enable memory-mapped i/o everywhere but on i386Martin Reindl
suggested by mickey@, ok krw@, deraadt@, also tested by miod@
2005-03-23do packet accounting (opackets/oerrors/ierrors).Damien Bergamini
2005-03-22fix probable pasto that calculated a control register value forMarco S Hyman
reset then ignored the calculated value. Also, move the underrun and overrun printfs to AUICH_DEBUG. As it was, you'd get at least one underrun per play reported to the console. Changes OK mickey@
2005-03-22fix merge missesNikolay Sturm
tested by millert, mbalmer and me; ok grange, mickey
2005-03-21syncNikolay Sturm
2005-03-21new O2 Micro cardbus adapterNikolay Sturm
ok deraadt
2005-03-18fail to attach with a printf instead of a panic for newer yet unsupportedBrad Smith
Yukon-2-based cards. ok deraadt@
2005-03-17support for ipv6.Damien Bergamini
2005-03-16don't account packet's twice; from joel@; ok deraadt@, henning@Markus Friedl
2005-03-15Only print warning messages in pci_{io,mem}_find() if option DEBUG; instead,Miod Vallat
do not return 1 on failure but a real errno the caller can check for proper action. tweaks and ok mickey@
2005-03-15use IFQ_ rather than IF_ macro here too, maybe helps altq; ok henningPeter Valchev