aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sk
Commit message (Expand)AuthorAgeFilesLines
* Allocate the DMA memory shared between the host and the controller asMarius Strobl2011-03-111-6/+7
* Fix a long standing bug in programming station address for YukonPyun YongHyeon2010-11-061-12/+13
* If we got an invalid station address, generate random address. ThisPyun YongHyeon2010-11-061-0/+19
* Convert the PHY drivers to honor the mii_flags passed down and convertMarius Strobl2010-10-151-11/+11
* Some revision of Yukon controller generates corrupted frame when TXPyun YongHyeon2010-07-091-8/+21
* Take a step towards removing if_watchdog/if_timer. Don't explicitly setJohn Baldwin2009-11-061-2/+0
* Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson2009-06-261-4/+4
* Separate multicast filtering of SysKonnect GENESIS and MarvellPyun YongHyeon2009-05-011-116/+81
* Prefer NULL over integer 0 for pointer type.Pyun YongHyeon2008-02-141-11/+11
* Nuke local jumbo allocator and switch to use of UMA backed pagePyun YongHyeon2008-02-142-295/+142
* Give MEXTADD() another argument to make both void pointers to thePoul-Henning Kamp2008-02-011-1/+1
* Fix function prototype for device_shutdown method.Pyun YongHyeon2007-11-221-3/+3
* Universally adopt most conventional spelling of acquire.Robert Watson2007-05-271-1/+1
* Make a missing or empty VPD non-fatal, as it was prior to rev 1.131.Stephen McKay2007-05-101-8/+6
* Use our own timer for watchdog instead of if_watchdog/if_timerPyun YongHyeon2007-04-022-8/+24
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-1/+1
* Change the remainder of the drivers for DMA'ing devices enabled in theMarius Strobl2007-01-211-1/+2
* Remove incomplete Yukon II support code which was added in if_sk.c, rev 1.123.Pyun YongHyeon2006-12-142-101/+3
* provide routines to access VPD data at the PCI layer...John-Mark Gurney2006-10-092-179/+7
* Fix invalid reference of mbuf chains.Pyun YongHyeon2006-08-121-13/+13
* Fix incorrect busy check for PHY write operation.Pyun YongHyeon2006-08-021-4/+2
* Add device ID for second generation D-Link DGE-530T.Pyun YongHyeon2006-07-272-3/+10
* Convert sk(4) to use the new bus_alloc_resources() API andPyun YongHyeon2006-07-192-46/+43
* Fix typo in comment.Pyun YongHyeon2006-07-051-2/+2
* Fix watchdog timeout errors seen on a few systems.Pyun YongHyeon2006-06-071-6/+13
* Re-wrok PHY setup, media handling and dual-port detection.Pyun YongHyeon2006-05-152-37/+13
* Type.Pyun YongHyeon2006-05-021-1/+1
* Don't attach to Marvell 88E805X (Yukon-II) by default, the driver is notMaxim Sobolev2006-05-011-0/+2
* Add some incomplete support for Marvell Yukon EC controllers based onMaxim Sobolev2006-04-282-20/+134
* Bring busdmafied sk(4) to all architectures.Pyun YongHyeon2006-04-274-588/+1695
* Correct DRIVER_MODULE declaration.Pyun YongHyeon2006-04-271-1/+1
* The sk(4) driver has moved to /sys/dev/skPyun YongHyeon2006-04-271-3/+3
* Do not touch ifp->if_baudrate in miibus aware drivers.Gleb Smirnoff2006-02-141-1/+0
* The number of ticks per usec for YUKON_EC is 125.Pyun YongHyeon2006-01-171-1/+1
* fix interrupt moderation timer frequencies for YukonPyun YongHyeon2006-01-172-7/+21
* remove trailing spacesPyun YongHyeon2006-01-171-11/+11
* Remove unused code.Bjoern A. Zeeb2006-01-151-3/+0
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-5/+5
* Replace FreeBSD 3.x syntax (controller miibus0) with 4.x syntaxWarner Losh2005-10-221-1/+1
* Only allow the sk(4) driver to attach to revision 2 of the LinkSys EG1032John Baldwin2005-10-142-0/+16
* Mark sk(4) as capable of handling extended VLAN frames. NICsYaroslav Tykhiy2005-10-111-0/+6
* Fix "struct ifnet" leaks when attach() fails in the middle, e.g.Ruslan Ermilov2005-09-161-3/+2
* * Solve "No PHY found" problem for more Yukon Lite variants.Bjoern A. Zeeb2005-08-131-25/+61
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-14/+16
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+2
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-102-22/+32
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-2/+0
* Deal with failed malloc calls[1].Bjoern A. Zeeb2005-04-251-0/+22
* handle malloc failure and sk_vpd_prodname potentially being null forSam Leffler2005-03-261-5/+8
* Do not try to free non allocated memory in error case.Bjoern A. Zeeb2005-03-172-13/+61