aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dc/if_dc.c
Commit message (Expand)AuthorAgeFilesLines
* Remove now-redundant calls to device_delete_childJohn Baldwin2025-01-021-2/+0
* net: Remove unneeded NULL check for the allocated ifnetZhenlei Huang2024-06-281-5/+0
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* Mechanically convert dc(4) to IfAPIJustin Hibbits2023-02-061-111/+110
* dc: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-061-4/+1
* Remove unused miibus_devclass and miibus_fdt_devclass.John Baldwin2022-05-061-1/+1
* Remove sparc64 kernel supportWarner Losh2020-02-031-13/+0
* Convert to if_foreach_llmaddr() KPI.Gleb Smirnoff2019-10-211-77/+93
* Reapply, with minor tweaks, r338025, from the original commit:Warner Losh2018-09-261-1/+1
* Back out r338035 until Warner is finished churning GSoC PNP patchesConrad Meyer2018-08-191-1/+1
* Remove unused and easy to misuse PNP macro parameterConrad Meyer2018-08-191-1/+1
* Add PNP info to PCI attachment of dc driverWarner Losh2018-07-081-0/+2
* ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy2018-05-181-5/+5
* spdx: initial adoption of licensing ID tags.Pedro F. Giffuni2017-11-181-0/+2
* 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
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* 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
* - There's no need to overwrite the default device method with the defaultMarius Strobl2011-11-221-5/+1
* - 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-181-13/+3
* - Import the common MII bitbang'ing code from NetBSD and convert drivers toMarius Strobl2011-11-011-173/+37
* Add support for ALi/ULi, now NVIDIA, M5261/M5263 PCI FastEthernetPyun YongHyeon2011-10-241-4/+178
* 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
* Supress command completion failure warning when the card isn'tWarner Losh2011-06-211-1/+1
* 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-191-41/+41
* Consistently use a tab character instead of space after #define.Pyun YongHyeon2011-02-191-13/+13
* 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-191-263/+405
* 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-181-1/+15
* Remove use case of DC_TX_ONE. It was used to limit queue just 1 TXPyun YongHyeon2011-02-181-5/+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-181-21/+58