summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_sk.c
AgeCommit message (Expand)Author
2005-11-26fix interrupt moderation timer frequencies for Yukon and Yukon-II basedBrad Smith
2005-11-15more accurately reflect the naming scheme of the Marvell Yukon devices with t...Brad Smith
2005-11-07- splimp -> splnetBrad Smith
2005-10-15add 2 new Yukon PCI ids and recognize Yukon-2 EC Ultra ASIC.Brad Smith
2005-10-15update Via and 3Com ids.Brad Smith
2005-09-20memory, media handling and a bunch of register definitions for Yukon-2.Brad Smith
2005-09-20merge xmaciireg.h and yukonreg.h into if_skreg.hBrad Smith
2005-09-20shuffle some stuff from skreg to skvarBrad Smith
2005-09-17add media detection and dual port detection for Yukon-2.Brad Smith
2005-09-16- remove code to read PCI VPD as we do not use that anymore.Brad Smith
2005-08-29- use pci_mapreg_type() to fix some systems that would fail to attachBrad Smith
2005-07-25don't bother with printf in *_jalloc()Brad Smith
2005-07-24simplify error paths and add some missing ones; brad@ ok.Federico G. Schwindt
2005-07-22- sync sk_alloc_jumbo_mem() to look like bge's bge_alloc_jumbo_mem()Brad Smith
2005-07-22also take the PCI subsystem id into consideration when trying to probeBrad Smith
2005-07-21- add bus_dmamap_sync()'s; From NetBSDBrad Smith
2005-07-14add D-Link PCI id.Brad Smith
2005-07-12remove unused prototype sk_free_jumbo_memBrad Smith
2005-07-12free resources for Jumbo buffers in sk_stop().Brad Smith
2005-07-02clear IFF_RUNNING & IFF_OACTIVE in foo_stop() before de-allocating resources.Brad Smith
2005-07-02- mbuf external storage is of (caddr_t), not (caddr_t *).Brad Smith
2005-05-17remove spurious bpf_mtap (I think it's leftover debugging code from a year ago)Jason Wright
2005-05-16add a newline hereBrad Smith
2005-05-11remove comment which is not valid anymoreBrad Smith
2005-05-11- Also match on Yukon LP's for the Lite rev A0 test.Brad Smith
2005-04-25csum -> csum_flagsBrad Smith
2005-03-18fail to attach with a printf instead of a panic for newer yet unsupportedBrad Smith
2005-03-12add a bunch of PCI ids from the SysKonnect sk98lin driver.Brad Smith
2005-01-15make sure interface is in RUNNING state before touching the multicast filtersBrad Smith
2005-01-02cleanup and better ram sizing.Brad Smith
2005-01-01better chip/card identification.Brad Smith
2005-01-01rev 1.92Brad Smith
2005-01-01Don't initialize the card (and start an autonegotiation!) every timeKenneth R Westerback
2004-12-22- add missing braces for SIOCSIFMTU switch case.Brad Smith
2004-12-14Fix off-by-one. From FreeBSD r1.87. Also in NetBSD. Field being filledKenneth R Westerback
2004-12-08use ETHER_MAX_LENBrad Smith
2004-12-08Enable jumbo frames on Yukon varients of sk(4).Kenneth R Westerback
2004-11-16Lower interrupt moderation timer to decrease service latency.Brad Smith
2004-11-16back out previous commit and put the right change in which correspondsBrad Smith
2004-11-16Fix tx queue (slist can be corrupted when tx interrupts hit within tx_encap).Brad Smith
2004-11-11- Fix Yukon ram sizing.Brad Smith
2004-10-14Bail out quietly if the eeprom appears to be missing or empty. FixesBrad Smith
2004-09-23don't need to set ifp->if_mtu or ifp->if_output in each driver,Brad Smith
2004-08-20a belkin ID on a sk cardTheo de Raadt
2004-08-19Don't complain about lack of jumbo storage when processing incoming packetsRyan Thomas McBride
2004-08-05remove some separate per driver constants and useBrad Smith
2004-08-04Make jumbo frames work.Ryan Thomas McBride
2004-05-29replace hand-rolled CRC calculation in multicast hash setup with calls toChristian Weisgerber
2004-05-24Make Yukon-style adapters also set up the multicast filter in sk_init().Christian Weisgerber
2004-04-09do not whine if we cannot get mbufs. the countless printfd makes the machineHenning Brauer