aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dc
Commit message (Expand)AuthorAgeFilesLines
* spdx: initial adoption of licensing ID tags.Pedro F. Giffuni2017-11-184-0/+8
* Remove break after return.Kevin Lo2015-01-231-5/+0
* Mechanically convert to if_inc_counter().Gleb Smirnoff2014-09-191-13/+13
* Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff2014-08-301-1/+1
* Fix various NIC drivers to properly cleanup static DMA resources.John Baldwin2014-06-111-6/+6
* Introduce a procedural interface to the ifnet structure. The newMarcel Moolenaar2014-06-022-11/+11
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-263-0/+3
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-4/+4
* Remove duplicate const specifiers in many drivers (I hope I got all ofDimitry Andric2012-11-051-1/+1
* - Change the module order of these MAC drivers to be last so they areMarius Strobl2012-05-111-2/+3
* Use DEVMETHOD_END.Marius Strobl2011-11-232-2/+2
* - There's no need to overwrite the default device method with the defaultMarius Strobl2011-11-221-5/+1
* There's no need to read DC_10BTSTAT twice in dcphy_status().Marius Strobl2011-11-181-6/+5
* - There's no need to ignore the return value of mii_attach(9) when attachingMarius Strobl2011-11-181-7/+5
* Partially revert r218788. r218788 removed calling dc_setcfg() forPyun YongHyeon2011-11-182-14/+3
* - Import the common MII bitbang'ing code from NetBSD and convert drivers toMarius Strobl2011-11-012-193/+39
* Add support for ALi/ULi, now NVIDIA, M5261/M5263 PCI FastEthernetPyun YongHyeon2011-10-242-4/+212
* When driver is run for the first time there would be no establishedPyun YongHyeon2011-10-241-16/+28
* Add missing bus_dmamap_sync() in setup frame transmit.Pyun YongHyeon2011-10-241-0/+4
* Fix a regression introduced in r218832. For TX status check, driverPyun YongHyeon2011-10-241-1/+1
* Remove duplicate header includesKevin Lo2011-06-282-2/+0
* Supress command completion failure warning when the card isn'tWarner Losh2011-06-211-1/+1
* - Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOPMarius Strobl2011-05-032-41/+32
* Revise r220046 by introducing dc_netcfg_wait() which waits the endPyun YongHyeon2011-03-281-51/+39
* Wait until the DMA engine is stopped before unmapping buffers andMarius Strobl2011-03-261-1/+25
* Remove too expensive bus_dmamap_sync(9) call in dc_rx_resync().Pyun YongHyeon2011-03-161-10/+4
* Rearrange dc_tx_underrun() a bit to correctly set TX FIFO thresholdPyun YongHyeon2011-03-081-37/+43
* Remove unnecessary controller reinitialization which resulted inPyun YongHyeon2011-02-231-5/+13
* s/u_intXX_t/uintXX_t/gPyun YongHyeon2011-02-192-93/+93
* Consistently use a tab character instead of space after #define.Pyun YongHyeon2011-02-192-588/+588
* Count how many frames driver lost in interrupt handler. ThisPyun YongHyeon2011-02-191-1/+6
* Split common TX/RX descriptor DMA tag to TX and RX DMA tagsPyun YongHyeon2011-02-192-276/+429
* Rearrange interrupt handler a bit and remove forever loop.Pyun YongHyeon2011-02-191-22/+20
* Send frames only when there is a valid link and driver is runningPyun YongHyeon2011-02-191-4/+2
* Fix a long standing bug where driver handed over RX descriptorPyun YongHyeon2011-02-181-1/+0
* There is no need to execute filter configuration when driver is notPyun YongHyeon2011-02-181-4/+2
* Make sure to clear status word of TX descriptor in dc_list_tx_init().Pyun YongHyeon2011-02-181-5/+5
* For controllers that have TX interrupt moderation capability,Pyun YongHyeon2011-02-182-1/+16
* Remove use case of DC_TX_ONE. It was used to limit queue just 1 TXPyun YongHyeon2011-02-182-6/+0
* Apply special PHY initialization code for 21143 controllers beforePyun YongHyeon2011-02-181-31/+42
* When driver have to use base softc due to lack of SROM on secondPyun YongHyeon2011-02-181-2/+37
* Always check memory allocation failure. If driver encounter memoryPyun YongHyeon2011-02-182-21/+60
* - Even after masking the media with IFM_GMASK the result may have bitsMarius Strobl2011-01-142-29/+11
* Convert the PHY drivers to honor the mii_flags passed down and convertMarius Strobl2010-10-151-1/+1
* Convert the PHY drivers to honor the mii_flags passed down and convertMarius Strobl2010-10-152-37/+30
* It seems some multi-port dc(4) controllers shares SROM of the firstPyun YongHyeon2010-10-142-0/+47
* Consistently always explicitly set IFM_HDX for half-duplex.Marius Strobl2010-10-032-5/+9
* - In the spirit of previous simplifications factor out the checks for aMarius Strobl2010-10-022-42/+2
* Use the mii_data provided via mii_attach_args and mii_pdata respectivelyMarius Strobl2010-09-272-2/+2
* cardbus -> CardBusWarner Losh2010-01-031-1/+1