aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/if_xl.c
Commit message (Expand)AuthorAgeFilesLines
* Implement MTX_RECURSE flag for mtx_init().Bosko Milekic2001-01-191-1/+1
* Use pci_get_powerstate()/pci_set_powerstate() which now exists in theBill Paul2000-12-181-23/+19
* Initialize/grab the mutex earlier in the attach phase, so thatBill Paul2000-12-041-3/+3
* Add device ID for the 3c565C card. I followed exactly the 3c575c, butWarner Losh2000-12-011-1/+8
* add support for 3Com 3c575TX Fast Etherlink XL.MIHIRA Sanpei Yoshiro2000-11-021-1/+6
* Add support for cardbus card's chips. This will make the 3c575 cardsWarner Losh2000-10-161-5/+30
* When wierdreset flag is set, turn on the DISADVFD flag when we resetWarner Losh2000-10-161-1/+2
* Remove an errant splimp() that I missed when I went through this driverBill Paul2000-10-161-3/+0
* Fix one instance of XL_LOCK() that should have been XL_UNLOCK(). AfterBill Paul2000-10-151-1/+1
* Remove unneeded #include <machine/clock.h>Poul-Henning Kamp2000-10-151-1/+0
* Use device_get_nameunit(dev) as the mutex string when callingBill Paul2000-10-131-1/+1
* First round of converting network drivers from spls to mutexes. ThisBill Paul2000-10-131-23/+62
* Add support for the 3Com 556 and 556B mini-pci adapters used on someBill Paul2000-08-281-9/+76
* Make all Ethernet drivers attach using ether_ifattach() and detach usingArchie Cobbs2000-07-131-6/+3
* Use the correct register name. s/PCI_COMMAND_STATUS_REG/PCIR_COMMAND/Peter Wemm2000-05-281-3/+3
* Move code to handle BPF and bridging for incoming Ethernet packets outArchie Cobbs2000-05-141-37/+0
* Depend on miibus.Peter Wemm2000-04-291-0/+2
* Close PR# 15986: issue an RX reset command when initializing the interface,Bill Paul2000-01-091-0/+4
* It appears that under certain circumstances that I still can't quite pinBill Paul2000-01-031-1/+32
* Update the xl driver to recognize yet another 3c905B/3c905C class NIC:Bill Paul1999-12-161-0/+4
* Small tweak: just reset the transmit block instead of doing a global resetBill Paul1999-10-251-2/+2
* Make some small tweaks:Bill Paul1999-10-141-4/+26
* Change contigmalloc() lower memory bound from 1MB to 0 to improveBill Paul1999-09-251-1/+1
* As suggested by phk, unconditionalize BPF support in these drivers. SinceBill Paul1999-09-231-14/+0
* Tweak these for what I hope is the last time: change the DRIVER_MODULE()Bill Paul1999-09-221-1/+1
* Close PR #13665. I managed to figure out the problem, no thanks to theBill Paul1999-09-201-16/+38
* Un-do the changes to the DRIVER_MODULE() declarations in these drivers.Bill Paul1999-09-201-2/+2
* Grrr. Okay, changing the devnames was a bad idea. Put them back the wayBill Paul1999-09-201-1/+1
* Fix the strings in the driver_t structs so that they match the new namesBill Paul1999-09-201-1/+1
* Goofed and didn't change the second DRIVER_MODULE() linking these withDavid E. O'Brien1999-09-201-1/+1
* Change the name we register with DRIVER_MODULE() to include the leadingDavid E. O'Brien1999-09-201-1/+1
* Add an alternate transmit strategy for 3c90xB adapters based on the transmitBill Paul1999-09-201-71/+292
* Dangit: mispelled TORNADO in one place.Bill Paul1999-09-151-1/+1
* 3Com has produced their own Linux driver for the 3c90x/3c90xB series cards.Bill Paul1999-09-151-3/+8
* Add a pointer to "controller miibus0" for people who will not read thePeter Wemm1999-09-081-0/+1
* Just when I thought it was safe. In the original 3c905-TX NICs, theBill Paul1999-09-011-0/+13
* Convert the 3Com XL driver to miibus. This one is a little trickyBill Paul1999-08-291-592/+172
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-2/+2
* Small tweak: in xl_rxeof(), rxstat should be u_int32_t, not u_int16_t.Bill Paul1999-08-191-3/+3
* Minor tweak for last commit: insert extra delay between issuing masterBill Paul1999-08-021-2/+4
* Perform an RX reset and TX reset in xl_reset() along with the masterBill Paul1999-08-021-6/+23
* Some more small newbus cleanups. Remember to free all resources in caseBill Paul1999-07-231-15/+28
* Well, it seems that loading a PCI driver module after the system hasBill Paul1999-07-221-2/+8
* Small tweak to newbus changes: return error status on failure correctlyBill Paul1999-07-221-2/+2
* Convert the xl driver to newbus. It is now possible to make this driverBill Paul1999-07-201-87/+123
* Grrr.... forgot one line from the previous fix.Bill Paul1999-07-081-3/+3
* Fix a potential race condition that can occur in xl_start(). If the NICBill Paul1999-07-071-3/+5
* Rename bpfilter to bpf.Dag-Erling Smørgrav1999-07-061-8/+8
* Change the cast in pci_map_port() from u_short * to pci_port_t * so itPeter Wemm1999-07-021-3/+3
* Change the warning message issued if pci_map_port() fails. I think thisBill Paul1999-06-011-5/+5